diff --git a/app/dna-sequencing/snp-genotyping/components/SNPIntroduction.jsx b/app/dna-sequencing/snp-genotyping/components/SNPIntroduction.jsx index 3a0a4d7..6292933 100644 --- a/app/dna-sequencing/snp-genotyping/components/SNPIntroduction.jsx +++ b/app/dna-sequencing/snp-genotyping/components/SNPIntroduction.jsx @@ -1,5 +1,6 @@ // app/dna-sequencing/snp-genotyping/components/SNPIntroduction.jsx -import IntroductionLayout from '../../../components/shared/IntroductionLayout'; + +import React from 'react'; const SNPIntroduction = () => { const contentItems = [ @@ -8,38 +9,47 @@ const SNPIntroduction = () => { "In the bioinformatics analysis, reads are aligned to either a reference genome or de novo assembly to detect SNVs and other genetic variations. This analysis supports studies on genetic diversity, population structure, and trait associations, with advanced tools enabling the processing of large datasets to achieve high genotyping accuracy.", "With the potential to develop hundreds to tens of thousands of genetic markers, ddRAD is ideal for applications in population genetics, germplasm assessment, marker-trait associations, GWAS, and QTL mapping. Its targeted, reproducible approach makes it a valuable tool for ecological and agricultural genomics." ]; - const advantageItems = [ - "Allows for precise identification of genetic variations at a single nucleotide level, enabling detailed mapping of genetic diversity.", - "Provides an efficient, cost-effective solution for analyzing thousands of SNPs across large populations, ideal for high-throughput studies.", - "SNP markers are stable and abundant across genomes, providing high data quality, reproducibility, and scalability, which are essential for reliable genetic studies, comparative analyses across multiple populations or species, and make SNP-based genotyping a powerful tool for both research and applied genomics.", - "Can reveal associations between genetic variations and complex traits, allowing researchers to identify genetic contributors to health, disease, or productivity in agriculture." - ]; - - const serviceTypes = [ - "DNA Sequencing", - "RNA Sequencing", - "Genomics Services" - ]; return ( - <> +
+ {/* Main container with two columns */} +
+ + {/* Left Column - Content */} +
+
+

+ Introduction and Workflow +

+
    + {contentItems.map((item, index) => ( +
  • + + {item} +
  • + ))} +
+
+
- {/* Introduction Layout */} - - + {/* Right Column - Image */} +
+
+
+ SNP Genotyping Overview +
+
+
+
+
); }; -export default SNPIntroduction; \ No newline at end of file +export default SNPIntroduction; diff --git a/app/dna-sequencing/snp-genotyping/ddRAD-sequencing/page.js b/app/dna-sequencing/snp-genotyping/ddRAD-sequencing/page.js index 81f7548..e4440bb 100644 --- a/app/dna-sequencing/snp-genotyping/ddRAD-sequencing/page.js +++ b/app/dna-sequencing/snp-genotyping/ddRAD-sequencing/page.js @@ -1,6 +1,7 @@ // app/dna-sequencing/snp-genotyping/page.js import DNATitleBar from '../../../components/shared/DNATitleBar'; import SNPIntroduction from '../components/SNPIntroduction'; +import SNPAdvantages from '../components/SNPAdvantages'; import SNPApplications from '../components/SNPApplications'; import SNPSpecifications from '../components/SNPSpecifications'; import PageLayout from '../../../components/Layout/PageLayout'; @@ -25,6 +26,7 @@ export default function ddRADPage() {
+