mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 05:43:08 +00:00
a70abc236b
* 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>
14 lines
442 B
Text
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 )
|
|
}
|