2021-03-22 08:48:23 -04:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-07-16 08:32:17 -04:00
|
|
|
include { SAMTOOLS_MERGE } from '../../../../modules/samtools/merge/main.nf' addParams( options: [suffix:'_merged'] )
|
2021-03-22 08:48:23 -04:00
|
|
|
|
|
|
|
workflow test_samtools_merge {
|
2021-03-24 14:15:30 -04:00
|
|
|
input = [ [ id: 'test' ], // meta map
|
2021-06-07 07:07:32 -04:00
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_paired_end_methylated_sorted_bam'], checkIfExists: true),
|
2021-03-24 14:15:30 -04:00
|
|
|
file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true),
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test_single_end_sorted_bam'], checkIfExists: true)]
|
|
|
|
]
|
2021-03-22 08:48:23 -04:00
|
|
|
|
|
|
|
SAMTOOLS_MERGE ( input )
|
|
|
|
}
|