# HG changeset patch # User devteam # Date 1393220522 18000 # Node ID 2abf873fdbf85e07b5a3cc233e49638b7c206dd1 # Parent 4109d3f92a8bfd282cb6b700a5b04485c4ef0969 Deleted selected files diff -r 4109d3f92a8b -r 2abf873fdbf8 picard_NormalizeFasta.xml --- a/picard_NormalizeFasta.xml Mon Feb 24 00:38:59 2014 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,60 +0,0 @@ - -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. -picard - - $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__}" - - - - - - - - - - - - - - - - - - - - -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} - - - -