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 @@
// ResequencingAdvantages.jsx
import AdvantagesLayout from '../../../../components/shared/AdvantagesLayout';
const ResequencingAdvantages = () => {
const advantageItems = [
"Provides a detailed examination of an organism's entire genome, revealing all genetic variations compared to a reference genome.",
"Enables accurate identification of single nucleotide polymorphisms (SNPs), insertions, deletions, and structural variants, crucial for understanding genetic diversity and disease mechanisms.",
"Facilitates the discovery of genetic markers associated with diseases, guiding personalized treatment approaches.",
"Supports diverse studies including evolutionary biology, agricultural genetics, and microbial genomics, enhancing insights into genetic adaptations and relationships across species."
];
return (
<AdvantagesLayout
title="Advantages of Whole Genome ReSequencing"
advantageItems={advantageItems}
/>
);
};
export default ResequencingAdvantages;

View File

@ -0,0 +1,22 @@
// ResequencingApplications.jsx
import ApplicationsLayout from '../../../../components/shared/ApplicationsLayout';
const ResequencingApplications = () => {
const applicationItems = [
"Genetic Variation Discovery- Identifies and characterizes genetic variations, including single nucleotide polymorphisms (SNPs), insertions, deletions, and structural variants, across different individuals or populations, aiding in the study of genetic diversity and evolution.",
"Disease Research- Helps in pinpointing genetic mutations and variants associated with genetic disorders, complex diseases, and rare conditions, enhancing our understanding of disease mechanisms and enabling the development of targeted therapies.",
"Personalized Medicine- Facilitates the tailoring of medical treatments based on an individual's genetic profile, allowing for more precise and effective interventions and drug responses.",
"Population Genetics- Assists in studying the genetic makeup of populations to understand evolutionary processes, migration patterns, and adaptation to environmental changes, providing insights into the genetic basis of traits and diseases.",
"Agricultural Genomics- Identifies genetic markers linked to desirable traits and maps quantitative trait loci (QTL) to enhance selective breeding and improve characteristics such as yield, disease resistance, and stress tolerance. It also supports genome-wide association studies (GWAS) to connect genetic variants with specific traits or diseases."
];
return (
<ApplicationsLayout
title="Applications of Whole Genome ReSequencing"
applicationItems={applicationItems}
/>
);
};
export default ResequencingApplications;

View File

@ -0,0 +1,28 @@
// ResequencingIntroduction.jsx
import IntroductionLayout from '../../../../components/shared/IntroductionLayout';
const ResequencingIntroduction = () => {
const contentItems = [
"Whole Genome Resequencing involves sequencing an organism's entire genome where reference genome is already available. Unlike de novo sequencing, which builds a genome from scratch, resequencing focuses on identifying variations and differences compared to a previously known reference genome.",
"The workflow involves DNA isolation, fragmentation, and sequencing to generate millions of short reads.",
"These reads undergo alignment to a reference genome, followed by the analysis of genetic variations using advanced bioinformatics tools.",
"It enables detailed analysis of genetic variations across diverse species like humans, plants, and bacteria."
];
return (
<IntroductionLayout
title="Introduction and Workflow"
contentItems={contentItems}
imageUrl="/images/resequencing-workflow.png"
imageAlt="Resequencing Workflow"
badgeText="RESEQUENCING"
badgeSubtext="Change only sequencing and analysis by adding it from whole exome"
backgroundColor="#f8f9fa"
badgeColor="bg-teal-600"
useParagraphs={true}
/>
);
};
export default ResequencingIntroduction;

View File

@ -0,0 +1,63 @@
// ResequencingSpecifications.jsx
import Link from 'next/link';
import SpecificationsLayout from '../../../../components/shared/SpecificationsLayout';
const ResequencingSpecifications = () => {
const specificationItems = [
{
icon: "/images/homepage-2/NGS-Icons-45.svg",
title: "Sample Requirement",
renderContent: () => (
<div>
<div className="mb-4">
<p className="text-gray-600">Genomic DNA, Cultivated cells, Blood, tissues, and other 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 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 Whole Genome ReSequencing (customizable)</li>
</ul>
)
}
];
return (
<SpecificationsLayout
title="Service Specifications"
specificationItems={specificationItems}
/>
);
};
export default ResequencingSpecifications;

View File

@ -0,0 +1,32 @@
import TitleBar from '../../../components/shared/TitleBar';
import ResequencingIntroduction from './components/ResequencingIntroduction';
import ResequencingAdvantages from './components/ResequencingAdvantages';
import ResequencingApplications from './components/ResequencingApplications';
import ResequencingSpecifications from './components/ResequencingSpecifications';
import PageLayout from '../../../components/Layout/PageLayout';
export default function WholeGenomeResequencingPage() {
const breadcrumbs = [
{ label: 'Home', href: '/' },
{ label: 'Research', href: '/research' },
{ label: 'Whole Genome Sequencing', href: '/dna-sequencing/whole-genome-sequencing' },
{ label: 'Whole Genome ReSequencing', current: true }
];
return (
<PageLayout fixedHeader={true}>
<TitleBar
title="Whole Genome ReSequencing"
desc="Unraveling Genomic Complexity with Re-Sequencing"
breadcrumbs={breadcrumbs}
/>
<div className="page-content">
<ResequencingIntroduction />
<ResequencingAdvantages />
<ResequencingApplications />
<ResequencingSpecifications />
</div>
</PageLayout>
);
}