diff cuffmerge_wrapper.xml @ 12:1707a530e598 draft

planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffmerge commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
author devteam
date Tue, 07 Feb 2017 18:39:42 -0500
parents b6e3849293b1
children cf747d1bd79a
line wrap: on
line diff
--- a/cuffmerge_wrapper.xml	Wed Nov 11 12:35:04 2015 -0500
+++ b/cuffmerge_wrapper.xml	Tue Feb 07 18:39:42 2017 -0500
@@ -1,33 +1,33 @@
 <tool id="cuffmerge" name="Cuffmerge" version="@VERSION@.0">
     <description>merge together several Cufflinks assemblies</description>
-    <expand macro="requirements" />
-    <expand macro="stdio" />
     <macros>
       <import>cuff_macros.xml</import>
     </macros>
-    <command interpreter="python">
-        cuffmerge_wrapper.py
+    <expand macro="requirements" />
+    <expand macro="stdio" />
+    <command>
+        python '$__tool_directory__/cuffmerge_wrapper.py'
             --num-threads="\${GALAXY_SLOTS:-4}"
             
             ## Use annotation reference?
             #if $annotation.use_ref_annotation == "Yes":
-                -g "${annotation.reference_annotation}"
+                -g '${annotation.reference_annotation}'
             #end if
             
             ## Use sequence data?
             #if $seq_data.use_seq_data == "Yes":
                 -s
                 #if $seq_data.seq_source.index_source == "history":
-                    --ref_file="${seq_data.seq_source.ref_file}"
+                    --ref_file '${seq_data.seq_source.ref_file}'
                 #else:
-                    --index="${seq_data.seq_source.index.fields.path}"
+                    --index '${seq_data.seq_source.index.fields.path}'
                 #end if
             #end if
 
             --min-isoform-fraction="${min_isoform_fraction}"
 
             ## Outputs.
-            --merged-transcripts="${merged_transcripts}"
+            --merged-transcripts '${merged_transcripts}'
 
             @CUFFLINKS_GTF_INPUTS@
     </command>