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 @@
// DegradomeAdvantages.jsx
import AdvantagesLayout from '../../../components/shared/AdvantagesLayout';
const DegradomeAdvantages = () => {
const advantageItems = [
"Degradome sequencing provides a focused analysis of RNA degradation, specifically targeting cleavage sites mediated by miRNAs and ta-siRNAs, making it ideal for studying gene regulation and RNA stability.",
"By targeting degradation products, degradome sequencing minimizes the impact of intact RNAs, enhancing sensitivity for detecting miRNA targets and cleavage events.",
"Degradome sequencing focuses on RNA cleavage sites, eliminating the need for additional steps like ribosomal RNA removal, making it a more cost-effective alternative to broader transcriptome studies.",
"Degradome sequencing enables the identification of novel regulatory elements, such as circRNAs and biomarkers, expanding its utility in understanding RNA regulatory networks."
];
return (
<AdvantagesLayout
title="Advantages of Degradome Sequencing"
advantageItems={advantageItems}
/>
);
};
export default DegradomeAdvantages;

View File

@ -0,0 +1,22 @@
// DegradomeApplications.jsx
import ApplicationsLayout from '../../../components/shared/ApplicationsLayout';
const DegradomeApplications = () => {
const applicationItems = [
"Gene Regulation Studies- Used to identify miRNA targets and cleavage sites, elucidating the regulatory networks that control gene expression and RNA turnover in different organisms.",
"Developmental Biology- Explores RNA degradation patterns during developmental stages, uncovering the molecular mechanisms underlying cell differentiation and tissue formation.",
"Disease Research- Investigates RNA cleavage profiles associated with diseases such as cancer and neurodegenerative disorders, helping to identify potential biomarkers and therapeutic targets.",
"Functional Genomics- Provides a detailed view of RNA decay dynamics, enabling the study of gene function and the roles of regulatory RNAs in cellular processes.",
"Comparative Genomics- Analyzes RNA degradation patterns across species or environmental conditions to understand evolutionary conservation and differences in regulatory mechanisms.",
"Stress and Environmental Responses- Examines changes in RNA stability under stress conditions, shedding light on the molecular mechanisms of stress adaptation and survival strategies."
];
return (
<ApplicationsLayout
title="Applications of Degradome Sequencing"
applicationItems={applicationItems}
/>
);
};
export default DegradomeApplications;

View File

@ -0,0 +1,22 @@
// app/rna-sequencing/degradome-sequencing/components/DegradomeIntroduction.jsx
import IntroductionLayout from '../../../components/shared/IntroductionLayout';
const DegradomeIntroduction = () => {
const contentItems = [
"Degradome sequencing, also called Parallel Analysis of RNA Ends (PARE), is a high-throughput technique to analyze RNA degradation products, uncovering RNA stability, miRNA targets, and regulatory networks.",
"Degradome Sequencing Workflow combines next-generation sequencing (NGS) with a modified 5' RACE method, involving RNA extraction, adapter ligation to capture degradation products, cDNA synthesis, and high-throughput sequencing to map RNA cleavage sites.",
"Bioinformatics analysis for Degradome Sequencing include data preprocessing, aligning reads to reference genomes, identifying miRNA/ta-siRNA cleavage sites, and quantifying cleaved targets, revealing RNA decay dynamics and regulatory mechanisms.",
"The method facilitates the discovery of novel miRNAs and ta-siRNAs, studies on miRNA-mediated gene regulation, and comparative RNA decay analysis across species, contributing to a comprehensive understanding of RNA life cycles."
];
return (
<IntroductionLayout
title="Introduction and Workflow"
contentItems={contentItems}
badgeSubtext="Brochure from Degradome sequencing"
useParagraphs={true}
/>
);
};
export default DegradomeIntroduction;

View File

@ -0,0 +1,58 @@
// DegradomeSpecifications.jsx
import Link from 'next/link';
import SpecificationsLayout from '../../../components/shared/SpecificationsLayout';
const DegradomeSpecifications = () => {
const specificationItems = [
{
icon: "/images/homepage-2/NGS-Icons-45.svg",
title: "Sample Requirement",
renderContent: () => (
<div>
<div className="mb-4">
<p className="text-gray-600">Sample type: Total RNA without degradation or DNA contamination</p>
<p className="text-gray-600">Total RNA 20 μg, Minimum Quantity: 15 μg, Concentration 100 ng/µL</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 Degradome Sequencing (customizable)</li>
</ul>
)
}
];
return (
<SpecificationsLayout
title="Service Specifications"
specificationItems={specificationItems}
/>
);
};
export default DegradomeSpecifications;

View File

@ -0,0 +1,27 @@
import TitleBar from '../../components/shared/TitleBar';
import DegradomeIntroduction from './components/DegradomeIntroduction';
import DegradomeAdvantages from './components/DegradomeAdvantages';
import DegradomeApplications from './components/DegradomeApplications';
import DegradomeSpecifications from './components/DegradomeSpecifications';
import PageLayout from '../../components/Layout/PageLayout';
export default function DegradomeSequencingPage() {
const breadcrumbs = [
{ label: 'Home', href: '/', current: false },
{ label: 'RNA Sequencing', href: '/rna-sequencing', current: false },
{ label: 'Degradome Sequencing', href: '#', current: true }
];
return (
<PageLayout fixedHeader={true}>
<TitleBar
title="Degradome Sequencing"
breadcrumbs={breadcrumbs}
/>
<DegradomeIntroduction />
<DegradomeAdvantages />
<DegradomeApplications />
<DegradomeSpecifications />
</PageLayout>
);
}