nf-core_modules/tests/software/hifiasm/main.nf

29 lines
812 B
Text
Raw Normal View History

2021-03-16 11:37:06 +00:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { HIFIASM } from '../../../software/hifiasm/main.nf' addParams( options: [:] )
2021-03-16 11:37:06 +00:00
/*
2021-03-16 11:37:06 +00:00
* Test with single-end data
*/
/* workflow test_fastqc_single_end {
2021-03-16 11:37:06 +00:00
def input = []
input = [ [ id:'test', single_end:true ], // meta map
[ file("${launchDir}/tests/data/genomics/sarscov2/fastq/test_1.fastq.gz", checkIfExists: true) ] ]
FASTQC ( input )
} */
2021-03-16 11:37:06 +00:00
/*
* Test version printing
2021-03-16 11:37:06 +00:00
*/
workflow test_hifiasm_version {
2021-03-16 11:37:06 +00:00
/* def input = []
2021-03-16 11:37:06 +00:00
input = [[id: 'test', single_end: false], // meta map
[file("${launchDir}/tests/data/genomics/sarscov2/fastq/test_1.fastq.gz", checkIfExists: true),
file("${launchDir}/tests/data/genomics/sarscov2/fastq/test_2.fastq.gz", checkIfExists: true)]] */
HIFIASM ()
2021-03-16 11:37:06 +00:00
}