Docker config
This commit is contained in:
@ -0,0 +1,20 @@
|
||||
// app/dna-sequencing/metagenomics-sequencing/components/MetagenomicsAdvantages.jsx
|
||||
import AdvantagesLayout from '../../../components/shared/AdvantagesLayout';
|
||||
|
||||
const MetagenomicsAdvantages = () => {
|
||||
const advantageItems = [
|
||||
"Offers a comprehensive view of microbial diversity in complex samples, capturing both known and novel species. NGS enables the parallel sequencing of thousands of organisms in a single run, providing high sequence coverage and detecting low-abundance microbes that may be missed or are cost-prohibitive with other techniques.",
|
||||
"Analyzes genomes directly from environmental samples without prior isolation or cultivation, overcoming the limitations of traditional culture-based methods. This approach is effective for studying microbial communities in their natural habitats.",
|
||||
"Reveals the metabolic capabilities and functional diversity of microbial communities, enhancing our understanding of ecosystem processes and microbial roles within various environments.",
|
||||
"Facilitates detailed genetic and ecological analysis, supporting studies on microbial interactions, evolution, and adaptation, with broad applications in environmental monitoring, biotechnology, agriculture, and human health."
|
||||
];
|
||||
|
||||
return (
|
||||
<AdvantagesLayout
|
||||
title="Advantages of Metagenomics Sequencing"
|
||||
advantageItems={advantageItems}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export default MetagenomicsAdvantages;
|
||||
@ -0,0 +1,22 @@
|
||||
// app/dna-sequencing/metagenomics-sequencing/components/MetagenomicsApplications.jsx
|
||||
import ApplicationsLayout from '../../../components/shared/ApplicationsLayout';
|
||||
|
||||
const MetagenomicsApplications = () => {
|
||||
const applicationItems = [
|
||||
"Environmental Monitoring- Assessing microbial diversity in natural environments, tracking changes in response to environmental factors, and monitoring ecosystem health.",
|
||||
"Biotechnology- Discovering novel enzymes, bioactive compounds, and metabolic pathways from microbial communities for applications in bioremediation, biofuel production, and pharmaceuticals.",
|
||||
"Agriculture- Studying soil microbiomes to improve crop yield, enhance nutrient cycling, and develop sustainable agricultural practices.",
|
||||
"Human Health- Investigating the human microbiome to understand its role in health and disease, including studies on gut microbiota, antibiotic resistance, and personalized medicine.",
|
||||
"Ecological Studies- Exploring microbial interactions, community dynamics, and ecosystem functions in diverse habitats, from oceans to terrestrial environments.",
|
||||
"Microbial Ecology- Analyzing community structure, biodiversity, and adaptation strategies of microbes in various ecosystems, advancing our understanding of microbial ecology and evolution."
|
||||
];
|
||||
|
||||
return (
|
||||
<ApplicationsLayout
|
||||
title="Applications of Metagenomics Sequencing"
|
||||
applicationItems={applicationItems}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export default MetagenomicsApplications;
|
||||
@ -0,0 +1,23 @@
|
||||
// app/dna-sequencing/metagenomics-sequencing/components/MetagenomicsIntroduction.jsx
|
||||
import IntroductionLayout from '../../../components/shared/IntroductionLayout';
|
||||
|
||||
const MetagenomicsIntroduction = () => {
|
||||
const contentItems = [
|
||||
"Metagenomics is a genomic method to investigate the genetic diversity within a sample, focusing on the specific regions (16S rRNA/ 18S rRNA/ ITS regions) or utilizing Shotgun metagenomics for comprehensive sequencing of all genes present.",
|
||||
"The workflow begins with DNA extraction from environmental samples, followed by fragmentation and sequencing of either specific region or the entire geneset.",
|
||||
"Bioinformatics analysis encompasses sequence alignment, taxonomy identification, and phylogenetic analysis. Additional analyses may involve functional annotation, comparative genomics, and statistical evaluations.",
|
||||
"Can be used to study diverse environmental samples like water, soil, and fecal matter, providing valuable insights into microbial diversity and host-microbiome interactions."
|
||||
];
|
||||
|
||||
return (
|
||||
<IntroductionLayout
|
||||
title="Introduction and Workflow"
|
||||
contentItems={contentItems}
|
||||
imageUrl="/images/metagenomics-sequencing.png"
|
||||
imageAlt="Metagenomics Sequencing"
|
||||
useParagraphs={true}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export default MetagenomicsIntroduction;
|
||||
@ -0,0 +1,63 @@
|
||||
// app/dna-sequencing/metagenomics-sequencing/components/MetagenomicsSpecifications.jsx
|
||||
import Link from 'next/link';
|
||||
import SpecificationsLayout from '../../../components/shared/SpecificationsLayout';
|
||||
|
||||
const MetagenomicsSpecifications = () => {
|
||||
const specificationItems = [
|
||||
{
|
||||
icon: "/images/homepage-2/NGS-Icons-45.svg",
|
||||
title: "Sample Requirement",
|
||||
renderContent: () => (
|
||||
<div>
|
||||
<div className="mb-4">
|
||||
<p className="text-gray-600">Samples sources including environmental and clinical samples</p>
|
||||
</div>
|
||||
<div className="mt-4 text-sm">
|
||||
<strong>
|
||||
Please refer to{' '}
|
||||
<Link href="/sample-submission-guideline" className="text-teal-600 underline hover:text-teal-700">
|
||||
sample submission guidelines
|
||||
</Link>
|
||||
{' '}or{' '}
|
||||
<Link href="/contact-us" 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 MiSeq and Oxford Nanopore Technologies (ONT)"
|
||||
},
|
||||
{
|
||||
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 Metagenomics Sequencing (customizable)</li>
|
||||
<li>Quality Control and Host Removal</li>
|
||||
<li>Analysis of Reads Species</li>
|
||||
<li>Assembly</li>
|
||||
<li>Analysis of Assembled Species</li>
|
||||
<li>Functional Analysis</li>
|
||||
<li>Prediction of Phage Host</li>
|
||||
</ul>
|
||||
)
|
||||
}
|
||||
];
|
||||
|
||||
return (
|
||||
<SpecificationsLayout
|
||||
title="Service Specifications"
|
||||
specificationItems={specificationItems}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export default MetagenomicsSpecifications;
|
||||
60
app/dna-sequencing/metagenomics-sequencing/page.js
Normal file
60
app/dna-sequencing/metagenomics-sequencing/page.js
Normal file
@ -0,0 +1,60 @@
|
||||
// app/dna-sequencing/metagenomics-sequencing/page.js
|
||||
import TitleBar from '../../components/shared/TitleBar';
|
||||
import MetagenomicsIntroduction from './components/MetagenomicsIntroduction';
|
||||
import MetagenomicsAdvantages from './components/MetagenomicsAdvantages';
|
||||
import MetagenomicsApplications from './components/MetagenomicsApplications';
|
||||
import MetagenomicsSpecifications from './components/MetagenomicsSpecifications';
|
||||
import PageLayout from '../../components/Layout/PageLayout';
|
||||
|
||||
export const metadata = {
|
||||
title: 'Metagenomics Sequencing - Operify Tech',
|
||||
description: 'Exploring Earth\'s Microbial Frontiers from Soil to Ocean',
|
||||
robots: 'noindex, follow',
|
||||
};
|
||||
|
||||
export default function MetagenomicsSequencingPage() {
|
||||
const breadcrumbs = [
|
||||
{
|
||||
label: 'Home',
|
||||
href: '/',
|
||||
current: false
|
||||
},
|
||||
{
|
||||
label: 'Research',
|
||||
href: '/dna-sequencing',
|
||||
current: false
|
||||
},
|
||||
{
|
||||
label: 'Metagenomics Sequencing',
|
||||
href: null,
|
||||
current: true
|
||||
}
|
||||
];
|
||||
|
||||
return (
|
||||
<PageLayout fixedHeader={true}>
|
||||
{/* Title Bar */}
|
||||
<TitleBar
|
||||
title="Metagenomics Sequencing"
|
||||
desc="Exploring Earth's Microbial Frontiers from Soil to Ocean"
|
||||
breadcrumbs={breadcrumbs}
|
||||
backgroundImage="/images/bredcrumb.jpg"
|
||||
/>
|
||||
|
||||
{/* Page Content */}
|
||||
<div className="page-content">
|
||||
{/* Introduction Section */}
|
||||
<MetagenomicsIntroduction />
|
||||
|
||||
{/* Advantages Section */}
|
||||
<MetagenomicsAdvantages />
|
||||
|
||||
{/* Applications Section */}
|
||||
<MetagenomicsApplications />
|
||||
|
||||
{/* Specifications Section */}
|
||||
<MetagenomicsSpecifications />
|
||||
</div>
|
||||
</PageLayout>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user