diff picard_NormalizeFasta.xml @ 12:05087b27692a draft

planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
author devteam
date Sun, 27 Nov 2016 15:11:50 -0500
parents 3a3234d7a2e8
children 7e6fd3d0f16e
line wrap: on
line diff
--- a/picard_NormalizeFasta.xml	Wed Nov 11 12:23:17 2015 -0500
+++ b/picard_NormalizeFasta.xml	Sun Nov 27 15:11:50 2016 -0500
@@ -4,15 +4,15 @@
     <import>picard_macros.xml</import>
   </macros>
   <expand macro="requirements" />
-  <command>
+  <command detect_errors="exit_code"><![CDATA[
     @java_options@
     
   
     ## Two lines below are due to the fact that picard likes fasta files to have extension .fa  
     #set $fasta_file="local_fasta.fa"
-    ln -s "${inputFile}" "${fasta_file}" &amp;&amp;    
+    ln -s "${inputFile}" "${fasta_file}" &&    
     
-    java -jar \$JAVA_JAR_PATH/picard.jar
+    picard
     NormalizeFasta
     
     INPUT="${fasta_file}"
@@ -23,7 +23,7 @@
     QUIET=true
     VERBOSITY=ERROR
   
-  </command>
+  ]]></command>
   <inputs>
     <param format="fasta" name="inputFile" type="data" label="FASTA dataset or dataset collection" help="If empty, upload or import a FASTA dataset" />
     <param name="line_length" type="integer" value="100" min="1" max="200" label="The line length to be used for the output fasta file" help="LINE_LENGTH; default=100"/>
@@ -43,9 +43,6 @@
     </test>
   </tests>
   
-  <stdio>
-    <exit_code range="1:"  level="fatal"/>
-  </stdio>
   
   <help>