This repository contains the official datasets for Veritas, a tool for benchmarking and validating viral bioinformatics workflows.
The datasets stored here are curated to provide gold-standard data for validating variant calling and consensus generation pipelines. They include reference sequences, truth VCFs, primer schemes, and other metadata necessary for comprehensive benchmarking.
The datasets are organized by source, organism, and dataset name:
datasets/
└── source/ (e.g., veritas)
└── organism/ (e.g., sars-cov-2)
└── dataset_name/ (e.g., SEARCH-8113)
├── README.md # Dataset documentation
├── metadata.yaml # Dataset metadata
├── reference.fa # Reference genome
├── truth.vcf.gz # Truth variants (VCF)
├── primers.bed # Primer scheme (optional)
└── ...
You can easily access and use these datasets using the Veritas CLI.
To see all available datasets:
veritas list-datasetsTo download a specific dataset to your local machine:
veritas get-dataset \
-d veritas/sars-cov-2/SEARCH-8113 \
-o datasetsOnce downloaded, you can use the dataset to validate your workflow results:
veritas validate \
-d datasets/veritas/sars-cov-2/SEARCH-8113 \
-q your_results.vcf.gz \
-o validation_outputWe welcome contributions of new datasets! Please ensure your dataset includes:
- Reference FASTA (
reference.fa) - Truth VCF (bgzipped and indexed)
- Metadata (
metadata.yaml) - Documentation (
README.md) - RTG SDF (rtg_sdf folder)
- Primers (primers.bed, required for amplicon-seq datasets)
Please submit a Pull Request with your new dataset.