43 lines
2.1 KiB
JavaScript
43 lines
2.1 KiB
JavaScript
// EpigenomicsIntroduction.jsx
|
|
|
|
import IntroductionLayout from '../../../components/shared/IntroductionLayout';
|
|
|
|
const EpigenomicsIntroduction = () => {
|
|
const contentItems = [
|
|
"Epigenomics Sequencing is a comprehensive approach to analyze epigenetic modifications across genomes, providing enriched genomic view of cellular memory and gene regulation.",
|
|
"The workflow includes isolating DNA, fragmenting it, capturing the regions of interest followed by sequencing to produce millions of short reads.",
|
|
"In the bioinformatics analysis, these reads are aligned to a known reference genome to detect genomic alterations and epigenetic modifications.",
|
|
"It is a powerful tool for diverse genomic studies, capable of sequencing humans, livestock, plants, bacteria, and disease-related microbes."
|
|
];
|
|
const advantageItems = [
|
|
"Provides comprehensive analysis of epigenetic modifications including DNA methylation, histone modifications, and chromatin accessibility, offering insights into gene regulation mechanisms.",
|
|
"Enables single-base resolution mapping of epigenetic marks across the genome, allowing for precise identification of regulatory elements and their modifications.",
|
|
"Reveals epigenetic alterations associated with diseases, development, and environmental responses, providing insights into cellular memory and inheritance patterns.",
|
|
"Identifies potential therapeutic targets and biomarkers for epigenetic-based treatments, supporting the development of personalized medicine approaches."
|
|
];
|
|
|
|
|
|
const serviceTypes = [
|
|
"Whole Genome Bisulphite Sequencing (WGBS)",
|
|
"Chip Sequencing",
|
|
"ATAC Sequencing"
|
|
];
|
|
|
|
return (
|
|
<IntroductionLayout
|
|
introTitle="Introduction and Workflow"
|
|
advantageTitle="Advantage"
|
|
introItems={contentItems}
|
|
advantageItems={advantageItems}
|
|
imageUrl="/images/epigenomics-overview.png"
|
|
imageAlt="Epigenomics Overview"
|
|
badgeText="EPIGENOMICS"
|
|
serviceTypes={serviceTypes}
|
|
backgroundColor="#f8f9fa"
|
|
badgeColor="bg-teal-600"
|
|
useParagraphs={true}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default EpigenomicsIntroduction; |