mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
Adjusted meta
This commit is contained in:
parent
b7134855e4
commit
fa7c947c35
2 changed files with 10 additions and 10 deletions
|
@ -20,10 +20,10 @@ process RTGTOOLS_VCFEVAL {
|
|||
tuple val(meta), path("**fn.vcf.gz"), path("**fn.vcf.gz.tbi") , emit: fn
|
||||
tuple val(meta), path("**fp.vcf.gz"), path("**fp.vcf.gz.tbi") , emit: fp
|
||||
tuple val(meta), path("**baseline.vcf.gz"), path("**baseline.vcf.gz.tbi") , emit: baseline
|
||||
tuple val(meta), path("**.tsv.gz") , emit: roc
|
||||
tuple val(meta), path("**.tsv.gz") , emit: roc
|
||||
tuple val(meta), path("**results/summary.txt") , emit: summary
|
||||
tuple val(meta), path("**results/phasing.txt") , emit: phasing
|
||||
path "versions.yml" , emit: versions
|
||||
path "versions.yml" , emit: versions
|
||||
|
||||
when:
|
||||
task.ext.when == null || task.ext.when
|
||||
|
|
|
@ -62,21 +62,21 @@ output:
|
|||
type: file
|
||||
description: Files containing logging from vcfeval
|
||||
pattern: "*{done,progress,.log}"
|
||||
- true_positives:
|
||||
- tp:
|
||||
type: file
|
||||
description: VCF files containing true positives with their index files
|
||||
description: A tuple containing the VCF and TBI file for the true positive variants
|
||||
pattern: "tp.vcf{.gz,.gz.tbi}"
|
||||
- true_positives_baseline:
|
||||
- baseline:
|
||||
type: file
|
||||
description: VCF files containing baseline true positives with their index files
|
||||
description: A tuple containing the VCF and TBI file for the baseline true positive variants
|
||||
pattern: "tp-baseline.vcf{.gz,.gz.tbi}"
|
||||
- false_positives:
|
||||
- fp:
|
||||
type: file
|
||||
description: VCF files containing false positives with their index files
|
||||
description: A tuple containing the VCF and TBI file for the false positive variants
|
||||
pattern: "fp.vcf{.gz,.gz.tbi}"
|
||||
- false_negatives:
|
||||
- fn:
|
||||
type: file
|
||||
description: VCF files containing false negatives with their index files
|
||||
description: A tuple containing the VCF and TBI file for the false negative variants
|
||||
pattern: "fn.vcf{.gz,.gz.tbi}"
|
||||
- roc:
|
||||
type: file
|
||||
|
|
Loading…
Reference in a new issue