// DegradomeSpecifications.jsx
import Link from 'next/link';
import SpecificationsLayout from '../../../components/shared/SpecificationsLayout';
const DegradomeSpecifications = () => {
const specificationItems = [
{
icon: "/images/homepage-2/NGS-Icons-45.svg",
title: "Sample Requirement",
renderContent: () => (
Sample type: Total RNA without degradation or DNA contamination
Total RNA≥ 20 μg, Minimum Quantity: 15 μg, Concentration≥ 100 ng/µL
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 Degradome Sequencing (customizable)
)
}
];
return (
);
};
export default DegradomeSpecifications;