# HG changeset patch
# User iuc
# Date 1661241556 0
# Node ID d5fb354f745de8fa63c2d0ce5a6f4132cbdcb5b5
# Parent 48cf45a534566b31d2b696e1dcbe1e18d7a19a51
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades commit 69c6e337e239e84ce8fec9cf9fb5d820136877b2
diff -r 48cf45a53456 -r d5fb354f745d macros.xml
--- a/macros.xml Wed Aug 10 13:14:28 2022 +0000
+++ b/macros.xml Tue Aug 23 07:59:16 2022 +0000
@@ -601,34 +601,34 @@
'ag' in optional_output
- operation_mode != '--only-error-correction'
+ 'operation_mode' not in vars() or operation_mode != '--only-error-correction'
'ags' in optional_output
- operation_mode != '--only-error-correction'
+ 'operation_mode' not in vars() or operation_mode != '--only-error-correction'
'cn' in optional_output
- operation_mode != '--only-error-correction'
+ 'operation_mode' not in vars() or operation_mode != '--only-error-correction'
'cp' in optional_output
- operation_mode != '--only-error-correction'
+ 'operation_mode' not in vars() or operation_mode != '--only-error-correction'
'cr' in optional_output
- operation_mode != '--only-assembler'
-
-
+ 'operation_mode' not in vars() or operation_mode != '--only-assembler'
+
+
@@ -637,7 +637,7 @@
'cs' in optional_output
- operation_mode != '--only-error-correction'
+ 'operation_mode' not in vars() or operation_mode != '--only-error-correction'
@@ -648,13 +648,13 @@
'sc' in optional_output
- operation_mode != '--only-error-correction'
+ 'operation_mode' not in vars() or operation_mode != '--only-error-correction'
'sp' in optional_output
- operation_mode != '--only-error-correction'
+ 'operation_mode' not in vars() or operation_mode != '--only-error-correction'
@@ -663,7 +663,7 @@
'ss' in optional_output
- operation_mode != '--only-error-correction'
+ 'operation_mode' not in vars() or operation_mode != '--only-error-correction'
diff -r 48cf45a53456 -r d5fb354f745d rnaviralspades.xml
--- a/rnaviralspades.xml Wed Aug 10 13:14:28 2022 +0000
+++ b/rnaviralspades.xml Tue Aug 23 07:59:16 2022 +0000
@@ -21,6 +21,7 @@
@OMP_THREADS@
## run
spades.py --rnaviral
+ $operation_mode
-o 'output'
@RESOURCES@
@INPUT_READS_MAIN@
@@ -41,6 +42,7 @@
@CORRECTED@
]]>
+
@@ -144,13 +146,13 @@
-
-
+
+
-
+