nf-core_modules/modules/rtgtools/vcfeval/meta.yml

96 lines
3.1 KiB
YAML
Raw Normal View History

2022-05-04 14:51:09 +00:00
name: "rtgtools_vcfeval"
2022-05-06 12:23:40 +00:00
description: The VCFeval tool of RTG tools. It is used to evaluate called variants for agreement with a baseline variant set
2022-05-04 14:51:09 +00:00
keywords:
2022-05-06 12:23:40 +00:00
- benchmarking
- vcf
- rtg-tools
2022-05-04 14:51:09 +00:00
tools:
- "rtgtools":
description: "RealTimeGenomics Tools -- Utilities for accurate VCF comparison and manipulation"
2022-05-06 12:23:40 +00:00
homepage: "https://www.realtimegenomics.com/products/rtg-tools"
documentation: "https://github.com/RealTimeGenomics/rtg-tools"
tool_dev_url: "https://github.com/RealTimeGenomics/rtg-tools"
2022-05-04 14:51:09 +00:00
doi: ""
licence: "['BSD']"
input:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
2022-05-06 12:23:40 +00:00
- truth_vcf:
2022-05-04 14:51:09 +00:00
type: file
2022-05-06 12:23:40 +00:00
description: A standard VCF to compare against
pattern: "*.{vcf,vcf.gz}"
- truth_vcf_index:
type: file
description: The index of the standard VCF (optional)
pattern: "*.tbi"
- query_vcf:
type: file
description: A VCF with called variants to benchmark against the standard
pattern: "*.{vcf,vcf.gz}"
- query_vcf_index:
type: file
description: The index of the called VCF (optional)
pattern: "*.tbi"
2022-05-09 13:55:48 +00:00
- truth_regions:
2022-05-06 12:23:40 +00:00
type: file
description: A BED file containining the strict regions where VCFeval should only evaluate the fully overlapping variants (optional)
pattern: "*.bed"
- evaluation_regions:
type: file
description: A BED file containing the regions where VCFeval will evaluate every fully and partially overlapping variant (optional)
2022-05-06 12:23:40 +00:00
pattern: "*.bed"
- sdf:
2022-05-09 13:47:07 +00:00
type: file
description: The SDF (RTG Sequence Data File) folder of the reference genome
pattern: "*"
2022-05-04 14:51:09 +00:00
output:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- versions:
type: file
description: File containing software versions
pattern: "versions.yml"
2022-05-10 10:20:01 +00:00
- logging:
2022-05-04 14:51:09 +00:00
type: file
2022-05-10 10:20:01 +00:00
description: Files containing logging from vcfeval
pattern: "*{done,progress,.log}"
2022-05-10 11:33:37 +00:00
- tp:
2022-05-10 10:05:42 +00:00
type: file
2022-05-10 11:33:37 +00:00
description: A tuple containing the VCF and TBI file for the true positive variants
2022-05-10 10:26:13 +00:00
pattern: "tp.vcf{.gz,.gz.tbi}"
2022-05-10 11:33:37 +00:00
- baseline:
2022-05-10 10:26:13 +00:00
type: file
2022-05-10 11:33:37 +00:00
description: A tuple containing the VCF and TBI file for the baseline true positive variants
2022-05-10 10:26:13 +00:00
pattern: "tp-baseline.vcf{.gz,.gz.tbi}"
2022-05-10 11:33:37 +00:00
- fp:
2022-05-10 10:26:13 +00:00
type: file
2022-05-10 11:33:37 +00:00
description: A tuple containing the VCF and TBI file for the false positive variants
2022-05-10 10:26:13 +00:00
pattern: "fp.vcf{.gz,.gz.tbi}"
2022-05-10 11:33:37 +00:00
- fn:
2022-05-10 10:26:13 +00:00
type: file
2022-05-10 11:33:37 +00:00
description: A tuple containing the VCF and TBI file for the false negative variants
2022-05-10 10:26:13 +00:00
pattern: "fn.vcf{.gz,.gz.tbi}"
2022-05-10 10:20:01 +00:00
- roc:
2022-05-10 10:05:42 +00:00
type: file
2022-05-10 10:20:01 +00:00
description: TSV files containing ROC data for the evaluated variants
pattern: "*.tsv.gz"
2022-05-10 10:05:42 +00:00
- summary:
type: file
description: A TXT file containing the summary of the evaluation
pattern: "summary.txt"
- phasing:
type: file
description: A TXT file containing the data on the phasing
pattern: "phasing.txt"
2022-05-04 14:51:09 +00:00
authors:
- "@nvnieuwk"