mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
ee5f59705f
* Adding new module gfaffix. * add missing entry to pytest_modules.yml * update to 0.1.4--hec16e2b_0 * fixup after prettier * add when section * update md5sum * Change to process_single as discussed Co-authored-by: Simon Pearce <24893913+SPPearce@users.noreply.github.com> Co-authored-by: Simon Heumos <simon.heumos@qbic.uni-tuebingen.de>
13 lines
316 B
Text
13 lines
316 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { GFAFFIX } from '../../../modules/gfaffix/main.nf'
|
|
|
|
workflow test_gfaffix {
|
|
input = [ [ id:'test' ], // meta map
|
|
[ file(params.test_data['sarscov2']['illumina']['assembly_gfa'], checkIfExists: true)]
|
|
]
|
|
|
|
GFAFFIX ( input )
|
|
}
|