Update main.nf (#314)

This commit is contained in:
Maxime Garcia 2021-03-22 18:16:43 +01:00 committed by GitHub
parent aa76c6d870
commit 0a4fa5050a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,6 @@
nextflow.enable.dsl = 2
include { TIDDIT_SV } from '../../../../software/tiddit/sv/main.nf' addParams( options: [:] )
include { SAMTOOLS_FAIDX } from '../../../../software/samtools/faidx/main.nf' addParams( options: [:] )
workflow test_tiddit_sv {
def input = []
@ -23,4 +22,4 @@ workflow test_tiddit_sv_no_ref {
[ file("${launchDir}/tests/data/genomics/sarscov2/bam/test_paired_end.sorted.bam", checkIfExists: true) ] ]
TIDDIT_SV ( input, [], [] )
}
}