mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 13:43:09 +00:00
DRAFT: Extend output from snpeff (#1895)
* Extending output from snpEff * Test of additional output-files from snpEff * Removing some md5 checks
This commit is contained in:
parent
535975eb81
commit
ffe0375048
3 changed files with 14 additions and 1 deletions
|
@ -15,6 +15,8 @@ process SNPEFF {
|
||||||
output:
|
output:
|
||||||
tuple val(meta), path("*.ann.vcf"), emit: vcf
|
tuple val(meta), path("*.ann.vcf"), emit: vcf
|
||||||
path "*.csv" , emit: report
|
path "*.csv" , emit: report
|
||||||
|
path "*.html" , emit: summary_html
|
||||||
|
path "*.genes.txt" , emit: genes_txt
|
||||||
path "versions.yml" , emit: versions
|
path "versions.yml" , emit: versions
|
||||||
|
|
||||||
when:
|
when:
|
||||||
|
|
|
@ -36,8 +36,16 @@ output:
|
||||||
pattern: "*.ann.vcf"
|
pattern: "*.ann.vcf"
|
||||||
- report:
|
- report:
|
||||||
type: file
|
type: file
|
||||||
description: snpEff report file
|
description: snpEff report csv file
|
||||||
|
pattern: "*.csv"
|
||||||
|
- summary_html:
|
||||||
|
type: file
|
||||||
|
description: snpEff summary statistics in html file
|
||||||
pattern: "*.html"
|
pattern: "*.html"
|
||||||
|
- genes_txt:
|
||||||
|
type: file
|
||||||
|
description: txt (tab separated) file having counts of the number of variants affecting each transcript and gene
|
||||||
|
pattern: "*.genes.txt"
|
||||||
- versions:
|
- versions:
|
||||||
type: file
|
type: file
|
||||||
description: File containing software versions
|
description: File containing software versions
|
||||||
|
|
|
@ -6,3 +6,6 @@
|
||||||
- path: output/snpeff/test.ann.vcf
|
- path: output/snpeff/test.ann.vcf
|
||||||
md5sum: e933384e572fc5ed0cce0faf1c0b2cc9
|
md5sum: e933384e572fc5ed0cce0faf1c0b2cc9
|
||||||
- path: output/snpeff/test.csv
|
- path: output/snpeff/test.csv
|
||||||
|
- path: output/snpeff/test.genes.txt
|
||||||
|
md5sum: 130536bf0237d7f3f746d32aaa32840a
|
||||||
|
- path: output/snpeff/snpEff_summary.html
|
||||||
|
|
Loading…
Reference in a new issue