// app/dna-sequencing/enrichment-sequencing/components/EnrichmentIntroduction.jsx import IntroductionLayout from '../../../components/shared/IntroductionLayout'; const EnrichmentIntroduction = () => { const contentItems = [ "Enriched Sequencing is a comprehensive approach to analyze part of genomes base-by-base, providing enriched genomic view.", "The workflow includes isolating DNA, fragmenting it, capturing the regions of interest followed by sequencing to produce millions of short reads.", "In the bioinformatics analysis, these reads are aligned to a known reference genome to detect genomic alterations.", "It is a powerful tool for diverse genomic studies, capable of sequencing humans, livestock, plants, bacteria, and disease-related microbes." ]; const advantageItems = [ "Provides a more affordable alternative to Whole Genome Sequencing (WGS), making it accessible to a wider range of researchers and clinicians.", "Enhances detection of single-nucleotide variants (SNVs), copy number variants (CNVs), and insertions/deletions (InDels) with sensitivity and accuracy comparable to WGS, particularly in exonic regions.", "Produces smaller data sets compared to WGS, allowing for quicker and more straightforward data analysis, which accelerates research and diagnostics.", "Focuses on exonic regions, which are more likely to harbor disease-causing variants, leading to a more efficient and targeted approach in identifying genetic variants." ]; return (
{/* Main container with two columns */}
{/* Left Column - Content using existing IntroductionLayout structure */}
{/* Introduction Section */}

Introduction and Workflow

    {contentItems.map((item, index) => (
  • {item}
  • ))}
{/* Advantage Section */}

Advantage

    {advantageItems.map((item, index) => (
  • {item}
  • ))}
{/* Right Column - Custom Content with Image and SVG */}
{/* Top Section - Flowchart with larger fixed width */}
ISO Certified Process Flow
{/* Bottom Section - Image with same width */}
Enrichment Overview
); }; export default EnrichmentIntroduction;