view rapsodyn/fastaGroomerForMakeBlastdb.xml @ 15:56d328bce3a7 draft default tip

Uploaded
author mcharles
date Thu, 29 Jan 2015 08:54:06 -0500
parents 3f7b0788a1c4
children
line wrap: on
line source

<tool id="fastaGroomerForMakeBlastdb" name="fastaGroomerForMakeBlastdb" version="1.00">
<description>fasta Groomer For MakeBlastdb</description>
<command interpreter="perl">
    fastaGroomerForMakeBlastdb.pl $input_fasta > $output_fasta
</command>
<inputs>
	<param name="input_fasta"  type="data" format="fasta" label="Select a suitable input FASTA file from your history"/>
</inputs>
<outputs>
	<data name="output_fasta" format="fasta" label="${tool.name} on ${on_string}"/>
</outputs>

<help>
MakeBlastDb has several warning handled has error which is problematic on galaxyn This groomer ensure that the fasta file will not generate this warnings / error :

- First line of the sequence is more than 40% of N => replace all the 'N' of the first line by 'a' (not elegant but low impact and efficient) 

- Header line should not have [xxx=xxx] kind of text because MakeBlastdb try to interpret it => remove the [] when this feature is detected 
</help>
</tool>