nf-core_modules/tests/software/pycoqc/main.nf
Jose Espinosa-Carrasco 2c43c39ccc
Add pycoqc module (#424)
* Add pycoqc module

* Adding pycoqc module tests

* Update pycoqc wilth new functions.nf

* Update tests to check for json report content
2021-04-12 10:52:14 +01:00

12 lines
323 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { PYCOQC } from '../../../software/pycoqc/main.nf' addParams ( options: ['args' : '--min_pass_qual 0'] )
workflow test_pycoqc {
input = [ file(params.test_data['sarscov2']['nanopore']['test_sequencing_summary'], checkIfExists: true) ]
PYCOQC ( input )
}