mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
Fix tiddit/sv (#1580)
* Fix fasta ref option for TIDDIT_SV * Add md5sum's to tiddit/sv tests Co-authored-by: Daniel Cooke <dcooke@well.ox.ac.uk>
This commit is contained in:
parent
68f1c27169
commit
57cb730e78
2 changed files with 3 additions and 1 deletions
|
@ -24,7 +24,7 @@ process TIDDIT_SV {
|
|||
script:
|
||||
def args = task.ext.args ?: ''
|
||||
def prefix = task.ext.prefix ?: "${meta.id}"
|
||||
def reference = fasta == "dummy_file.txt" ? "--ref $fasta" : ""
|
||||
def reference = fasta ? "--ref $fasta" : ""
|
||||
"""
|
||||
tiddit \\
|
||||
--sv \\
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
- path: output/tiddit/test.signals.tab
|
||||
md5sum: dab4b2fec4ddf8eb1c23005b0770150e
|
||||
- path: output/tiddit/test.vcf
|
||||
md5sum: bdce14ae8292bf3deb81f6f255baf859
|
||||
|
||||
- name: tiddit sv no ref
|
||||
command: nextflow run ./tests/modules/tiddit/sv -entry test_tiddit_sv_no_ref -c ./tests/config/nextflow.config -c ./tests/modules/tiddit/sv/nextflow.config
|
||||
|
@ -21,3 +22,4 @@
|
|||
- path: output/tiddit/test.signals.tab
|
||||
md5sum: dab4b2fec4ddf8eb1c23005b0770150e
|
||||
- path: output/tiddit/test.vcf
|
||||
md5sum: 3d0e83a8199b2bdb81cfe3e6b12bf64b
|
||||
|
|
Loading…
Reference in a new issue