mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
b3278a1e63
* Modules TLC * Fix all the tests
16 lines
482 B
Text
16 lines
482 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { NANOLYSE } from '../../../software/nanolyse/main.nf' addParams( options: [suffix: '.clean'] )
|
|
|
|
workflow test_nanolyse {
|
|
input = [
|
|
[ id:'test' ], // meta map
|
|
[ file(params.test_data['sarscov2']['nanopore']['test_fastq_gz'], checkIfExists: true)]
|
|
]
|
|
|
|
fasta = file("https://github.com/wdecoster/nanolyse/raw/master/reference/lambda.fasta.gz", checkIfExists: true)
|
|
|
|
NANOLYSE ( input, fasta )
|
|
}
|