nf-core_modules/tests/modules/scramble/clusteridentifier/main.nf
nvnieuwk f2264c1052
New module: scramble (#2015)
* added scramble/clusteridentifier

* linting

* added cluster_analysis

* added a comment to the mei ref

* added reference comments

* linting
2022-09-07 13:19:18 +02:00

33 lines
1,013 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { SCRAMBLE_CLUSTERIDENTIFIER } from '../../../../modules/scramble/clusteridentifier/main.nf'
workflow test_scramble_clusteridentifier_bam {
input = [
[ id:'test', single_end:false ], // meta map
file(params.test_data['homo_sapiens']['scramble']['bam'], checkIfExists: true),
file(params.test_data['homo_sapiens']['scramble']['bam_bai'], checkIfExists: true),
[]
]
fasta = []
SCRAMBLE_CLUSTERIDENTIFIER ( input, fasta )
}
workflow test_scramble_clusteridentifier_cram {
input = [
[ id:'test', single_end:false ], // meta map
file(params.test_data['homo_sapiens']['scramble']['cram'], checkIfExists: true),
file(params.test_data['homo_sapiens']['scramble']['cram_crai'], checkIfExists: true),
[]
]
fasta = file(params.test_data['homo_sapiens']['scramble']['fasta'], checkIfExists: true)
SCRAMBLE_CLUSTERIDENTIFIER ( input, fasta )
}