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

26 lines
898 B
Text
Raw Normal View History

2021-01-29 15:06:14 +00:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
2021-02-01 12:13:21 +00:00
include { QUAST } from '../../../software/quast/main.nf' addParams(options: [:])
2021-01-29 15:06:14 +00:00
workflow test_quast_ref {
fasta = file("${launchDir}/tests/data/genomics/sarscov2/genome/genome.fasta", checkIfExists: true)
gff = file("${launchDir}/tests/data/genomics/sarscov2/genome/genome.gtf", checkIfExists: true)
consensus = file("${launchDir}/tests/data/genomics/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("${launchDir}/tests/data/genomics/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
}