mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
81d65d4978
* Samtools fixmate module * Update modules/samtools/fixmate/meta.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/samtools/fixmate/main.nf Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update main.nf * Update modules/samtools/fixmate/meta.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update meta.yml Co-authored-by: Simon Pearce <simon.pearce@cruk.manchester.ac.uk> Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
14 lines
407 B
Text
14 lines
407 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { SAMTOOLS_FIXMATE } from '../../../../modules/samtools/fixmate/main.nf' addParams( options: [args:'-r -c -m'] )
|
|
|
|
workflow test_samtools_fixmate {
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
|
file(params.test_data['sarscov2']['illumina']['test_paired_end_bam'], checkIfExists: true) ]
|
|
|
|
SAMTOOLS_FIXMATE ( input )
|
|
|
|
}
|