mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
30b0485912
* Added support for meta in bwamem2/index * Added missing description of the input meta map (fasta file) * Made bwamem2/mem aware of the meta map the index carries * The output meta map needs to be same as the input bam file Don't merge it with the index's Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
11 lines
297 B
Text
11 lines
297 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { BWAMEM2_INDEX } from '../../../../modules/bwamem2/index/main.nf'
|
|
|
|
workflow test_bwamem2_index {
|
|
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
|
|
|
BWAMEM2_INDEX ( [ [id:'test'], fasta] )
|
|
}
|