// app/dna-sequencing/snp-genotyping/components/SNPIntroduction.jsx import React from 'react'; const SNPIntroduction = () => { const contentItems = [ "ddRAD sequencing (Double Digest Restriction-site Associated DNA) is based on the Restriction Fragmentation technique combined with Next-Generation Sequencing (NGS). It is a robust approach for \"genotyping and SNP discovery\" that doesn't require a reference genome.", "The ddRAD workflow utilizes the precise cut-site specificity of restriction endonucleases to create library fragments from unique genomic regions. These fragments are then selected and sequenced, capturing data from identical genomic regions across samples.", "In the bioinformatics analysis, reads are aligned to either a reference genome or de novo assembly to detect SNVs and other genetic variations. This analysis supports studies on genetic diversity, population structure, and trait associations, with advanced tools enabling the processing of large datasets to achieve high genotyping accuracy.", "With the potential to develop hundreds to tens of thousands of genetic markers, ddRAD is ideal for applications in population genetics, germplasm assessment, marker-trait associations, GWAS, and QTL mapping. Its targeted, reproducible approach makes it a valuable tool for ecological and agricultural genomics." ]; return (
{/* Main container with two columns */}
{/* Left Column - Content */}

Introduction and Workflow

    {contentItems.map((item, index) => (
  • {item}
  • ))}
{/* Right Column - Image */}
SNP Genotyping Overview
); }; export default SNPIntroduction;