nf-core_modules/tests/software/sequenzautils/gcwiggle/main.nf
Ravneet Bhuller a70abc236b
PR for sequenzautils/gcwiggle (#345)
* added files

* edited files

* edited files

* edited file

* test(sequenzautils): Remove md5sum

Co-authored-by: kaurravneet4123 <kaurravneet4123@yahoo.com@users.noreply.github.com>
Co-authored-by: Edmund Miller <edmund.a.miller@protonmail.com>
2021-03-24 05:03:03 +00:00

14 lines
442 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { SEQUENZAUTILS_GCWIGGLE } from '../../../../software/sequenzautils/gcwiggle/main.nf' addParams( options: [ 'args': '-w 50' ] )
workflow test_sequenzautils_gcwiggle {
def input = []
input = [ [ id:'test' ], // meta map
file("${launchDir}/tests/data/genomics/sarscov2/fasta/test_genome.fasta", checkIfExists: true) ]
SEQUENZAUTILS_GCWIGGLE ( input )
}