// app/dna-sequencing/single-cell-dna-sequencing/components/SingleCellSpecifications.jsx
import Link from 'next/link';
import SpecificationsLayout from '../../../components/shared/SpecificationsLayout';
const SingleCellSpecifications = () => {
const specificationItems = [
{
icon: "/images/homepage-2/NGS-Icons-45.svg",
title: "Sample Requirement",
renderContent: () => (
96-well plates of live cells suspension, Frozen cells in specific frozen lysates, Genomic DNA, 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: "10X Genomics Chromium System followed by Illumina Sequencer"
},
{
icon: "/images/service/social-support.png",
title: "Deliverables",
renderContent: () => (
- The original sequencing data
- Experimental results
- Bioinformatics and Data Analysis Report
- Details of Single Cell DNA Sequencing (customizable)
)
}
];
return (
);
};
export default SingleCellSpecifications;