mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Add gff as input
Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
This commit is contained in:
parent
4f8ab8bd69
commit
8b6989f2d7
1 changed files with 3 additions and 2 deletions
|
@ -19,8 +19,9 @@ params.gff = file("${launchDir}/tests/data/gff/sarscov2/MN908947.3.gff3", checkI
|
|||
workflow test_ivar_variants_with_gff {
|
||||
|
||||
def ref = file("${launchDir}/tests/data/fasta/sarscov2/MN908947.3.fa", checkIfExists: true)
|
||||
def gff = file(params.gff, checkIfExists: true)
|
||||
def input = []
|
||||
input = [ [ id:'test'],
|
||||
file("${launchDir}/tests/data/bam/test-sc2-artic-v3-sorted-trimmed.bam", checkIfExists: true) ]
|
||||
IVAR_VARIANTS ( input, ref )
|
||||
file("${launchDir}/tests/data/bam/test-sc2-artic-v3-sorted-trimmed.bam", checkIfExists: true) ]
|
||||
IVAR_VARIANTS ( input, ref, gff )
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue