// app/dna-sequencing/snp-genotyping/components/SNPSpecifications.jsx
import Link from 'next/link';
import SpecificationsLayout from '../../../components/shared/SpecificationsLayout';
const SNPSpecifications = () => {
const specificationItems = [
{
icon: "/images/homepage-2/NGS-Icons-45.svg",
title: "Sample Requirement",
renderContent: () => (
Genomic DNA ≥300 ng
Minimum Quantity: 100 ng
Concentration ≥10 ng/µL
DNA samples require an OD260/280 as close to 1.8~2.0 as possible
All DNA should be RNase-treated and should show no degradation or contamination
Please refer to{" "}
sample submission guidelines
{" "}or{" "}
Contact Us!
)
},
{
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: () => (
- The original sequencing data
- Experimental results
- Bioinformatics and Data analysis report
- Details of SNP-based Genotyping (customizable)
)
}
];
return (
);
};
export default SNPSpecifications;