Docker config
This commit is contained in:
@ -0,0 +1,22 @@
|
||||
// WTSAdvantages.jsx
|
||||
import AdvantagesLayout from '../../../components/shared/AdvantagesLayout';
|
||||
|
||||
const WTSAdvantages = () => {
|
||||
const advantageItems = [
|
||||
"Enables the identification of novel transcripts, alternative splicing events, post-transcriptional modifications, and gene fusions without prior knowledge, making it ideal for exploratory research.",
|
||||
"Analyzing the entire transcriptome helps gain a deeper understanding of gene regulation, cellular responses, and pathways, leading to a more comprehensive view of biological processes.",
|
||||
"Enables allele-specific gene expression analysis, offering valuable insights into gene regulation and genetic variability.",
|
||||
"Facilitates higher detection rates of gene fusions, indels, SNPs, and other genetic variations, offering greater reliability in research outcomes.",
|
||||
"Widely used in fields such as cancer research and developmental biology, WTS uncovers complex molecular mechanisms and aids in the discovery of potential biomarkers.",
|
||||
"Provides valuable insights into bacterial gene expression, helping to unravel the mysteries of gene regulation, host-pathogen interactions, antibiotic resistance, and the underlying causes of various diseases."
|
||||
];
|
||||
|
||||
return (
|
||||
<AdvantagesLayout
|
||||
title="Advantages of Whole Transcriptome Sequencing (WTS)"
|
||||
advantageItems={advantageItems}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export default WTSAdvantages;
|
||||
@ -0,0 +1,24 @@
|
||||
// app/rna-sequencing/whole-transcriptome-sequencing/components/WTSApplications.jsx
|
||||
import ApplicationsLayout from '../../../components/shared/ApplicationsLayout';
|
||||
|
||||
const WTSApplications = () => {
|
||||
const applicationItems = [
|
||||
"Developmental Biology- Explores gene expression changes during development, providing insights into cellular differentiation and organismal growth.",
|
||||
"Genetic Research- Enables allele-specific expression analysis, enhancing the understanding of genetic variability and gene regulation.",
|
||||
"Microbial Studies- Examines microbial gene expression, host-pathogen interactions, and antibiotic resistance, providing insights into microbial ecology and disease prevention.",
|
||||
"Human Health- Identifies gene fusions, mutations, and expression profiles in cancer, neurological disorders, and other diseases, aiding in the discovery of biomarkers and therapeutic targets.",
|
||||
"Immunology- Analyzes immune response pathways and gene expression in various immune cell types, contributing to improving our understanding of immune system function and disorders.",
|
||||
"Environmental Biology- Assesses the impact of environmental changes on gene expression in plants, animals, and microbes, aiding in ecological and evolutionary studies.",
|
||||
"Plant Genomics- Investigates gene expression during growth, stress responses, and development, aiding in crop improvement and understanding plant-environment interactions.",
|
||||
"Animal Genomics- Explores gene regulation, development, and disease mechanisms across various animal species, contributing to veterinary research and comparative genomics."
|
||||
];
|
||||
|
||||
return (
|
||||
<ApplicationsLayout
|
||||
title="Applications of Whole Transcriptome Sequencing (WTS)"
|
||||
applicationItems={applicationItems}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export default WTSApplications;
|
||||
@ -0,0 +1,23 @@
|
||||
// app/rna-sequencing/whole-transcriptome-sequencing/components/WTSIntroduction.jsx
|
||||
import IntroductionLayout from '../../../components/shared/IntroductionLayout';
|
||||
|
||||
const WTSIntroduction = () => {
|
||||
const contentItems = [
|
||||
"Whole Transcriptome Sequencing (WTS) comprehensively captures and quantifies all RNA transcripts, both coding (mRNA) and long non-coding (rRNA, tRNA), providing an in-depth view of gene expression.",
|
||||
"This method combines a ribosomal RNA depletion strategy with Illumina NGS technology for efficient and precise results. The approach (1) reduces ribosomal contamination and increases the proportion of uniquely mapped reads, and (2) is particularly beneficial for species, such as bacteria, whose mRNA may lack a poly-A tail.",
|
||||
"The bioinformatics pipeline includes data preprocessing, genome mapping, transcript identification, and downstream analyses like differential expression analysis, lncRNA target gene analysis, GO enrichment analysis, and KEGG enrichment analysis.",
|
||||
"This technique is applicable to a wide range of species, including humans, mouse, rat, other animals, plants, and prokaryotes. It is compatible with various samples like; high and low-quality RNA samples, cell-free RNA, formalin-fixed paraffin-embedded (FFPE) tissues and RNA."
|
||||
];
|
||||
|
||||
return (
|
||||
<IntroductionLayout
|
||||
title="Introduction and Workflow"
|
||||
contentItems={contentItems}
|
||||
imageUrl="https://stock.adobe.com/in/images/messenger-rna-or-mrna-strand-3d-rendering-illustration-with-copy-space-genetics-science-medical-research-genome-replication-concepts/404350568"
|
||||
imageAlt="Whole Transcriptome Sequencing Workflow"
|
||||
useParagraphs={true}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export default WTSIntroduction;
|
||||
@ -0,0 +1,58 @@
|
||||
// WTSSpecifications.jsx
|
||||
import Link from 'next/link';
|
||||
import SpecificationsLayout from '../../../components/shared/SpecificationsLayout';
|
||||
|
||||
const WTSSpecifications = () => {
|
||||
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 ≥ 2 μg, Minimum Quantity: 500 ng, Concentration≥ 50 ng/µL</p>
|
||||
<p className="text-gray-600">Cells, Tissue and other samples</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 Plus"
|
||||
},
|
||||
{
|
||||
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 in Total RNA Sequencing for your writing (customization)</li>
|
||||
</ul>
|
||||
)
|
||||
}
|
||||
];
|
||||
|
||||
return (
|
||||
<SpecificationsLayout
|
||||
title="Service Specifications"
|
||||
specificationItems={specificationItems}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export default WTSSpecifications;
|
||||
28
app/rna-sequencing/whole-transcriptome-sequencing/page.js
Normal file
28
app/rna-sequencing/whole-transcriptome-sequencing/page.js
Normal file
@ -0,0 +1,28 @@
|
||||
// app/rna-sequencing/whole-transcriptome-sequencing/page.js
|
||||
import TitleBar from '../../components/shared/TitleBar';
|
||||
import WTSIntroduction from './components/WTSIntroduction';
|
||||
import WTSAdvantages from './components/WTSAdvantages';
|
||||
import WTSApplications from './components/WTSApplications';
|
||||
import WTSSpecifications from './components/WTSSpecifications';
|
||||
import PageLayout from '../../components/Layout/PageLayout';
|
||||
|
||||
export default function WholeTranscriptomeSequencingPage() {
|
||||
const breadcrumbs = [
|
||||
{ label: 'Home', href: '/', current: false },
|
||||
{ label: 'RNA Sequencing', href: '/rna-sequencing', current: false },
|
||||
{ label: 'Whole Transcriptome (Total RNA) Sequencing', href: '#', current: true }
|
||||
];
|
||||
|
||||
return (
|
||||
<PageLayout fixedHeader={true}>
|
||||
<TitleBar
|
||||
title="Whole Transcriptome (Total RNA) Sequencing"
|
||||
breadcrumbs={breadcrumbs}
|
||||
/>
|
||||
<WTSIntroduction />
|
||||
<WTSAdvantages />
|
||||
<WTSApplications />
|
||||
<WTSSpecifications />
|
||||
</PageLayout>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user