// app/dna-sequencing/whole-genome-sequencing/components/WGSSpecifications.jsx
import Link from 'next/link';
import SpecificationsLayout from '../../../components/shared/SpecificationsLayout';
const WGSSpecifications = () => {
const specificationItems = [
{
icon: "/images/homepage-2/NGS-Icons-45.svg",
title: "Sample Requirement",
renderContent: () => (
Genomic DNA, Cultivated cells, Blood, tissues, and other samples.
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 in Whole Genome Denovo Sequencing (customizable)
)
}
];
return (
);
};
export default WGSSpecifications;