31 lines
2.8 KiB
JavaScript
31 lines
2.8 KiB
JavaScript
// app/rna-sequencing/metatranscriptomics-sequencing/components/MetatranscriptomicsIntroduction.jsx
|
|
import IntroductionLayout from '../../../components/shared/IntroductionLayout';
|
|
|
|
const MetatranscriptomicsIntroduction = () => {
|
|
const contentItems = [
|
|
"Metatranscriptomics sequencing examines RNA transcripts from entire microbial communities within their natural environments during a specific time frame. This approach helps to infer the functional profile of a community under specific conditions, which are usually dependent on the status of the host.",
|
|
"The process starts with the extraction of total RNA from a mixed microbial sample, without the need for bacterial isolation. Ribosomal RNA (rRNA) is then removed to enrich for mRNA and other non-ribosomal RNAs. The RNA is subsequently processed, prepared into libraries, and sequenced.",
|
|
"The bioinformatics workflow includes preprocessing the raw sequencing reads, performing quality control, and normalizing the data. The reads are mapped to reference genomes or databases to quantify gene expression levels. Functional annotation and pathway analysis are then carried out to understand the roles of various transcripts and their impact on microbial community functions.",
|
|
"Metatranscriptomics is applicable to a wide range of environmental samples, such as soil, oceans, and the human gut, facilitating studies on microbial diversity, disease mechanisms, nutrient cycling, and environmental adaptation."
|
|
];
|
|
const advantageItems = [
|
|
"Provides insights into the functional dynamics of microorganisms by revealing active gene expression and their roles within complex communities. This approach uncovers how microorganisms contribute to ecosystem processes and their interactions.",
|
|
"Analyzes microbial communities directly from environmental samples, removing the need for isolating or cultivating individual microbes. This method captures a more comprehensive view of microbial diversity.",
|
|
"Uses next-generation sequencing (NGS) to identify novel genes and track transcriptional changes, offering high-resolution data on gene expression. This allows for precise identification of active genes, pathways, and regulatory networks within microbial communities.",
|
|
"Offers an advantage over metagenomics by including both microbial species information and gene expression data. This dual focus provides a deeper understanding of microbial community changes from a transcriptional perspective and aids in the discovery of potential new genes."
|
|
];
|
|
|
|
return (
|
|
<IntroductionLayout
|
|
introTitle="Introduction and Workflow"
|
|
advantageTitle="Advantage"
|
|
introItems={contentItems}
|
|
advantageItems={advantageItems}
|
|
imageUrl="/images/rna/Metatranscriptomics.png"
|
|
imageAlt="Metatranscriptomics Workflow"
|
|
useParagraphs={true}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default MetatranscriptomicsIntroduction; |