Skip to content

Commit

Permalink
update paths for VEP (nf-core#5281)
Browse files Browse the repository at this point in the history
update paths
  • Loading branch information
maxulysse authored and tucano committed Mar 20, 2024
1 parent dce2a09 commit b69a8e7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/nf-core/ensemblvep/vep/tests/main.nf.test
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ nextflow_process {
"""
input[0] = Channel.of([
[ id:'test' ], // meta map
file(params.test_data['sarscov2']['illumina']['test_vcf'], checkIfExists: true),
file(params.modules_testdata_base_path + 'genomics/sarscov2/illumina/vcf/test.vcf', checkIfExists: true),
[]
])
input[1] = params.vep_genome
Expand All @@ -40,7 +40,7 @@ nextflow_process {
input[4] = ENSEMBLVEP_DOWNLOAD.out.cache.map{ meta, cache -> [cache] }
input[5] = Channel.value([
[id:"fasta"],
file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
file(params.modules_testdata_base_path + 'genomics/sarscov2/genome/genome.fasta', checkIfExists: true)
])
input[6] = []
"""
Expand Down Expand Up @@ -76,7 +76,7 @@ nextflow_process {
"""
input[0] = Channel.of([
[ id:'test' ], // meta map
file(params.test_data['sarscov2']['illumina']['test_vcf'], checkIfExists: true),
file(params.modules_testdata_base_path + 'genomics/sarscov2/illumina/vcf/test.vcf', checkIfExists: true),
[]
])
input[1] = params.vep_genome
Expand All @@ -85,7 +85,7 @@ nextflow_process {
input[4] = ENSEMBLVEP_DOWNLOAD.out.cache.map{ meta, cache -> [cache] }
input[5] = Channel.value([
[id:"fasta"],
file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
file(params.modules_testdata_base_path + 'genomics/sarscov2/genome/genome.fasta', checkIfExists: true)
])
input[6] = []
"""
Expand Down

0 comments on commit b69a8e7

Please sign in to comment.