Mercurial > repos > earlhaminst > blast_parser
view blast_parser.xml @ 4:363f3480622d draft default tip
planemo upload for repository https://github.com/TGAC/earlham-galaxytools/tree/master/tools/blast_parser commit 598e396ffaf5834a1c8f32868b1568a2b48a0a78-dirty
author | earlhaminst |
---|---|
date | Thu, 12 Oct 2017 07:25:29 -0400 |
parents | 70df762b48a8 |
children |
line wrap: on
line source
<tool id="blast_parser" name="BLAST parser" version="0.1.2"> <description> Convert 12- or 24-column BLAST output into 3-column hcluster_sg input </description> <command detect_errors="exit_code"> <![CDATA[ python '$__tool_directory__/blast_parser.py' -i '$input' -o '$output' #if $reciprocal -r #end if ]]> </command> <inputs> <param name="input" type="data" format="tabular" label="Tabular data" help="BLAST 12 column tabular format data"/> <param name="reciprocal" type="boolean" checked="false" label="Reciprocal results" help="returns only reciprocal results"/> </inputs> <outputs> <data name="output" format="tabular" label="$tool.name on ${on_string}" /> </outputs> <tests> <test> <param name="input" ftype="tabular" value="input.tabular" /> <param name="reciprocal" value="false" /> <output name="output" file="output.tabular" /> </test> <test> <param name="input" ftype="tabular" value="input.tabular" /> <param name="reciprocal" value="true" /> <output name="output" file="output2.tabular" /> </test> </tests> <help> <![CDATA[ Simple tool to convert a 12- or 24-column BLAST output into a 3-column format (qseqid, sseqid, round(-1 * log10(evalue)/2)) usable as input for the hcluster_sg tool. ]]> </help> <citations> </citations> </tool>