Docker config
This commit is contained in:
@ -0,0 +1,20 @@
|
||||
// MetatranscriptomicsAdvantages.jsx
|
||||
import AdvantagesLayout from '../../../components/shared/AdvantagesLayout';
|
||||
|
||||
const MetatranscriptomicsAdvantages = () => {
|
||||
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 (
|
||||
<AdvantagesLayout
|
||||
title="Advantages of Metatranscriptome Sequencing"
|
||||
advantageItems={advantageItems}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export default MetatranscriptomicsAdvantages;
|
||||
@ -0,0 +1,23 @@
|
||||
// MetatranscriptomicsApplications.jsx
|
||||
import ApplicationsLayout from '../../../components/shared/ApplicationsLayout';
|
||||
|
||||
const MetatranscriptomicsApplications = () => {
|
||||
const applicationItems = [
|
||||
"Metatranscriptomics sequencing is widely used in microbial genomics to explore microbial diversity, functional potentials, and ecological interactions across environments from soil to human microbiomes.",
|
||||
"Environmental Monitoring- Used to assess microbial community dynamics and functional potential in diverse environments like soil, oceans, and freshwater. It helps track microbial contributions to ecosystem processes and environmental health.",
|
||||
"Biogeochemical Cycling- Investigates the roles of microorganisms in nutrient cycling processes, such as carbon, nitrogen, and sulfur cycles, providing insights into how microbes influence these critical ecological functions.",
|
||||
"Disease Research- Explores the microbial contributions to human health and disease by studying the microbial communities in the human gut, oral cavity, or other body sites, revealing potential biomarkers and therapeutic targets.",
|
||||
"Biotechnology and Industry- Facilitates the discovery of novel enzymes and metabolic pathways from microbial communities, which can be applied in biotechnology, agriculture, and industrial processes.",
|
||||
"Microbial Interactions- Examines interactions between different microorganisms within complex communities, helping to understand symbiotic relationships, competition, and microbial networks.",
|
||||
"Pathogen Detection- Aids in identifying and characterizing pathogenic microbes and their gene expression profiles during infections, enhancing our ability to monitor and manage microbial diseases."
|
||||
];
|
||||
|
||||
return (
|
||||
<ApplicationsLayout
|
||||
title="Applications of Metatranscriptome Sequencing"
|
||||
applicationItems={applicationItems}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export default MetatranscriptomicsApplications;
|
||||
@ -0,0 +1,22 @@
|
||||
// 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."
|
||||
];
|
||||
|
||||
return (
|
||||
<IntroductionLayout
|
||||
title="Introduction and Workflow"
|
||||
contentItems={contentItems}
|
||||
badgeSubtext="Brochure Metatranscriptomics"
|
||||
useParagraphs={true}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export default MetatranscriptomicsIntroduction;
|
||||
@ -0,0 +1,57 @@
|
||||
// MetatranscriptomicsSpecifications.jsx
|
||||
import Link from 'next/link';
|
||||
import SpecificationsLayout from '../../../components/shared/SpecificationsLayout';
|
||||
|
||||
const MetatranscriptomicsSpecifications = () => {
|
||||
const specificationItems = [
|
||||
{
|
||||
icon: "/images/homepage-2/NGS-Icons-45.svg",
|
||||
title: "Sample Requirement",
|
||||
renderContent: () => (
|
||||
<div>
|
||||
<div className="mb-4">
|
||||
<p className="text-gray-600">Total RNA samples, isolated from various environmental samples such as soil, water, sediments, roots, leaves, animal gut/intestine etc,.</p>
|
||||
</div>
|
||||
<div className="mt-4 text-sm">
|
||||
<strong>
|
||||
Please refer to{' '}
|
||||
<Link href="/sample-submission-guidelines" className="text-teal-600 underline hover:text-teal-700">
|
||||
sample submission guidelines
|
||||
</Link>
|
||||
{' '}or{' '}
|
||||
<Link href="/contact" className="text-teal-600 underline hover:text-teal-700">
|
||||
Contact Us!
|
||||
</Link>
|
||||
</strong>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
},
|
||||
{
|
||||
icon: "/images/homepage-1/service/Advantages-NGS-Icons-20.svg",
|
||||
title: "Sequencing Platform",
|
||||
content: "Illumina NovaSeq 6000/ NovaSeq X"
|
||||
},
|
||||
{
|
||||
icon: "/images/service/social-support.png",
|
||||
title: "Deliverables",
|
||||
renderContent: () => (
|
||||
<ul className="list-disc pl-5 space-y-2 text-gray-600 text-start">
|
||||
<li>The original sequencing data</li>
|
||||
<li>Experimental results</li>
|
||||
<li>Bioinformatics and Data analysis report</li>
|
||||
<li>Details of Metatranscriptome Sequencing (customizable)</li>
|
||||
</ul>
|
||||
)
|
||||
}
|
||||
];
|
||||
|
||||
return (
|
||||
<SpecificationsLayout
|
||||
title="Service Specifications"
|
||||
specificationItems={specificationItems}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export default MetatranscriptomicsSpecifications;
|
||||
27
app/rna-sequencing/metatranscriptomics-sequencing/page.js
Normal file
27
app/rna-sequencing/metatranscriptomics-sequencing/page.js
Normal file
@ -0,0 +1,27 @@
|
||||
import TitleBar from '../../components/shared/TitleBar';
|
||||
import MetatranscriptomicsIntroduction from './components/MetatranscriptomicsIntroduction';
|
||||
import MetatranscriptomicsAdvantages from './components/MetatranscriptomicsAdvantages';
|
||||
import MetatranscriptomicsApplications from './components/MetatranscriptomicsApplications';
|
||||
import MetatranscriptomicsSpecifications from './components/MetatranscriptomicsSpecifications';
|
||||
import PageLayout from '../../components/Layout/PageLayout';
|
||||
|
||||
export default function MetatranscriptomicsSequencingPage() {
|
||||
const breadcrumbs = [
|
||||
{ label: 'Home', href: '/', current: false },
|
||||
{ label: 'RNA Sequencing', href: '/rna-sequencing', current: false },
|
||||
{ label: 'Metatranscriptomics Sequencing', href: '#', current: true }
|
||||
];
|
||||
|
||||
return (
|
||||
<PageLayout fixedHeader={true}>
|
||||
<TitleBar
|
||||
title="Metatranscriptomics Sequencing"
|
||||
breadcrumbs={breadcrumbs}
|
||||
/>
|
||||
<MetatranscriptomicsIntroduction />
|
||||
<MetatranscriptomicsAdvantages />
|
||||
<MetatranscriptomicsApplications />
|
||||
<MetatranscriptomicsSpecifications />
|
||||
</PageLayout>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user