changeset 74:7ac57a72687e draft

Deleted selected files
author devteam
date Wed, 19 Feb 2014 23:03:26 -0500
parents aab71b7ea084
children 7f20c80e67be
files picard_NormalizeFasta.xml
diffstat 1 files changed, 0 insertions(+), 59 deletions(-) [+]
line wrap: on
line diff
--- a/picard_NormalizeFasta.xml	Wed Feb 19 18:04:34 2014 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,59 +0,0 @@
-<tool name="NormalizeFasta" id="picard_NormalizeFasta" version="1.106.0">
-<description>Takes any file that conforms to the fasta format and normalizes it so that all lines of sequence except the last line per named sequence are of the same length.</description>
-<requirements><requirement type="package" version="1.106.0">picard</requirement></requirements>
-  <command interpreter="java -jar -Xmx8g">
-      $JAVA_JAR_PATH/NormalizeFasta.jar
-
-          #if str( $OUTPUT ):
-              OUTPUT="${OUTPUT}"
-          #end if
-          #if str( $LINE_LENGTH ):
-              LINE_LENGTH="${LINE_LENGTH}"
-          #end if
-          #if str( $TRUNCATE_SEQUENCE_NAMES_AT_WHITESPACE ):
-              TRUNCATE_SEQUENCE_NAMES_AT_WHITESPACE="${TRUNCATE_SEQUENCE_NAMES_AT_WHITESPACE}"
-          #end if
-
-      VALIDATION_STRINGENCY=LENIENT
-      QUIET=True
-      TMP_DIR="${__new_file_path__}" 
-  </command>
-  
-  <stdio>
-    <exit_code range="0" level="warning" description="Tool finished correctly" />
-  </stdio>
-  
-  <inputs>
-      <param format="XXCHANGEMEEE" name="OUTPUT" type="data" label="The output fasta file to write. Required." help="" />
-      <param format="XXCHANGEMEEE" name="LINE_LENGTH" type="integer" label="The line length to be used for the output fasta file. Default value: 100. This option can be set to 'null' to clear the default value." help="" />
-      <param format="XXCHANGEMEEE" name="TRUNCATE_SEQUENCE_NAMES_AT_WHITESPACE" type="boolean" label="Truncate sequence names at first whitespace. Default value: false. This option can be set to 'null' to clear the default value. Possible values: {true, false}" help="" />
-  </inputs>
-  <outputs>
-    <data name="outFile" format="XXCHANGEMEEE">
-    </data>
-  </outputs>
-  <tests>
-  <test>
-     <!-- Here is a command line that works:
-        java -jar ...
-     -->
-      <param name="inputFile" value="XXCHANGEMEE-input" />
-      <output name="outFile" file="XXCHANGEMEE-correct-output" lines_diff="2" ftype="XXCHANGEMEE" />
-    </test>
-  </tests>
-  <help>
-Picard documentation says:
-
-  
-NormalizeFasta
-
-Takes any file that conforms to the fasta format and normalizes it so that all lines of sequence except the last line per named sequence are of the same length.
-Option	Description
-INPUT=File	The input fasta file to normalize. Required.
-OUTPUT=File	The output fasta file to write. Required.
-LINE_LENGTH=Integer	The line length to be used for the output fasta file. Default value: 100. This option can be set to 'null' to clear the default value.
-TRUNCATE_SEQUENCE_NAMES_AT_WHITESPACE=Boolean	Truncate sequence names at first whitespace. Default value: false. This option can be set to 'null' to clear the default value. Possible values: {true, false} 
-
-
-  </help>
-</tool>