Update main.nf

This commit is contained in:
Harshil Patel 2021-02-16 23:06:26 +00:00 committed by GitHub
parent 7c276d2974
commit cf2f0762aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,10 +4,10 @@ nextflow.enable.dsl = 2
include { IVAR_VARIANTS } from '../../../../software/ivar/variants/main.nf' addParams([:])
params.gff = false
params.save_mpileup = false
workflow test_ivar_variants_no_gff_no_mpileup {
params.gff = false
params.save_mpileup = false
def ref = file("${launchDir}/tests/data/fasta/sarscov2/MN908947.3.fa", checkIfExists: true)
def dummy = file("${launchDir}/tests/data/dummy/dummy_file.txt", checkIfExists: true)
def input = []
@ -16,10 +16,10 @@ workflow test_ivar_variants_no_gff_no_mpileup {
IVAR_VARIANTS ( input, ref, dummy )
}
params.gff = false
params.save_mpileup = true
workflow test_ivar_variants_no_gff_with_mpileup {
params.gff = false
params.save_mpileup = true
def ref = file("${launchDir}/tests/data/fasta/sarscov2/MN908947.3.fa", checkIfExists: true)
def dummy = file("${launchDir}/tests/data/dummy/dummy_file.txt", checkIfExists: true)
def input = []
@ -28,10 +28,10 @@ workflow test_ivar_variants_no_gff_with_mpileup {
IVAR_VARIANTS ( input, ref, dummy )
}
params.gff = "${launchDir}/tests/data/gff/sarscov2/MN908947.3.gff3"
workflow test_ivar_variants_with_gff_with_mpileup {
params.gff = "${launchDir}/tests/data/gff/sarscov2/MN908947.3.gff3"
params.save_mpileup = true
def ref = file("${launchDir}/tests/data/fasta/sarscov2/MN908947.3.fa", checkIfExists: true)
def gff = file(params.gff, checkIfExists: true)
def input = []