mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
fdb1664885
* Add deeptools bamcoverage * remove todo string * Add in when * fix c&p version format error * Fix md5sums Co-authored-by: Maxime U. Garcia <max.u.garcia@gmail.com>
27 lines
923 B
Text
27 lines
923 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { DEEPTOOLS_BAMCOVERAGE } from '../../../../modules/deeptools/bamcoverage/main.nf'
|
|
|
|
workflow test_deeptools_bamcoverage_bam {
|
|
|
|
input = [
|
|
[ id:'test', single_end:false ], // meta map
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true),
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam_bai'], checkIfExists: true)
|
|
]
|
|
|
|
DEEPTOOLS_BAMCOVERAGE ( input )
|
|
}
|
|
|
|
workflow test_deeptools_bamcoverage_cram {
|
|
|
|
input = [
|
|
[ id:'test', single_end:false ], // meta map
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_cram'], checkIfExists: true),
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_cram_crai'], checkIfExists: true)
|
|
]
|
|
|
|
DEEPTOOLS_BAMCOVERAGE ( input )
|
|
}
|