Files
operify/app/dna-sequencing/microsatellites-ssr-str/components/MicrosatellitesIntroduction.jsx
2025-08-21 12:40:06 +05:30

33 lines
2.3 KiB
JavaScript

// app/dna-sequencing/microsatellites-ssr-str/components/MicrosatellitesIntroduction.jsx
import IntroductionLayout from '../../../components/shared/IntroductionLayout';
const MicrosatellitesIntroduction = () => {
const contentItems = [
"Microsatellites, also known as simple sequence repeats (SSRs) or short tandem repeats (STRs), are repetitive DNA sequences typically 2-6 base pairs in length, found abundantly across the genome.",
"These sequences vary in repeat number across individuals, providing a unique genetic profile. Microsatellite-based genotyping analyze genetic diversity, population structure, and inheritance patterns by identifying the variation in microsatellite loci between individuals.",
"The workflow begins with DNA extraction, followed by PCR amplification of specific microsatellite regions, and analysis via gel or capillary electrophoresis. The variation in repeat numbers at each locus generates distinctive patterns for genotyping.",
"Electropherogram data is converted into allele calls, allowing allele size analysis, frequency distribution, and individual or population-level genotype matching.",
"Microsatellite-based genotyping is widely applied in fields like conservation genetics, forensic science, and agriculture."
];
const advantageItems = [
"Highly variable in repeat number among individuals, making them effective for distinguishing genetic differences within and between populations.",
"Unlike multi-locus markers like minisatellites, microsatellites are locus-specific, providing precise, targeted genetic information for detailed genotyping and genetic mapping.",
"Highly reproducible across labs, making it a reliable method for studies requiring consistent and repeatable results, such as population genetics and forensic analysis.",
"Show co-dominant inheritance, allowing the detection of both alleles at a locus for accurate identification of heterozygous and homozygous genotypes."
];
return (
<IntroductionLayout
introTitle="Introduction and Workflow"
advantageTitle="Advantage"
introItems={contentItems}
advantageItems={advantageItems}
imageUrl="/images/microsatellites-sequencing.png"
imageAlt="Microsatellites Sequencing"
useParagraphs={true}
/>
);
};
export default MicrosatellitesIntroduction;