mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 05:43:08 +00:00
16 lines
398 B
Text
16 lines
398 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { HMMER_HMMBUILD } from '../../../../modules/hmmer/hmmbuild/main.nf'
|
||
|
|
||
|
workflow test_hmmer_hmmbuild {
|
||
|
|
||
|
input = [
|
||
|
[ id: 'PF14720' ], // meta map
|
||
|
file('https://github.com/nf-core/test-datasets/raw/modules/data/delete_me/hmmer/PF14720_seed.alnfaa.gz', checkIfExists: true)
|
||
|
]
|
||
|
|
||
|
HMMER_HMMBUILD ( input, [] )
|
||
|
}
|