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,23 @@
// app/dna-sequencing/hybrid-genome-sequencing/components/HybridIntroduction.jsx
import IntroductionLayout from '../../../components/shared/IntroductionLayout';
const HybridIntroduction = () => {
const contentItems = [
"Hybrid sequencing integrates the accuracy of short-read sequencing (Illumina) with the comprehensive coverage of long-read sequencing (PacBio or Nanopore), ensuring detailed and complete genome assemblies.",
"This approach involves sequencing the same sample with both technologies, which means different libraries are prepared for both the technology followed by sequencing.",
"Following sequencing, advanced bioinformatics tools are used to align and integrate the long and short reads, enhancing variant detection and improving the resolution of complex genomic regions.",
"Hybrid sequencing is applicable to a wide range of research areas, from complex genome assemblies to resolving repetitive regions and improving the quality of reference genomes."
];
return (
<IntroductionLayout
title="Introduction and Workflow"
contentItems={contentItems}
imageUrl="/images/sample-process-steps.png"
imageAlt="Sample Process Steps"
useParagraphs={true}
/>
);
};
export default HybridIntroduction;