mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
34 lines
1,013 B
Text
34 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 )
|
||
|
}
|