mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
3f804ee667
* add bedtools bamtobed module * fix erros * fix linting problem
15 lines
587 B
Text
15 lines
587 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { BEDTOOLS_BAMTOBED } from '../../../../software/bedtools/bamtobed/main.nf' addParams( options: [:] )
|
|
|
|
workflow test_bedtools_bamtobed {
|
|
input = [ [ id:'test'], //meta map
|
|
file(params.test_data['sarscov2']['genome']['genome_sizes'], checkIfExists: true),
|
|
file(params.test_data['sarscov2']['nanopore']['test_sorted_bam'], checkIfExists: true),
|
|
file(params.test_data['sarscov2']['nanopore']['test_sorted_bam_bai'], checkIfExists: true)
|
|
]
|
|
|
|
BEDTOOLS_BAMTOBED ( input )
|
|
}
|