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:
sruthipsuresh 2020-10-30 09:00:31 -05:00 committed by sruthipsuresh
parent 898c0775c6
commit ec6ebe086f

View file

@ -9,11 +9,11 @@ include BEDTOOLS_SLOPEREFSEQ from '../main.nf' params(params)
// Define input channels
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 = [:]
// Run the workflow
workflow {
BEDTOOLS_SLOPEREFSEQ(ch_input_1, additional_params_map)
BEDTOOLS_SLOPEREFSEQ(ch_input_1, ch_input_2, additional_params_map)
}