Mercurial > repos > p.lucas > mafft_add_sequence
view mafft.xml @ 8:6e4e5e8f06fe draft default tip
Uploaded
author | p.lucas |
---|---|
date | Thu, 02 May 2019 08:04:09 -0400 |
parents | 836c7a8e563f |
children |
line wrap: on
line source
<tool id="add_mafft" name="MAFFT" version="7.221.3"> <description>Add sequence to a alignment already done.</description> <requirements> <requirement type="package" version="7.221">mafft</requirement> </requirements> <stdio> <exit_code range="1:" level="fatal" description="Error occurred. Please check Tool Standard Error" /> <exit_code range=":-1" level="fatal" description="Error occurred. Please check Tool Standard Error" /> </stdio> <version_command> <![CDATA[ mafft --version ]]> </version_command> <command> <![CDATA[ mafft --thread \${GALAXY_SLOTS:-1} --add $seqtoadd --reorder $existingalignment > $outputAlignment; ]]> </command> <inputs> <param name="seqtoadd" type="data" format="fasta" label="Sequences to add" help="Sequences to add in FASTA format."/> <param name="existingalignment" type="data" format="fasta" label="Alignment already done" help="Multi-alignment in FASTA format."/> </inputs> <outputs> <data format="fasta" name="outputAlignment" label="${tool.name} on ${on_string}"/> </outputs> <help> <![CDATA[ **What it does** MAFFT is a multiple sequence alignment program for unix-like operating systems. It offers a range of multiple alignment methods, L-INS-i (accurate; for alignment of <∼200 sequences), FFT-NS-2 (fast; for alignment of <∼30,000 sequences), etc. Using only to add new sequence in alignment already done. ]]> </help> <citations> <citation type="doi">10.1093/molbev/mst010</citation> </citations> </tool>