nf-core_modules/tests/modules/bwamem2/index/main.nf
Matthieu Muffato 30b0485912
Added support for meta in bwamem2/index (#1921)
* 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>
2022-07-26 21:48:47 +01:00

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] )
}