nf-core_modules/tests/modules/gfaffix/main.nf
Michael L Heuer ee5f59705f
Adding new module gfaffix (#1149)
* 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>
2022-09-28 10:23:18 +02:00

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 )
}