mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Fix tests for iVar variants
This commit is contained in:
parent
a282ecd8c7
commit
c6a0976f52
1 changed files with 7 additions and 7 deletions
|
@ -29,11 +29,11 @@ workflow test_ivar_variants_no_gff_with_mpileup {
|
||||||
}
|
}
|
||||||
|
|
||||||
workflow test_ivar_variants_with_gff_with_mpileup {
|
workflow test_ivar_variants_with_gff_with_mpileup {
|
||||||
params.gff = "${launchDir}/tests/data/gff/sarscov2/MN908947.3.gff3"
|
params.gff = true
|
||||||
params.save_mpileup = true
|
params.save_mpileup = true
|
||||||
|
|
||||||
def ref = file("${launchDir}/tests/data/fasta/sarscov2/MN908947.3.fa", checkIfExists: true)
|
def ref = file("${launchDir}/tests/data/fasta/sarscov2/MN908947.3.fa", checkIfExists: true)
|
||||||
def gff = file(params.gff, checkIfExists: true)
|
def gff = file("${launchDir}/tests/data/gff/sarscov2/MN908947.3.gff3", checkIfExists: true)
|
||||||
def input = []
|
def input = []
|
||||||
input = [ [ id:'test'],
|
input = [ [ id:'test'],
|
||||||
file("${launchDir}/tests/data/bam/test-sc2-artic-v3-sorted-trimmed.bam", checkIfExists: true) ]
|
file("${launchDir}/tests/data/bam/test-sc2-artic-v3-sorted-trimmed.bam", checkIfExists: true) ]
|
||||||
|
|
Loading…
Reference in a new issue