nf-core_modules/tests/modules/hicap/main.nf
Robert A. Petit III bc8899f1bf
[fix] hicap module allow optional outputs (#937)
* make hicap outputs optional

* update test data

* typo

* Update main.nf

* use mkfifo

* Update main.nf

Co-authored-by: Gisela Gabernet <gisela.gabernet@gmail.com>
Co-authored-by: FriederikeHanssen <Friederike.hanssen@qbic.uni-tuebingen.de>
Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
2021-11-16 09:23:07 +00:00

16 lines
472 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { HICAP } from '../../../modules/hicap/main.nf' addParams( options: [:] )
workflow test_hicap {
input = [ [ id:'test', single_end:false ], // meta map
file("https://github.com/bactopia/bactopia-tests/raw/main/data/species/haemophilus_influenzae/genome/GCF_900478275.fna.gz", checkIfExists: true) ]
database_dir = []
model_fp = []
HICAP ( input, database_dir, model_fp )
}