nf-core_modules/tests/modules/hicap/main.nf
Robert A. Petit III bb7beff497
add hicap module (#772)
* add hicap module

* add info on optional inputs

* fix typo

* Update meta.yml

* Update main.nf

* Update meta.yml

* Update modules/hicap/main.nf

Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>

* Update modules/hicap/main.nf

Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>

Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
2021-10-05 21:42:09 +01:00

16 lines
474 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-specific/haemophilus-influenzae/GCF_900478275.fna.gz", checkIfExists: true) ]
database_dir = []
model_fp = []
HICAP ( input, database_dir, model_fp )
}