mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
fix test input
This commit is contained in:
parent
a694267b4b
commit
8792d102ee
1 changed files with 8 additions and 1 deletions
|
@ -82,7 +82,8 @@ workflow test_gatk4_genotypegvcfs_gz_input_dbsnp_intervals {
|
|||
input = [ [ id:'test' ], // meta map
|
||||
file(params.test_data['homo_sapiens']['illumina']['test_genome_vcf_gz'], checkIfExists: true),
|
||||
file(params.test_data['homo_sapiens']['illumina']['test_genome_vcf_gz_tbi'], checkIfExists: true),
|
||||
file(params.test_data['homo_sapiens']['genome']['genome_bed'], checkIfExists: true)
|
||||
file(params.test_data['homo_sapiens']['genome']['genome_bed'], checkIfExists: true),
|
||||
[]
|
||||
]
|
||||
|
||||
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
||||
|
@ -108,6 +109,7 @@ workflow test_gatk4_genotypegvcfs_gendb_input {
|
|||
gendb = UNTAR.out.untar.map{ it[1] }.collect()
|
||||
gendb.add([])
|
||||
gendb.add([])
|
||||
gendb.add([])
|
||||
|
||||
input = Channel.of([ id:'test' ]).combine(gendb)
|
||||
|
||||
|
@ -130,6 +132,7 @@ workflow test_gatk4_genotypegvcfs_gendb_input_dbsnp {
|
|||
gendb = UNTAR.out.untar.map{ it[1] }.collect()
|
||||
gendb.add([])
|
||||
gendb.add([])
|
||||
gendb.add([])
|
||||
input = Channel.of([ id:'test' ]).combine(gendb)
|
||||
|
||||
GATK4_GENOTYPEGVCFS ( input, fasta, fai, dict, dbsnp, dbsnp_tbi)
|
||||
|
@ -148,6 +151,8 @@ workflow test_gatk4_genotypegvcfs_gendb_input_intervals {
|
|||
gendb = UNTAR.out.untar.map{ it[1] }.collect()
|
||||
gendb.add([])
|
||||
gendb.add([file(params.test_data['homo_sapiens']['genome']['genome_bed'], checkIfExists: true)])
|
||||
gendb.add([])
|
||||
|
||||
input = Channel.of([ id:'test' ]).combine(gendb)
|
||||
|
||||
GATK4_GENOTYPEGVCFS ( input, fasta, fai, dict, [], [] )
|
||||
|
@ -169,6 +174,8 @@ workflow test_gatk4_genotypegvcfs_gendb_input_dbsnp_intervals {
|
|||
gendb = UNTAR.out.untar.map{ it[1] }.collect()
|
||||
gendb.add([])
|
||||
gendb.add([file(params.test_data['homo_sapiens']['genome']['genome_bed'], checkIfExists: true)])
|
||||
gendb.add([])
|
||||
|
||||
input = Channel.of([ id:'test' ]).combine(gendb)
|
||||
|
||||
GATK4_GENOTYPEGVCFS ( input, fasta, fai, dict, dbsnp, dbsnp_tbi )
|
||||
|
|
Loading…
Reference in a new issue