mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
466ab67808
* Fix minimap2 index module * Fix minimap2 index tests * Fix graphmap2 index module * Fix graphmap2 module * Fix ECLint * Fix bedtools bamtobed module * Fix tests for bedtools bamtobed module * Add tag for graphmap2 align module * Fix EClint * Fix qcat module * Add md5sum for graphmap2/align module * Remove non-started test data file * Remove md5sum for graphmap2 align
13 lines
388 B
Text
13 lines
388 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']['illumina']['test_single_end_bam'], checkIfExists: true)
|
|
]
|
|
|
|
BEDTOOLS_BAMTOBED ( input )
|
|
}
|