// 7c - LongReadNanopore.jsx const LongReadNanopore = () => { const nanoporeItems = [ "Long-read Sequencing using Oxford Nanopore Technologies (ONT) delivers longer, continuous, and unambiguously assembled sequences, resulting in fewer contigs and enhancing overlap for accurate genome assembly.", "Helps in sequencing long stretches of DNA for complete genome assemblies of microbial, human, animal and plant species.", "Enables direct, real-time analysis of long DNA or RNA fragments by measuring changes in electric current as they pass through a nanopore embedded in a flow cell.", "Nanopore sequencing offers advantages across multiple research areas, including genome assembly, full-length transcript detection, base modification detection, and specialized applications like rapid clinical diagnoses and outbreak surveillance." ]; const pacbioItems = [ "PCR-free SMRT technology producing Hi-Fi reads via circular consensus sequencing (CCS) mode, yielding long reads up to 25 kb with 99.9% base level accuracy.", "Enables rapid and cost-effective generation of contiguous, complete, and accurate de novo genome assemblies, even for complex genomes.", "Allows the haplotype resolution of complex polyploids, particularly in plants.", "The technology can be utilized to provide a comprehensive view of the epigenome and transcriptome, as well as uncover different variants such as SNPs, homopolymer repeats, translocations, structural variants, and copy number variants." ]; return (

Long Read Sequencing Technologies

{/* Oxford Nanopore Technology Section */}

Long Read Sequencing using Oxford Nanopore Technology

OXFORD NANOPORE
Real-time DNA Analysis
    {nanoporeItems.map((item, index) => (
  • {item}
  • ))}
{/* PacBio Technology Section */}

Long Read Sequencing using PacBio Technology

    {pacbioItems.map((item, index) => (
  • {item}
  • ))}
PACBIO SMRT
Hi-Fi Circular Consensus Sequencing
); }; export default LongReadNanopore;