mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 19:18:17 +00:00
working test
This commit is contained in:
parent
c288e081b4
commit
3ac5c5fad6
3 changed files with 8 additions and 3 deletions
4
.github/filters.yml
vendored
4
.github/filters.yml
vendored
|
@ -128,6 +128,10 @@ gatk_createsequencedictionary:
|
||||||
- software/gatk/createsequencedictionary/**
|
- software/gatk/createsequencedictionary/**
|
||||||
- tests/software/gatk/createsequencedictionary/**
|
- tests/software/gatk/createsequencedictionary/**
|
||||||
|
|
||||||
|
gatk4_mergevcfs:
|
||||||
|
- software/gatk4/mergevcfs/**
|
||||||
|
- tests/software/gatk4/mergevcfs/**
|
||||||
|
|
||||||
gffread:
|
gffread:
|
||||||
- software/gffread/**
|
- software/gffread/**
|
||||||
- tests/software/gffread/**
|
- tests/software/gffread/**
|
||||||
|
|
|
@ -9,7 +9,8 @@ workflow test_gatk4_mergevcfs {
|
||||||
def input = []
|
def input = []
|
||||||
input = [ [ id:'test' ], // meta map
|
input = [ [ id:'test' ], // meta map
|
||||||
[ file("${launchDir}/tests/data/vcf/test.vcf", checkIfExists: true),
|
[ file("${launchDir}/tests/data/vcf/test.vcf", checkIfExists: true),
|
||||||
file("${launchDir}/tests/data/vcf/test2.vcf.gz", checkIfExists: true) ] ]
|
file("${launchDir}/tests/data/vcf/test2.vcf.gz", checkIfExists: true),
|
||||||
|
file("${launchDir}/tests/data/vcf/test3.vcf.gz", checkIfExists: true) ] ]
|
||||||
|
|
||||||
GATK4_MERGEVCFS ( input )
|
GATK4_MERGEVCFS ( input )
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,5 +4,5 @@
|
||||||
- gatk4
|
- gatk4
|
||||||
- gatk4_mergevcfs
|
- gatk4_mergevcfs
|
||||||
files:
|
files:
|
||||||
- path: output/gatk4/test.fastq.gz
|
- path: output/gatk4/test.merged.vcf.gz
|
||||||
md5sum: 61c6d3556ac6e0d09d800415b9a48508
|
md5sum: f25850b7bd4d362b5ea67d4453e9df55
|
||||||
|
|
Loading…
Reference in a new issue