Files
operify/app/rna-sequencing/iso-sequencing/components/IsoIntroduction.jsx
2025-08-21 12:40:06 +05:30

32 lines
3.0 KiB
JavaScript

// app/rna-sequencing/iso-sequencing/components/IsoIntroduction.jsx
import IntroductionLayout from '../../../components/shared/IntroductionLayout';
const IsoIntroduction = () => {
const contentItems = [
"Iso-Seq, or Isoform Sequencing, leverages PCR free PacBio's Single Molecule, Real-Time (SMRT) sequencing technology to deliver detailed and accurate insights into RNA transcripts. PCR free SMRT technology produces long reads of upto 25Mbps length with 99.9% base level accuracy through circular consensus sequencing (CCS) mode.",
"PacBio's SMRT sequencing technology enables the reading of full-length cDNA molecules in a single pass, allowing for the accurate identification of various isoforms, including alternative splicing events and post-transcriptional modifications. This approach minimizes errors and provides a high-resolution map of transcript structures.",
"The process begins with the isolation of high-quality RNA, which is then converted into cDNA followed by sequencing using PacBio SMRT technology.",
"The bioinformatics analysis of Iso-Seq data involves assembling full-length transcripts, annotating them, and comparing them to reference genomes or existing databases. This detailed analysis reveals the complexity of gene expression, including novel isoforms and splice variants, and aids in understanding their functional roles in various biological processes.",
"Iso-Seq using PacBio is particularly valuable for exploring gene expression at a granular level, discovering novel transcripts, and enhancing annotations of complex genomes."
];
const advantageItems = [
"Unlike traditional methods, which may miss complex isoforms or splice variants, Iso-Seq captures full-length RNA sequences, enabling the identification of all transcript isoforms, including those with complex splicing and alternative start or end sites.",
"Provides high-fidelity data with long read lengths, reducing errors and missing information common in shorter-read sequencing methods.",
"Reduces challenges with transcript assembly and alignment by providing full-length reads that eliminate ambiguities and enhance transcriptome reconstruction accuracy. Improves genome annotations by precisely identifying gene structures, exons, introns, and regulatory elements, leading to more accurate functional insights.",
"Uncovers novel isoforms, splice variants, and post-transcriptional modifications, providing a comprehensive view of gene expression. This detailed approach is essential for functional genomics, transcriptomics, and alternative splicing studies, offering valuable insights into gene regulation and function."
];
return (
<IntroductionLayout
introTitle="Introduction and Workflow"
advantageTitle="Advantage"
introItems={contentItems}
advantageItems={advantageItems}
imageUrl="/images/rna/ISO_sequencing_using_pacBio.png"
imageAlt="ISO Sequencing using PacBio Workflow"
useParagraphs={true}
/>
);
};
export default IsoIntroduction;