const LongReadComparison = () => { const comparisonData = [ { category: "Read Length", pacbio: "Average ≥ 15 kb\nbp to kb", nanopore: "Average > 17 kb\nKb to Mb" }, { category: "Variant Calling", pacbio: "Long Read Length with High Accuracy: Good coverage of highly repetition and complexity area\nDetect SVs with high precision", nanopore: "Long Read Length with High Accuracy: Good coverage of highly repetition and complexity area\nDetect SVs with high precision" }, { category: "Amplification/GC Bias", pacbio: "NO GC Bias & Amplification Bias\nPCR-free to allow a uniform coverage and High Contiguity", nanopore: "NO GC Bias & Amplification Bias\nPCR-free to allow a uniform coverage and High Contiguity" }, { category: "Machine Errors", pacbio: "Relaxed requirement for cycle efficiency", nanopore: "Relaxed requirement for cycle efficiency" }, { category: "DNA Methylation Detection", pacbio: "Simultaneous Epigenetic Characterization\nDiverse DNA methylation types: CpG, CHH, CHG, 6mA, 4mC, 5hmc", nanopore: "Simultaneous Epigenetic Characterization\nDiverse DNA methylation types: CpG, CHH, CHG, 6mA, 4mC, 5hmc" } ]; const formatContent = (content) => { if (content.includes("Long Read Length")) { return (
Long Read Length with High Accuracy: {content.replace("Long Read Length with High Accuracy:", "")}
); } else if (content.includes("NO GC Bias")) { return (
NO GC Bias & Amplification Bias {content.replace("NO GC Bias & Amplification Bias", "")}
); } else if (content.includes("Simultaneous")) { return (
Simultaneous Epigenetic Characterization {content.replace("Simultaneous Epigenetic Characterization", "")}
); } return content; }; return (

Comparison of Sequencers

{/* Original Image Section */}
Long Read Comparison Chart
{/* Detailed Comparison Table Section */}

Comparison and specification of sequencing platforms between short-read and long-read sequencing on WGS

Different sequencing platforms have unique characteristics and applications. The comparison below highlights key differences:

{comparisonData.map((row, index) => ( ))}
Platform Types PacBio Sequel II/IIe Nanopore PromethION
{row.category}
{formatContent(row.pacbio)}
{formatContent(row.nanopore)}
); }; export default LongReadComparison;