mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
8f199c4fa4
* Add atlas/splitmerge module * Finish the tests for atlas/splitmerge * Prettier * Update modules/atlas/splitmerge/meta.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Remove curly brackets from meta.yml parameters For single-file outputs, as reviewed * Lintung: Remove trailing white-space Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
15 lines
616 B
Text
15 lines
616 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { ATLAS_SPLITMERGE } from '../../../../modules/atlas/splitmerge/main.nf'
|
|
|
|
//MAIN
|
|
workflow test_atlas_splitmerge {
|
|
meta = [ id:'test', single_end:false ]
|
|
bam = file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true)
|
|
bai = file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam_bai'], checkIfExists: true)
|
|
settings = file(params.test_data['homo_sapiens']['illumina']['read_group_settings_txt'], checkIfExists: true)
|
|
|
|
ATLAS_SPLITMERGE ( [meta, bam, bai, settings, []] )
|
|
}
|