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 @@
// SingleCellAdvantages.jsx (RNA version)
import AdvantagesLayout from '../../../components/shared/AdvantagesLayout';
const SingleCellAdvantages = () => {
const advantageItems = [
"Unlike traditional bulk RNA sequencing, which averages gene expression across many cells and can hide unique cellular differences, single-cell RNA sequencing examines each cell individually. This reveals variations in gene expression and provides detailed insights into cellular functions, development, and disease mechanisms that are often lost in population-level data.",
"Enables the discovery and characterization of rare or previously unrecognized cell populations, essential for understanding complex biological systems and disease mechanisms.",
"Delivers high-resolution data on gene expression patterns, allowing for precise mapping of gene regulatory networks and cellular states, and uncovering intricate details of cellular interactions.",
"Supports the identification of biomarkers and therapeutic targets by offering a detailed snapshot of gene activity specific to individual cell types or states, facilitating more targeted and effective research and treatments."
];
return (
<AdvantagesLayout
title="Advantages of Single Cell RNA Sequencing"
advantageItems={advantageItems}
/>
);
};
export default SingleCellAdvantages;

View File

@ -0,0 +1,21 @@
// SingleCellApplications.jsx (RNA version)
import ApplicationsLayout from '../../../components/shared/ApplicationsLayout';
const SingleCellApplications = () => {
const applicationItems = [
"Single Cell RNA sequencing is widely utilized across plants, animals, and humans.",
"Cellular Heterogeneity- Enables the identification and characterization of distinct cell types within complex tissues, providing insights into the diversity and functions of individual cells in health and disease.",
"Developmental Biology- Reveals how gene expression changes during development and differentiation, helping to understand the mechanisms driving cell fate decisions and tissue formation.",
"Immunology- Provides detailed profiles of immune cell types and states, aiding in the study of immune responses, autoimmune diseases, and vaccine development by uncovering the dynamics of individual immune cells.",
"Cancer Research- Helps in identifying rare tumor cell populations, understanding tumor heterogeneity, and discovering novel biomarkers or therapeutic targets specific to different cancer subtypes."
];
return (
<ApplicationsLayout
title="Applications of Single Cell RNA Sequencing"
applicationItems={applicationItems}
/>
);
};
export default SingleCellApplications;

View File

@ -0,0 +1,22 @@
// app/rna-sequencing/single-cell-rna-sequencing/components/SingleCellIntroduction.jsx
import IntroductionLayout from '../../../components/shared/IntroductionLayout';
const SingleCellIntroduction = () => {
const contentItems = [
"Single Cell RNA Sequencing (scRNA-seq) analyzes gene expression at the resolution of individual cells, allowing for the exploration of cellular transcriptomic heterogeneity and the discovery of rare cell types within complex tissues.",
"The workflow involves isolating individual cells from a sample, often using techniques like fluorescence-activated cell sorting (FACS), followed by RNA extraction, library preparation and (or) all the mRNA molecules in each cell are specifically barcoded either by capturing individual cells in a gel-emulsions (Gem; 10X) or Split-pool approach.",
"The bioinformatics pipeline includes data preprocessing, which involves quality control and normalization of the sequencing reads. The reads are then aligned to a reference genome or transcriptome to identify gene expression levels in each cell. Subsequent analysis involves clustering of cells based on expression profiles, differential gene expression analysis, and the identification of cell types and states.",
"Single-cell high-resolution transcriptome profiling offers valuable insights into gene regulatory networks and unveils diverse gene expression patterns within individual cells across cell cultures, tissues, and organs."
];
return (
<IntroductionLayout
title="Introduction and Workflow"
contentItems={contentItems}
badgeSubtext="Workflow from Single Cell RNA Sequencing"
useParagraphs={true}
/>
);
};
export default SingleCellIntroduction;

View File

@ -0,0 +1,57 @@
// app/rna-sequencing/single-cell-rna-sequencing/components/SingleCellSpecifications.jsx
import Link from 'next/link';
import SpecificationsLayout from '../../../components/shared/SpecificationsLayout';
const SingleCellSpecifications = () => {
const specificationItems = [
{
icon: "/images/homepage-2/NGS-Icons-45.svg",
title: "Sample Requirement",
renderContent: () => (
<div>
<div className="mb-4">
<p className="text-gray-600">Fresh Viable Samples - Individual Cells for Animal and Protoplasm for Plants</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 Single Cell RNA Sequencing (customizable)</li>
</ul>
)
}
];
return (
<SpecificationsLayout
title="Service Specifications"
specificationItems={specificationItems}
/>
);
};
export default SingleCellSpecifications;

View File

@ -0,0 +1,27 @@
import TitleBar from '../../components/shared/TitleBar';
import SingleCellIntroduction from './components/SingleCellIntroduction';
import SingleCellAdvantages from './components/SingleCellAdvantages';
import SingleCellApplications from './components/SingleCellApplications';
import SingleCellSpecifications from './components/SingleCellSpecifications';
import PageLayout from '../../components/Layout/PageLayout';
export default function SingleCellRNASequencingPage() {
const breadcrumbs = [
{ label: 'Home', href: '/', current: false },
{ label: 'RNA Sequencing', href: '/rna-sequencing', current: false },
{ label: 'Single Cell RNA Sequencing', href: '#', current: true }
];
return (
<PageLayout>
<TitleBar
title="Single Cell RNA Sequencing"
breadcrumbs={breadcrumbs}
/>
<SingleCellIntroduction />
<SingleCellAdvantages />
<SingleCellApplications />
<SingleCellSpecifications />
</PageLayout>
);
}