39 lines
1.9 KiB
JavaScript
39 lines
1.9 KiB
JavaScript
// app/dna-sequencing/snp-genotyping/components/SNPIntroduction.jsx
|
|
import IntroductionLayout from '../../../components/shared/IntroductionLayout';
|
|
|
|
const SNPIntroduction = () => {
|
|
const contentItems = [
|
|
"SNP-based genotyping identifies single nucleotide polymorphisms (SNPs) across the genome, offering insights into genetic diversity, disease associations, and trait inheritance. It is widely applied in population genetics, evolutionary biology, and plant and animal breeding."
|
|
];
|
|
const advantageItems = [
|
|
"Allows for precise identification of genetic variations at a single nucleotide level, enabling detailed mapping of genetic diversity.",
|
|
"Provides an efficient, cost-effective solution for analyzing thousands of SNPs across large populations, ideal for high-throughput studies.",
|
|
"SNP markers are stable and abundant across genomes, providing high data quality, reproducibility, and scalability, which are essential for reliable genetic studies, comparative analyses across multiple populations or species, and make SNP-based genotyping a powerful tool for both research and applied genomics.",
|
|
"Can reveal associations between genetic variations and complex traits, allowing researchers to identify genetic contributors to health, disease, or productivity in agriculture."
|
|
];
|
|
|
|
|
|
const serviceTypes = [
|
|
"DNA Sequencing",
|
|
"RNA Sequencing",
|
|
"Genomics Services"
|
|
];
|
|
|
|
return (
|
|
<IntroductionLayout
|
|
introTitle="Introduction and Workflow"
|
|
advantageTitle="Advantage"
|
|
introItems={contentItems}
|
|
advantageItems={advantageItems}
|
|
imageUrl="/images/dna/SNP-based_genotyping_(ddRAD).png"
|
|
imageAlt="SNP Genotyping Overview"
|
|
badgeText="ISO CERTIFIED"
|
|
serviceTypes={serviceTypes}
|
|
backgroundColor="#f8f9fa"
|
|
badgeColor="bg-teal-600"
|
|
useParagraphs={true}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default SNPIntroduction; |