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

31 lines
2.4 KiB
JavaScript

// app/rna-sequencing/circular-rna-sequencing/components/CircularIntroduction.jsx
import IntroductionLayout from '../../../components/shared/IntroductionLayout';
const CircularIntroduction = () => {
const contentItems = [
"Circular RNA sequencing (circRNA-seq) focuses on identifying and characterizing non-coding circular RNAs formed through back-splicing events. These circRNAs regulate gene expression by acting as miRNA sponges, influence alternative splicing, modulate transcription, interact with proteins, and serve as potential biomarkers and therapeutic targets.",
"As compared to Linear RNAs, circRNAs are covalently closed loops with no free ends, which provides them with enhanced stability and distinct regulatory functions in gene expression and cellular processes.",
"The workflow starts with isolating total RNA from the sample, which includes both linear and circular RNAs. Linear RNAs are then removed through ribosomal RNA (rRNA) depletion or exonuclease treatment to enrich the circular RNA fraction. Next, the RNA is circularized, and sequencing adapters are added during library preparation. The final step involves sequencing the prepared libraries.",
"Bioinformatics analysis for circRNA sequencing involves preprocessing data and mapping reads to a reference genome to identify back-splicing junctions. Computational tools are then used to quantify circRNA expression, discover novel circRNAs, and perform downstream analysis."
];
const advantageItems = [
"Circular RNAs are inherently more stable due to their covalently closed structure, making them less susceptible to degradation and providing reliable expression data.",
"Enables the identification of novel isoforms and splice variants that may not be detected with traditional RNA sequencing methods.",
"Offers a detailed view of circular RNA expression and their interactions within the cell, aiding in a deeper understanding of gene regulation and cellular processes.",
"Closed-loop structure of circRNAs minimizes potential sequencing artifacts, leading to more accurate and consistent data."
];
return (
<IntroductionLayout
introTitle="Introduction and Workflow"
advantageTitle="Advantage"
introItems={contentItems}
advantageItems={advantageItems}
imageUrl="/images/rna/circular_rna_sequencing.png"
imageAlt="Circular RNA Sequencing Workflow"
useParagraphs={true}
/>
);
};
export default CircularIntroduction;