mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 13:43:09 +00:00
b5aa12ad3b
* new module: samtools/getrg * add output file to stub * add missing config * Intentionally break prettier linting * [automated] Fix linting with Prettier Co-authored-by: Phil Ewels <phil@seqera.io> Co-authored-by: nf-core-bot <core@nf-co.re>
15 lines
364 B
Text
15 lines
364 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { SAMTOOLS_GETRG } from '../../../../modules/samtools/getrg/main.nf'
|
|
|
|
workflow test_samtools_getrg {
|
|
|
|
input = [
|
|
[ id:'test', single_end:false ], // meta map
|
|
file(params.test_data['sarscov2']['illumina']['test_paired_end_bam'], checkIfExists: true)
|
|
]
|
|
|
|
SAMTOOLS_GETRG ( input )
|
|
}
|