mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
18440df87a
* add genmap/mappability * Add index module. Remove -w parameter from mappability module. * change the output of genmap/index * fix the lint error which can not handle stageAs. * Apply suggestions from code review * Update main.nf * Update test.yml * Update main.nf * Update test.yml * Update tests/software/genmap/mappability/main.nf * Update software/genmap/mappability/main.nf * Update software/genmap/mappability/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
12 lines
305 B
Text
12 lines
305 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { GENMAP_INDEX } from '../../../../software/genmap/index/main.nf' addParams( options: [:] )
|
|
|
|
workflow test_genmap_index {
|
|
|
|
input = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
|
|
|
GENMAP_INDEX ( input )
|
|
}
|