Docker config

This commit is contained in:
mukesh13
2025-06-16 15:53:12 +05:30
commit da3df17022
411 changed files with 24117 additions and 0 deletions

View File

@ -0,0 +1,20 @@
// WGBSAdvantages.jsx
import AdvantagesLayout from '../../../../components/shared/AdvantagesLayout';
const WGBSAdvantages = () => {
const advantageItems = [
"Provides high-resolution mapping of DNA methylation patterns across the genome, including CpG, CHG, and CHH sites, offering detailed insights into epigenetic modifications.",
"Enables precise quantification of methylation levels, distinguishing between methylated and unmethylated cytosines based on read counts.",
"This technique can detect effective CpG sites reaching over 75% of all CpG sites in the entire genome.",
"Provides valuable insights into cell fate determination, genetic reprogramming, gene regulation, developmental epigenetics, disease mechanisms, and the identification of new epigenetic markers and therapeutic targets."
];
return (
<AdvantagesLayout
title="Advantages of Whole Genome Bisulphite Sequencing (WGBS)"
advantageItems={advantageItems}
/>
);
};
export default WGBSAdvantages;

View File

@ -0,0 +1,21 @@
// WGBSApplications.jsx
import ApplicationsLayout from '../../../../components/shared/AdvantagesLayout';
const WGBSApplications = () => {
const applicationItems = [
"DNA Methylation Profiling- Provides a comprehensive map of DNA methylation across the entire genome, revealing methylation patterns associated with gene regulation, epigenetic modifications, and cellular differentiation.",
"Cancer Epigenetics- Identifies aberrant DNA methylation patterns in cancerous tissues, which can help in understanding tumorigenesis, detecting early biomarkers for cancer diagnosis, and developing epigenetic-based therapies.",
"Developmental Biology- Analyzes changes in DNA methylation during development, offering insights into how epigenetic modifications influence cell differentiation and tissue development.",
"Genetic and Epigenetic Research- Explores the interplay between genetic sequences and epigenetic modifications, enhancing our understanding of how genetic variations and environmental factors interact to affect gene expression and contribute to complex diseases.",
"Disease Mechanisms- Uncovers epigenetic alterations associated with various diseases, including neurological disorders and cardiovascular diseases, helping in the identification of novel biomarkers and therapeutic targets."
];
return (
<ApplicationsLayout
title="Applications of Whole Genome Bisulphite Sequencing (WGBS)"
applicationItems={applicationItems}
/>
);
};
export default WGBSApplications;

View File

@ -0,0 +1,31 @@
const WGBSBioinformatics = () => {
return (
<section className="py-8 lg:py-12 bg-gray-50">
<div className="container mx-auto max-w-none px-4 lg:px-6">
<h2 className="text-gray-600 text-left pb-6 text-2xl lg:text-3xl font-normal mb-8">
Bioinformatics Pipeline
</h2>
{/* Pipeline Image */}
<div className="bg-white rounded-xl shadow-lg p-6 lg:p-8">
<div className="flex justify-center">
<img
src="/images/wgbs-bioinformatics-pipeline.jpg"
alt="WGBS Bioinformatics Pipeline Workflow"
className="max-w-full h-auto rounded-lg"
/>
</div>
{/* Pipeline Description */}
<div className="mt-6 text-center">
<p className="text-gray-600 text-sm lg:text-base">
Comprehensive WGBS bioinformatics pipeline including quality control, alignment, methylation calling, and downstream analysis
</p>
</div>
</div>
</div>
</section>
);
};
export default WGBSBioinformatics;

View File

@ -0,0 +1,28 @@
// WGBSIntroduction.jsx
import IntroductionLayout from '../../../../components/shared/IntroductionLayout';
const WGBSIntroduction = () => {
const contentItems = [
"Whole Genome Bisulphite Sequencing (WGBS) maps DNA methylation patterns across an entire genome at single-base resolution, offering insights into transcriptional activity and gene regulation.",
"The workflow includes DNA isolation, followed by treatment with sodium bisulfite (Gold standard method). This treatment converts unmethylated cytosines into uracils, which are subsequently amplified by PCR and sequenced.",
"In bioinformatics analysis, sequencing data is aligned to a reference genome using advanced bioinformatics tools to determine the methylation status at CpG, CHG, and CHH sites.",
"Valuable in epigenetic research for its ability to provide high-resolution insights into the regulatory mechanisms of the genome, offering a deeper understanding of cellular functions and molecular pathways."
];
return (
<IntroductionLayout
title="Introduction and Workflow"
contentItems={contentItems}
imageUrl="/images/wgbs-workflow.png"
imageAlt="WGBS Workflow"
badgeText="WGBS WORKFLOW"
badgeSubtext="Workflow from Whole Genome Bisulfite Sequencing (WGBS)"
backgroundColor="#f8f9fa"
badgeColor="bg-teal-600"
useParagraphs={true}
/>
);
};
export default WGBSIntroduction;

View File

@ -0,0 +1,57 @@
// WGBSSpecifications.jsx
import Link from 'next/link';
import SpecificationsLayout from '../../../../components/shared/SpecificationsLayout';
const WGBSSpecifications = () => {
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 Genomic DNA of human, animals, plants and microorganisms.</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 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 WGBS Sequencing (customizable)</li>
</ul>
)
}
];
return (
<SpecificationsLayout
title="Service Specifications"
specificationItems={specificationItems}
/>
);
};
export default WGBSSpecifications;