Mercurial > repos > iuc > trinity_gene_to_trans_map
view gene_to_trans_map.xml @ 3:4ffe49475169 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit b9a2194247d728ef4d5a3c5511aa6ea63e9b2bcb
author | iuc |
---|---|
date | Tue, 13 Dec 2016 14:43:44 -0500 |
parents | 83c862e77b99 |
children | 9502ad75fc87 |
line wrap: on
line source
<tool id="trinity_gene_to_trans_map" name="Generate gene to transcript map" version="@WRAPPER_VERSION@.0"> <description>for Trinity assembly</description> <macros> <import>macros.xml</import> </macros> <expand macro="requirements"/> <expand macro="stdio"/> <command><![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. .. _Trinity: http://trinityrnaseq.github.io </help> <expand macro="citation" /> </tool>