mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 19:18:17 +00:00
Updated test.mainnf file.
Added the necessary chrom sizes input and changed test file to directory (as specified in nfcore).
This commit is contained in:
parent
898c0775c6
commit
ec6ebe086f
1 changed files with 2 additions and 2 deletions
|
@ -9,11 +9,11 @@ include BEDTOOLS_SLOPEREFSEQ from '../main.nf' params(params)
|
||||||
|
|
||||||
// Define input channels
|
// Define input channels
|
||||||
ch_input_1 = Channel.fromPath('./tests/data/bed/A.bed')
|
ch_input_1 = Channel.fromPath('./tests/data/bed/A.bed')
|
||||||
// ch_input_2 = Channel.fromPath('./tests/data/bed/B.bed')
|
ch_input_2 = Channel.fromPath('./tests/data/bed/genome.sizes')
|
||||||
|
|
||||||
def additional_params_map = [:]
|
def additional_params_map = [:]
|
||||||
|
|
||||||
// Run the workflow
|
// Run the workflow
|
||||||
workflow {
|
workflow {
|
||||||
BEDTOOLS_SLOPEREFSEQ(ch_input_1, additional_params_map)
|
BEDTOOLS_SLOPEREFSEQ(ch_input_1, ch_input_2, additional_params_map)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue