Mercurial > repos > drosofff > msp_blastparser_and_hits
view BlastParser_and_hits.xml @ 0:3959a271cf3f draft
planemo upload for repository https://bitbucket.org/drosofff/gedtools/
author | drosofff |
---|---|
date | Tue, 09 Jun 2015 04:15:34 -0400 |
parents | |
children | e0985bad7b92 |
line wrap: on
line source
<tool id="BlastParser_and_hits" name="Parse blast output and compile hits" version="2.0.0"> <description>for virus discovery</description> <requirements></requirements> <command interpreter="python"> BlastParser_and_hits.py --sequences $sequences --blast $blast --tabularOutput $tabularOutput --fastaOutput $fastaOutput --flanking $flanking </command> <inputs> <param name="sequences" type="data" format="fasta" label="fasta sequences that have been blasted" /> <param name="blast" type="data" format="tabular" label="The blast output you wish to parse" /> <param name="flanking" type="text" size="5" value= "5" label="Number of flanking nucleotides to add to hits for CAP3 assembly"/> </inputs> <outputs> <data name="tabularOutput" format="tabular" label="blast analysis, by subjects"/> <data name="fastaOutput" format="fasta" label="hits"/> </outputs> <tests> <test> <param ftype="fasta" name="sequences" value="input.fa" /> <param ftype="tabular" name="blast" value="blast.tab" /> <param name="flanking" value="5" /> <output name="tabularOutput" ftype="tabular" file="output.tab" /> <output name="fastaOutput" ftype="fasta" file="output.fa" /> </test> </tests> <help> **What it does** Parse blast outputs for viruses genome assembly. Outputs analysis and hit sequences for further assembly </help> <test> </test> </tool>