Files
operify/app/dna-sequencing/single-cell-dna-sequencing/components/SingleCellIntroduction.jsx
2025-08-21 12:40:06 +05:30

33 lines
2.3 KiB
JavaScript

// 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."
];
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 (
<IntroductionLayout
introTitle="Introduction and Workflow"
advantageTitle="Advantage"
introItems={contentItems}
advantageItems={advantageItems}
imageUrl="/images/dna/single_cell_dna_sequencing.png"
imageAlt="Single Cell DNA Sequencing"
useParagraphs={true}
/>
);
};
export default SingleCellIntroduction;