36 lines
2.0 KiB
JavaScript
36 lines
2.0 KiB
JavaScript
// AmpliconIntroduction.jsx
|
|
|
|
import IntroductionLayout from '../../../../components/shared/IntroductionLayout';
|
|
|
|
const AmpliconIntroduction = () => {
|
|
const contentItems = [
|
|
"Amplicon sequencing focuses on the targeted amplification and sequencing of specific DNA regions enabling researchers to analyze genetic variation in specific genomic regions.",
|
|
"The workflow begins with DNA isolation, followed by PCR amplification of target regions. Barcoded strand-specific libraries are then prepared using adapters, allowing different samples to be pooled together.",
|
|
"This multiplexing enables the simultaneous targeting of hundreds of genes from various libraries in a single run.",
|
|
"This method is particularly useful for studying genetic variation, microbial communities, and evolutionary relationships. By selectively amplifying regions of interest, such as 16S rRNA for bacteria or ITS regions for fungi."
|
|
];
|
|
const advantageItems = [
|
|
"Unlike targeted or exome sequencing, amplicon sequencing narrows down to even smaller, highly specific regions, resulting in a more efficient and focused approach for certain applications, such as microbial diversity studies or detecting rare variants.",
|
|
"Capable of detecting low-abundance species or genetic variants, providing specific resolution of target regions.",
|
|
"Focuses on specific genomic regions, allowing for detailed and precise analysis.",
|
|
"Provides quick insights into genetic composition and diversity, facilitating timely research and diagnostics."
|
|
];
|
|
|
|
return (
|
|
<IntroductionLayout
|
|
introTitle="Introduction and Workflow"
|
|
advantageTitle="Advantage"
|
|
introItems={contentItems}
|
|
advantageItems={advantageItems}
|
|
imageUrl="/images/dna/amplicon_seq.png"
|
|
imageAlt="Amplicon Workflow"
|
|
badgeText="AMPLICON SEQUENCING"
|
|
badgeSubtext="Brochure to be modified from Amplicon Sequencing"
|
|
backgroundColor="#f8f9fa"
|
|
badgeColor="bg-teal-600"
|
|
useParagraphs={true}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default AmpliconIntroduction; |