// 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 ( ); }; export default ResequencingIntroduction;