Skip to content

Commit

Permalink
modified paths to include 'params.modules_testdata_base_path +'
Browse files Browse the repository at this point in the history
  • Loading branch information
provatap committed Dec 13, 2024
1 parent 61357c7 commit dbe487f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions modules/nf-core/parabricks/fq2bammeth/tests/main.nf.test
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ nextflow_process {
"""
input[0] = Channel.of([
[ id:'test' ], // meta map
file('https://github.com/nf-core/test-datasets/blob/modules/data/genomics/prokaryotes/escherichia_coli/genome/genome.fa', checkIfExists: true)
file('params.modules_testdata_base_path + 'genomics/prokaryotes/escherichia_coli/genome/genome.fa', checkIfExists: true)
])
"""
}
Expand All @@ -34,12 +34,12 @@ nextflow_process {
input[0] = Channel.of([
[ id:'test', single_end:true ], // meta map
[
file('https://github.com/nf-core/test-datasets/blob/modules/data/genomics/prokaryotes/escherichia_coli/illumina/SRR389222_sub1.fastq.gz', checkIfExists: true)
file('params.modules_testdata_base_path + 'genomics/prokaryotes/escherichia_coli/illumina/SRR389222_sub1.fastq.gz', checkIfExists: true)
]
])
input[1] = Channel.of([
[ id:'test' ], // meta map
file('https://github.com/nf-core/test-datasets/blob/modules/data/genomics/prokaryotes/escherichia_coli/genome/genome.fa', checkIfExists: true)
file('params.modules_testdata_base_path + 'genomics/prokaryotes/escherichia_coli/genome/genome.fa', checkIfExists: true)
])
input[2] = BWAMETH_INDEX.out.index
input[3] = []
Expand Down Expand Up @@ -68,12 +68,12 @@ nextflow_process {
input[0] = Channel.of([
[ id:'test', single_end:true ], // meta map
[
file('https://github.com/nf-core/test-datasets/blob/modules/data/genomics/prokaryotes/escherichia_coli/illumina/SRR389222_sub1.fastq.gz', checkIfExists: true)
file(params.modules_testdata_base_path + 'genomics/prokaryotes/escherichia_coli/illumina/SRR389222_sub1.fastq.gz', checkIfExists: true)
]
])
input[1] = Channel.of([
[ id:'test' ], // meta map
file('https://github.com/nf-core/test-datasets/blob/modules/data/genomics/prokaryotes/escherichia_coli/genome/genome.fa', checkIfExists: true)
file(params.modules_testdata_base_path + 'genomics/prokaryotes/escherichia_coli/genome/genome.fa', checkIfExists: true)
])
input[2] = BWAMETH_INDEX.out.index
input[3] = []
Expand All @@ -98,13 +98,13 @@ nextflow_process {
input[0] = Channel.of([
[ id:'test', single_end:false ], // meta map
[
file('https://github.com/nf-core/test-datasets/blob/modules/data/genomics/prokaryotes/escherichia_coli/illumina/Ecoli_10K_methylated_R1.fastq.gz', checkIfExists: true),
file('https://github.com/nf-core/test-datasets/blob/modules/data/genomics/prokaryotes/escherichia_coli/illumina/Ecoli_10K_methylated_R2.fastq.gz', checkIfExists: true),
file(params.modules_testdata_base_path + 'genomics/prokaryotes/escherichia_coli/illumina/Ecoli_10K_methylated_R1.fastq.gz', checkIfExists: true),
file(params.modules_testdata_base_path + 'genomics/prokaryotes/escherichia_coli/illumina/Ecoli_10K_methylated_R2.fastq.gz', checkIfExists: true),
]
])
input[1] = Channel.of([
[ id:'test' ], // meta map
file('https://github.com/nf-core/test-datasets/blob/modules/data/genomics/prokaryotes/escherichia_coli/genome/genome.fa', checkIfExists: true)
file(params.modules_testdata_base_path + 'genomics/prokaryotes/escherichia_coli/genome/genome.fa', checkIfExists: true)
])
input[2] = BWAMETH_INDEX.out.index
input[3] = []
Expand Down

0 comments on commit dbe487f

Please sign in to comment.