mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
13 lines
323 B
Text
13 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 )
|
||
|
}
|