mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
Update test script
This commit is contained in:
parent
aaaef7df8c
commit
b581bdc36c
1 changed files with 5 additions and 4 deletions
|
@ -5,11 +5,12 @@ nextflow.enable.dsl = 2
|
|||
include { IVAR_TRIM } from '../../../../software/ivar/trim/main.nf' addParams([:])
|
||||
|
||||
workflow test_ivar_trim {
|
||||
bed_file = file("${launchDir}/tests/data/bed/test-sc2-artic-v3.bed", checkIfExists: true)
|
||||
def bed = file("${launchDir}/tests/data/bed/test-sc2-artic-v3.bed", checkIfExists: true)
|
||||
|
||||
def input = []
|
||||
input = [ [ id:'test'],
|
||||
file("${launchDir}/tests/data/bam/test-sc2-artic-v3.bam", checkIfExists: true) ]
|
||||
input = [ [ id:'test'],
|
||||
file("${launchDir}/tests/data/bam/test-sc2-artic-v3.bam", checkIfExists: true),
|
||||
file("${launchDir}/tests/data/bam/test-sc2-artic-v3.bam.bai", checkIfExists: true) ]
|
||||
|
||||
IVAR_TRIM ( input, bed_file )
|
||||
IVAR_TRIM ( input, bed )
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue