view gene_to_trans_map.xml @ 19:ba460ccf0006 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit 1d443e73d2eb888660bbbc7af198f5bcca9c1a70
author iuc
date Tue, 11 Apr 2023 19:54:25 +0000
parents 7e3849997c91
children 7c7fbf13aadd
line wrap: on
line source

<tool id="trinity_gene_to_trans_map" name="Generate gene to transcript map" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="21.05">
    <description>for Trinity assembly</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="bio_tools"/>
    <expand macro="requirements"/>
    <command detect_errors="aggressive"><![CDATA[
       get_Trinity_gene_to_trans_map.pl '$assembly' > '$map'
    ]]></command>
    <inputs>
        <param format="fasta" name="assembly" type="data" label="Trinity assembly"/>
    </inputs>
    <outputs>
        <data format="tabular" name="map" label="${tool.name} on ${on_string}: Genes to transcripts map"/>
    </outputs>
    <tests>
        <test>
            <param name="assembly" value="raw/Trinity.fasta" ftype="fasta"/>
            <output name="map" file="raw/map.tsv" />
        </test>
    </tests>
    <help>
        Trinity_ assembles transcript sequences from Illumina RNA-Seq data.
        This tool produces a file containing correspondance between gene ids and transcript ids based on the name of transcripts assembled by Trinity.
        The output file is intended to be used by the "Align reads and estimate abundance" tool.
        The same file is automatically generated when running Trinity, this tool is only intended to be used when you don't (or no longer) have access to the one produced by Trinity.

        .. _Trinity: http://trinityrnaseq.github.io
    </help>
    <expand macro="citation" />
</tool>