comparison extract_transcript_to_gene_map_from_trinity.xml @ 0:8857193bde0e draft

planemo upload for repository https://github.com/artbio/tools-artbio/tree/master/tools/rsem commit b800e37fa54bbfeb16027133f7c34647ea460419
author artbio
date Tue, 27 Mar 2018 02:43:35 -0400
parents
children 39b8e13b1fc9
comparison
equal deleted inserted replaced
-1:000000000000 0:8857193bde0e
1 <tool id="extract_transcript_to_gene_map_from_trinity" name="RSEM trinity fasta to gene map" version="0.1.0">
2 <description>extract transcript to gene map from trinity</description>
3 <requirements>
4 <requirement type="package" version="1.3.0">rsem</requirement>
5 </requirements>
6 <command>
7 extract-transcript-to-gene-map-from-trinity $trinity_fasta_file $map_file
8 </command>
9
10 <inputs>
11 <param name="trinity_fasta_file" type="data" format="fasta" label="Trinity fasta file" />
12 </inputs>
13 <stdio>
14 <exit_code range="1:" level="fatal" description="Error Running RSEM" />
15 </stdio>
16 <outputs>
17 <data format="tabular" name="map_file" label="${tool.name} on ${on_string}: gene map file"/>
18 </outputs>
19 <tests>
20 <test>
21 <param name="trinity_fasta_file" value="trinity_assembled_transcripts.fasta" ftype="fasta"/>
22 <output name="map_file" file="trinity_gene_map.tabular"/>
23 </test>
24 </tests>
25 <help>
26
27
28 RSEM HOME PAGE - http://deweylab.biostat.wisc.edu/rsem/
29
30 NAME
31 extract-transcript-to-gene-map-from-trinity
32
33 SYNOPSIS
34 extract-transcript-to-gene-map-from-trinity trinity_fasta_file map_file
35
36 DESCRIPTION
37 generates a gene_mp_file from a trinity fasta file
38
39
40 </help>
41 </tool>