mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
94619a3faf
* add annotate * add models * add compound * add score * update annotate recipe * update meta and main * main updates * add test for annotate * update all tests * refactor * update tests * fix conda issue * review suggestions
21 lines
531 B
Text
21 lines
531 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { GENMOD_MODELS } from '../../../../modules/genmod/models/main.nf'
|
|
|
|
input = [
|
|
[ id:'test', single_end:false ], // meta map
|
|
file(params.test_data['homo_sapiens']['illumina']['genmod_annotate_vcf_gz'], checkIfExists: true)
|
|
]
|
|
fam = file(params.test_data['homo_sapiens']['genome']['justhusky_ped'], checkIfExists: true)
|
|
|
|
workflow test_genmod_models {
|
|
|
|
GENMOD_MODELS ( input, fam, [] )
|
|
}
|
|
|
|
workflow test_genmod_models_stub {
|
|
|
|
GENMOD_MODELS ( input, fam, [] )
|
|
}
|