Mercurial > repos > devteam > fastx_collapser
diff fastx_collapser.xml @ 2:421f0af4ee95 draft
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_collapser commit a1517c9d22029095120643bbe2c8fa53754dd2b7
author | devteam |
---|---|
date | Wed, 11 Nov 2015 12:39:04 -0500 |
parents | 13c2d9e8c6d5 |
children | 7ce1891db6f5 |
line wrap: on
line diff
--- a/fastx_collapser.xml Tue Dec 03 12:36:14 2013 -0500 +++ b/fastx_collapser.xml Wed Nov 11 12:39:04 2015 -0500 @@ -1,31 +1,32 @@ <tool id="cshl_fastx_collapser" version="1.0.0" name="Collapse"> - <description>sequences</description> + <description>sequences</description> <requirements> <requirement type="package" version="0.0.13">fastx_toolkit</requirement> </requirements> - <command>zcat -f '$input' | fastx_collapser -v -o '$output' + <command> +<![CDATA[ +zcat -f < '$input' | fastx_collapser -v -o '$output' #if $input.ext == "fastqsanger": --Q 33 + -Q 33 #end if - </command> - - <inputs> - <param format="fasta,fastqsanger,fastqsolexa" name="input" type="data" label="Library to collapse" /> - </inputs> +]]> + </command> - <!-- The order of sequences in the test output differ between 32 bit and 64 bit machines. - <tests> - <test> - <param name="input" value="fasta_collapser1.fasta" /> - <param name="output" file="fasta_collapser1.out" /> - </test> - </tests> + <inputs> + <param format="fasta,fastqsanger,fastqsolexa" name="input" type="data" label="Library to collapse" /> + </inputs> + <outputs> + <data format="fasta" name="output" metadata_source="input" /> + </outputs> + <!-- The order of sequences in the test output differ between 32 bit and 64 bit machines. + <tests> + <test> + <param name="input" value="fasta_collapser1.fasta" /> + <param name="output" file="fasta_collapser1.out" /> + </test> + </tests> --> - <outputs> - <data format="fasta" name="output" metadata_source="input" /> - </outputs> - <help> - + <help> **What it does** This tool collapses identical sequences in a FASTA file into a single sequence. @@ -34,7 +35,7 @@ **Example** -Example Input File (Sequence "ATAT" appears multiple times):: +Example Input File (Sequence "ATAT" appears multiple times):: >CSHL_2_FC0042AGLLOO_1_1_605_414 TGCG @@ -65,10 +66,10 @@ TGAG >5-1 TTCA - + .. class:: infomark -Original Sequence Names / Lane descriptions (e.g. "CSHL_2_FC0042AGLLOO_1_1_742_502") are discarded. +Original Sequence Names / Lane descriptions (e.g. "CSHL_2_FC0042AGLLOO_1_1_742_502") are discarded. The output sequence name is composed of two numbers: the first is the sequence's number, the second is the multiplicity value. @@ -85,6 +86,5 @@ This tool is based on `FASTX-toolkit`__ by Assaf Gordon. .. __: http://hannonlab.cshl.edu/fastx_toolkit/ - -</help> + </help> </tool>