mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
12 lines
292 B
Text
12 lines
292 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { DIAMOND_MAKEDB } from '../../../../modules/diamond/makedb/main.nf'
|
|
|
|
workflow test_diamond_makedb {
|
|
|
|
input = [ file(params.test_data['sarscov2']['genome']['proteome_fasta'], checkIfExists: true) ]
|
|
|
|
DIAMOND_MAKEDB ( input )
|
|
}
|