mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
17 lines
512 B
Text
17 lines
512 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { GSTAMA_COLLAPSE } from '../../../../modules/gstama/collapse/main.nf' addParams( options: [ args:"-x capped -b BAM", suffix:'_tc' ] )
|
||
|
|
||
|
workflow test_gstama_collapse {
|
||
|
|
||
|
input = [
|
||
|
[ id:'test' ], // meta map
|
||
|
file(params.test_data['homo_sapiens']['pacbio']['aligned'], checkIfExists: true)
|
||
|
]
|
||
|
genome = file(params.test_data['homo_sapiens']['genome']['genome2_fasta'], checkIfExists: true)
|
||
|
|
||
|
GSTAMA_COLLAPSE ( input, genome )
|
||
|
}
|