comparison filter_low_expr_transcripts.xml @ 9:e659504d166c draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit 9dcdb5348f7439d0ce1e44ed23ad226beb4ae6d4
author iuc
date Thu, 14 Jun 2018 03:12:23 -0400
parents 30d6a6424102
children 17101429bf0d
comparison
equal deleted inserted replaced
8:6f0fb35b799c 9:e659504d166c
1 <tool id="trinity_filter_low_expr_transcripts" name="Filter low expression transcripts" version="@WRAPPER_VERSION@.0"> 1 <tool id="trinity_filter_low_expr_transcripts" name="Filter low expression transcripts" version="@WRAPPER_VERSION@">
2 <description>from a Trinity assembly</description> 2 <description>from a Trinity assembly</description>
3 <macros> 3 <macros>
4 <import>macros.xml</import> 4 <import>macros.xml</import>
5 </macros> 5 </macros>
6 <expand macro="requirements"/> 6 <expand macro="requirements"/>
7 <command detect_errors="aggressive"><![CDATA[ 7 <command detect_errors="aggressive"><![CDATA[
8
9 #if $additional_params.gene_map.has_gene_map == "yes":
10 get_Trinity_gene_to_trans_map.pl '$assembly' > gene_to_trans.map &&
11 #else:
12 ln -f -s '$additional_params.gene_map.gene_trans_map' gene_to_trans.map &&
13 #end if
14
8 filter_low_expr_transcripts.pl 15 filter_low_expr_transcripts.pl
9 --matrix '$matrix' 16 --matrix '$matrix'
10 --transcripts '$assembly' 17 --transcripts '$assembly'
11 18
12 #if $additional_params.gene_map.has_gene_map == "no": 19 --gene_to_trans_map gene_to_trans.map
13 --gene_to_trans_map '$additional_params.gene_map.gene_trans_map'
14 #else
15 --trinity_mode
16 #end if
17 20
18 #if str($min_expr_any): 21 #if str($min_expr_any):
19 --min_expr_any $min_expr_any 22 --min_expr_any $min_expr_any
20 #end if 23 #end if
21 24