nf-core_modules/tests/modules/atlas/splitmerge/main.nf
Merlin Szymanski 8f199c4fa4
Create atlas/splitmerge Module (#1756)
* 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>
2022-06-13 15:09:32 +02:00

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, []] )
}