nf-core_modules/tests/modules/quast/main.nf

26 lines
861 B
Text
Raw Normal View History

2021-01-29 15:06:14 +00:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { QUAST } from '../../../modules/quast/main.nf' addParams(options: [:])
2021-01-29 15:06:14 +00:00
workflow test_quast_ref {
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
gff = file(params.test_data['sarscov2']['genome']['genome_gtf'], checkIfExists: true)
consensus = file(params.test_data['sarscov2']['genome']['transcriptome_fasta'], checkIfExists: true)
use_fasta = true
use_gtf = true
2021-02-01 12:13:21 +00:00
QUAST ( consensus, fasta, gff, use_fasta, use_gtf )
2021-02-01 12:13:21 +00:00
}
workflow test_quast_noref {
fasta = file('fasta_dummy')
gff = file('gff_dummy')
consensus = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
use_fasta = false
use_gtf = false
2021-01-29 15:06:14 +00:00
QUAST ( consensus, fasta, gff, use_fasta, use_gtf )
2021-01-29 15:06:14 +00:00
}