31 lines
2.5 KiB
JavaScript
31 lines
2.5 KiB
JavaScript
// app/rna-sequencing/mrna-sequencing/components/MRNAIntroduction.jsx
|
|
import IntroductionLayout from '../../../components/shared/IntroductionLayout';
|
|
|
|
const MRNAIntroduction = () => {
|
|
const introItems = [
|
|
"Messenger RNA-Seq (mRNA-Seq) is a focused RNA-Seq method that targets polyadenylated (poly-A) transcripts, which comprise only about 1-2% of the transcriptome, mainly representing coding genes. By enriching these poly-A-tailed RNAs, mRNA-Seq offers a precise snapshot of gene expression, capturing the complete range of mRNA transcripts within a sample and enabling detailed analysis of gene activity across various conditions.",
|
|
"mRNA-seq workflow typically includes RNA extraction, enrichment or depletion of mRNA, library preparation, and high-throughput sequencing. This workflow ensures precise and efficient capture of mRNA transcripts for thorough downstream analysis.",
|
|
"Bioinformatics analysis for mRNA-seq involves several key steps: data preprocessing, alignment to a reference genome, quantifying gene expression levels, and advanced downstream analyses such as differential expression, pathway enrichment, and gene ontology analysis.",
|
|
"Widely applicable across diverse research fields, including human, animal, and plant studies, providing profound insights into genetic landscapes and contributing to our understanding of gene function and regulation."
|
|
];
|
|
const advantageItems = [
|
|
"mRNA-Seq provides a targeted analysis of gene expression specific to protein-coding regions, making it ideal for studies focused on gene regulation, protein synthesis, and disease-related expression changes.",
|
|
"mRNA-Seq focuses on mRNA enrichment, which minimizes the impact of non-coding RNAs and enhances sensitivity for detecting gene expression changes.",
|
|
"Focusing solely on coding regions, mRNA-Seq does not require rRNA-specific probes (Costly) for ribosomal RNA removal and requires comparatively lesser data, making it a more cost-effective alternative to Whole Transcriptome Sequencing.",
|
|
"With a more targeted dataset, the bioinformatics analysis of mRNA-Seq is often simpler and faster, focusing on coding genes without the complexity introduced by non-coding RNAs."
|
|
];
|
|
|
|
return (
|
|
<IntroductionLayout
|
|
introTitle="Introduction and Workflow"
|
|
advantageTitle="Advantage"
|
|
introItems={introItems}
|
|
advantageItems={advantageItems}
|
|
imageUrl="/images/rna/mRNA_sequencing.png"
|
|
imageAlt="mRNA Sequencing Workflow"
|
|
useParagraphs={true}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default MRNAIntroduction; |