Docker config

This commit is contained in:
mukesh13
2025-06-16 15:53:12 +05:30
commit da3df17022
411 changed files with 24117 additions and 0 deletions

View File

@ -0,0 +1,20 @@
// app/dna-sequencing/single-cell-dna-sequencing/components/SingleCellAdvantages.jsx
import AdvantagesLayout from '../../../components/shared/AdvantagesLayout';
const SingleCellAdvantages = () => {
const advantageItems = [
"DNA exhibits greater stability compared to RNA, ensuring ample time for sample processing without degradation.",
"Capable of detecting rare mutation-bearing cell clones with sensitivity levels as low as 0.1%, enabling direct analysis of rare cell types or primary cells even with limited samples.",
"Reveals the diversity of genetic profiles within cell populations, aiding in the study of complex biological processes and enabling precise profiling of subpopulations like cancer cell evolution or DNA copy number variations in neurons.",
"Allows for the tracking of genetic changes over time within individual cells, crucial for understanding disease progression and evolution."
];
return (
<AdvantagesLayout
title="Advantages of Single Cell DNA Sequencing"
advantageItems={advantageItems}
/>
);
};
export default SingleCellAdvantages;

View File

@ -0,0 +1,21 @@
// app/dna-sequencing/single-cell-dna-sequencing/components/SingleCellApplications.jsx
import ApplicationsLayout from '../../../components/shared/ApplicationsLayout';
const SingleCellApplications = () => {
const applicationItems = [
"Cancer Genomics- Detects genetic mutations and variations in individual cancer cells, revealing tumor heterogeneity, identifying subclonal populations, and guiding personalized treatment strategies based on specific genetic alterations.",
"Developmental Biology- Studies genetic variations and mutations in single cells during development, providing insights into cell lineage, differentiation, and the genetic basis of developmental disorders.",
"Stem Cell Research- Analyzes genetic profiles of individual stem cells to understand their potential for differentiation, track mutations during cell division, and improve stem cell therapies.",
"Rare Disease Research- Identifies genetic variants in single cells from patients with rare diseases, aiding in the discovery of novel disease-associated mutations and improving diagnostic precision.",
"Population Genetics- Examines genetic diversity at the single-cell level within populations to understand evolutionary processes, genetic variation, and adaptation mechanisms, offering a more detailed view of population genetics compared to bulk analysis."
];
return (
<ApplicationsLayout
title="Applications of Single Cell DNA Sequencing"
applicationItems={applicationItems}
/>
);
};
export default SingleCellApplications;

View File

@ -0,0 +1,24 @@
// app/dna-sequencing/single-cell-dna-sequencing/components/SingleCellIntroduction.jsx
import IntroductionLayout from '../../../components/shared/IntroductionLayout';
const SingleCellIntroduction = () => {
const contentItems = [
"Single Cell DNA Sequencing analyzes genetic material from individual cells, revealing unique genomic insights that bulk sequencing methods often obscure.",
"The workflow begins with cell partitioning facilitated by the 10X Chromium system, employing gel beads and oil-surfactant solutions. Each droplet encapsulates a solitary cell uniquely tagged with a barcode.",
"Within these partitions, DNA amplification yields amplified DNA fragments from each cell. Subsequently, barcoded samples combine for library preparation, where DNA fragments undergo adapter ligation to facilitate sequencing.",
"During sequencing, the barcode identifiers enable precise tracking of data to its specific cell or nucleus of origin, thereby providing comprehensive genetic insights for individual cells.",
"This technique enables researchers to unravel unique genetic characteristics and variations present within individual cells, providing unprecedented insights into cellular diversity and function."
];
return (
<IntroductionLayout
title="Introduction and Workflow"
contentItems={contentItems}
imageUrl="/images/single-cell-dna-sequencing.png"
imageAlt="Single Cell DNA Sequencing"
useParagraphs={true}
/>
);
};
export default SingleCellIntroduction;

View File

@ -0,0 +1,57 @@
// app/dna-sequencing/single-cell-dna-sequencing/components/SingleCellSpecifications.jsx
import Link from 'next/link';
import SpecificationsLayout from '../../../components/shared/SpecificationsLayout';
const SingleCellSpecifications = () => {
const specificationItems = [
{
icon: "/images/homepage-2/NGS-Icons-45.svg",
title: "Sample Requirement",
renderContent: () => (
<div>
<div className="mb-4">
<p className="text-gray-600">96-well plates of live cells suspension, Frozen cells in specific frozen lysates, Genomic DNA, and Other samples.</p>
</div>
<div className="mt-4 text-sm">
<strong>
Please refer to{' '}
<Link href="/sample-submission-guideline" className="text-teal-600 underline hover:text-teal-700">
sample submission guidelines
</Link>
{' '}or{' '}
<Link href="/contact-us" className="text-teal-600 underline hover:text-teal-700">
Contact Us!
</Link>
</strong>
</div>
</div>
)
},
{
icon: "/images/homepage-1/service/Advantages-NGS-Icons-20.svg",
title: "Sequencing Platform",
content: "10X Genomics Chromium System followed by Illumina Sequencer"
},
{
icon: "/images/service/social-support.png",
title: "Deliverables",
renderContent: () => (
<ul className="list-disc pl-5 space-y-2 text-gray-600 text-start">
<li>The original sequencing data</li>
<li>Experimental results</li>
<li>Bioinformatics and Data Analysis Report</li>
<li>Details of Single Cell DNA Sequencing (customizable)</li>
</ul>
)
}
];
return (
<SpecificationsLayout
title="Service Specifications"
specificationItems={specificationItems}
/>
);
};
export default SingleCellSpecifications;

View File

@ -0,0 +1,60 @@
// app/dna-sequencing/single-cell-dna-sequencing/page.js
import TitleBar from '../../components/shared/TitleBar';
import SingleCellIntroduction from './components/SingleCellIntroduction';
import SingleCellAdvantages from './components/SingleCellAdvantages';
import SingleCellApplications from './components/SingleCellApplications';
import SingleCellSpecifications from './components/SingleCellSpecifications';
import PageLayout from '../../components/Layout/PageLayout';
export const metadata = {
title: 'Single Cell DNA Sequencing - Operify Tech',
description: 'Mapping Genetic Diversity Cell by Cell - Advanced single cell DNA analysis',
robots: 'noindex, follow',
};
export default function SingleCellDNASequencingPage() {
const breadcrumbs = [
{
label: 'Home',
href: '/',
current: false
},
{
label: 'Research',
href: '/dna-sequencing',
current: false
},
{
label: 'Single Cell DNA Sequencing',
href: null,
current: true
}
];
return (
<PageLayout fixedHeader={true}>
{/* Title Bar */}
<TitleBar
title="Single Cell DNA Sequencing"
desc="Mapping Genetic Diversity Cell by Cell"
breadcrumbs={breadcrumbs}
backgroundImage="/images/bredcrumb.jpg"
/>
{/* Page Content */}
<div className="page-content">
{/* Introduction Section */}
<SingleCellIntroduction />
{/* Advantages Section */}
<SingleCellAdvantages />
{/* Applications Section */}
<SingleCellApplications />
{/* Specifications Section */}
<SingleCellSpecifications />
</div>
</PageLayout>
);
}