view hyphy_conv.xml @ 1:c1d24ff838c8 draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hyphy/ commit e22821f51ae326b3696a9456cbc44f9982512a52"
author iuc
date Tue, 20 Apr 2021 19:55:16 +0000
parents 9ce3d6d4bd0e
children f6e7b5955712
line wrap: on
line source

<?xml version="1.0"?>
<tool id="hyphy_conv" name="HyPhy-Conv" version="@VERSION@+galaxy1" profile="19.09">
    <description>translate an in-frame codon alignment to proteins</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements"/>
    <command detect_errors="exit_code"><![CDATA[
        cp '$input_file' conv_input.fa &&
        hyphy conv
            '$gencodeid'
            '$deletions'
            conv_input.fa
            aa.nex
            > ./conv.log
        @ERRORS@
    ]]></command>
    <inputs>
        <param name="input_file" type="data" format="fasta" label="Input codon alignment"/>
        <param name="save_log" type="boolean" truevalue="Yes" falsevalue="No" checked="false" label="Save the conversion log to your history" />
        <expand macro="gencode"/>
        <param name="deletions" type="boolean" truevalue="Keep Deletions" falsevalue="Skip Deletions" label="Keep deletions" help="If this is checked, deletions will be left in the output file"/>
    </inputs>
    <outputs>
        <data name="conv_log" format="txt" from_work_dir="conv.log">
            <filter>save_log</filter>
        </data>
        <data name="proteins" format="nex" from_work_dir="aa.nex" />
    </outputs>
    <tests>
        <test>
            <param name="input_file" ftype="fasta" value="conv-in1.fa"/>
            <param name="deletions" value="Keep Deletions" />
            <output name="proteins" file="conv-out1.nex" />
        </test>
    </tests>
    <help><![CDATA[
HyPhy-CONV: Translate an in-frame codon alignment to proteins
=============================================================

This tool takes a codon-aligned fasta file and outputs the amino acid sequence
it represents, with the option to keep or skip deletions in the input file.
]]>
    </help>
    <expand macro="citations" />
</tool>