mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
25f88dee3c
* feat: remove social preview image to use GitHub OpenGraph * feat: update samtools from 1.10 to 1.12 * fix: CI tests * fix: add meta.yml file for samtools/merge * Update software/samtools/merge/meta.yml Co-authored-by: Jose Espinosa-Carrasco <kadomu@gmail.com> * Update software/samtools/merge/meta.yml Co-authored-by: Jose Espinosa-Carrasco <kadomu@gmail.com>
15 lines
636 B
Text
15 lines
636 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { SAMTOOLS_MERGE } from '../../../../software/samtools/merge/main.nf' addParams( options: [:] )
|
|
|
|
workflow test_samtools_merge {
|
|
input = [ [ id: 'test' ], // meta map
|
|
[ file(params.test_data['sarscov2']['illumina']['test_paired_end_methylated_sorted_bam'], checkIfExists: true),
|
|
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)]
|
|
]
|
|
|
|
SAMTOOLS_MERGE ( input )
|
|
}
|