mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 06:03:10 +00:00
460a3ed87b
* adding template for module groupreadsbyumi * update modules with code * strategy is required argument so moving it to input rather than options.args * tests successful committing yml * added meta to output Co-authored-by: Gregor Sturm <mail@gregor-sturm.de>
15 lines
474 B
Text
15 lines
474 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { FGBIO_GROUPREADSBYUMI } from '../../../../modules/fgbio/groupreadsbyumi/main.nf' addParams( options: [:] )
|
|
|
|
workflow test_fgbio_groupreadsbyumi {
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_umi_unsorted_tagged_bam'], checkIfExists: true) ]
|
|
|
|
strategy = "Adjacency"
|
|
|
|
FGBIO_GROUPREADSBYUMI ( input, strategy )
|
|
}
|