annotate align_and_estimate_abundance.xml @ 6:04bd98a9c751 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
author iuc
date Mon, 28 Aug 2017 16:54:12 -0400
parents be3607a306af
children 3baf18bcf03e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
1 <tool id="trinity_align_and_estimate_abundance" name="Align reads and estimate abundance" version="@WRAPPER_VERSION@.2">
0
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
2 <description>on a de novo assembly of RNA-Seq data</description>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
3 <macros>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
4 <import>macros.xml</import>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
5 </macros>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
6 <expand macro="requirements">
5
be3607a306af planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit 7efdf3224552d113a01043ee5bf4517d770df933
iuc
parents: 3
diff changeset
7 <requirement type="package" version="1.3.0">rsem</requirement>
be3607a306af planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit 7efdf3224552d113a01043ee5bf4517d770df933
iuc
parents: 3
diff changeset
8 <requirement type="package" version="1.5.1">express</requirement>
be3607a306af planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit 7efdf3224552d113a01043ee5bf4517d770df933
iuc
parents: 3
diff changeset
9 <!-- Cannot update to salmon 0.8.2 because in Bioconda it requires icu 58, while r-base 3.3.1 requires icu 54 -->
be3607a306af planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit 7efdf3224552d113a01043ee5bf4517d770df933
iuc
parents: 3
diff changeset
10 <requirement type="package" version="0.8.1">salmon</requirement>
6
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
11 <requirement type="package" version="0.43.1">kallisto</requirement>
0
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
12 </expand>
5
be3607a306af planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit 7efdf3224552d113a01043ee5bf4517d770df933
iuc
parents: 3
diff changeset
13 <command detect_errors="aggressive"><![CDATA[
be3607a306af planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit 7efdf3224552d113a01043ee5bf4517d770df933
iuc
parents: 3
diff changeset
14 ln -f -s '$transcripts' input.fa &&
0
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
15
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
16 #if $inputs.paired_or_single == "paired":
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
17 #if $inputs.left_input.is_of_type('fasta'):
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
18 ln -s '$inputs.left_input' paired_left.fa &&
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
19 ln -s '$inputs.right_input' paired_right.fa
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
20 #else:
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
21 ln -s '$inputs.left_input' paired_left.fq &&
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
22 ln -s '$inputs.right_input' paired_right.fq
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
23 #end if
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
24 #else:
3
515119330a55 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit b9a2194247d728ef4d5a3c5511aa6ea63e9b2bcb
iuc
parents: 1
diff changeset
25 #if $inputs.input.is_of_type('fasta'):
0
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
26 ln -s '$inputs.input' single.fa
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
27 #else:
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
28 ln -s '$inputs.input' single.fq
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
29 #end if
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
30 #end if
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
31
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
32 &&
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
33
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
34 align_and_estimate_abundance.pl
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
35
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
36 --transcripts input.fa
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
37
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
38 --est_method $method.est_method
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
39 #if $method.est_method == "RSEM" or $method.est_method == "eXpress":
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
40 --aln_method $method.aln_method
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
41 #else if $method.est_method == "salmon":
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
42 --salmon_idx_type $method.salmon_idx_type
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
43 #end if
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
44
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
45 #if $inputs.paired_or_single == "paired":
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
46
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
47 #if $inputs.left_input.is_of_type('fasta'):
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
48 --left paired_left.fa --right paired_right.fa --seqType fa
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
49 #else:
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
50 --left paired_left.fq --right paired_right.fq --seqType fq
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
51 #end if
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
52
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
53 #if $inputs.strand.is_strand_specific:
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
54 --SS_lib_type $inputs.strand.library_type
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
55 #end if
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
56
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
57 --max_ins_size $inputs.paired_fragment_length
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
58
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
59 #else:
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
60 #if $inputs.input.is_of_type('fasta'):
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
61 --single single.fa --seqType fa
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
62 #else:
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
63 --single single.fq --seqType fq
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
64 #end if
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
65
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
66 #if $inputs.strand.is_strand_specific:
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
67 --SS_lib_type $inputs.strand.library_type
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
68 #end if
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
69 #end if
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
70
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
71 ## Additional parameters.
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
72 #if $additional_params.gene_map.has_gene_map == "no":
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
73 --gene_trans_map $additional_params.gene_map.gene_trans_map
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
74 #else
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
75 --trinity_mode
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
76 #end if
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
77
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
78 --prep_reference
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
79
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
80 --output_dir output
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
81
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
82 ## CPU
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
83 --thread_count \${GALAXY_SLOTS:-4}
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
84 ]]></command>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
85 <inputs>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
86 <param format="fasta" name="transcripts" argument="--transcripts" type="data" label="Transcripts" help="de novo assembly of RNA-Seq data"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
87 <conditional name="inputs">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
88 <param name="paired_or_single" type="select" label="Paired or Single-end data?">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
89 <option value="paired">Paired</option>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
90 <option value="single">Single</option>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
91 </param>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
92 <when value="paired">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
93 <param format="fasta,fastqsanger" name="left_input" argument="--left" type="data" label="Left/Forward strand reads" help=""/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
94 <param format="fasta,fastqsanger" name="right_input" argument="--right" type="data" label="Right/Reverse strand reads" help=""/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
95 <conditional name="strand">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
96 <param name="is_strand_specific" type="boolean" checked="false" label="Strand specific data"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
97 <when value="false">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
98 </when>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
99 <when value="true">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
100 <param name="library_type" argument="--SS_lib_type" type="select" label="Strand-specific Library Type">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
101 <option value="FR">Forward-Reverse</option>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
102 <option value="RF">Reverse-Forward</option>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
103 </param>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
104 </when>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
105 </conditional>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
106 <param name="paired_fragment_length" argument="--max_ins_size" type="integer" value="800" min="1" label="Maximum insert size" help="bowtie -X parameter"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
107 </when>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
108 <when value="single">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
109 <param format="fasta,fastqsanger" argument="--single" name="input" type="data" label="Single-end reads" help=""/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
110 <conditional name="strand">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
111 <param name="is_strand_specific" type="boolean" checked="false" label="Strand specific data"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
112 <when value="false">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
113 </when>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
114 <when value="true">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
115 <param name="library_type" argument="--SS_lib_type" type="select" label="Strand-specific Library Type">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
116 <option value="F">F</option>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
117 <option value="R">R</option>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
118 </param>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
119 </when>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
120 </conditional>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
121 </when>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
122 </conditional>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
123
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
124 <conditional name="method">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
125 <param type="select" name="est_method" argument="--est_method" label="Abundance estimation method">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
126 <option value="RSEM">RSEM</option>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
127 <option value="eXpress">eXpress</option>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
128 <option value="salmon">Salmon</option>
6
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
129 <option value="kallisto">Kallisto</option>
0
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
130 </param>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
131 <when value="RSEM">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
132 <param type="select" name="aln_method" argument="--aln_method" label="Alignment method">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
133 <option value="bowtie">Bowtie</option>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
134 <option value="bowtie2">Bowtie2</option>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
135 </param>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
136 </when>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
137 <when value="eXpress">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
138 <param type="select" name="aln_method" argument="--aln_method" label="Alignment method">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
139 <option value="bowtie">Bowtie</option>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
140 <option value="bowtie2">Bowtie2</option>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
141 </param>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
142 </when>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
143 <when value="salmon">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
144 <param type="select" name="salmon_idx_type" argument="--salmon_idx_type" label="Index type">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
145 <option value="quasi">Quasi</option>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
146 <option value="fmd">FMD</option>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
147 </param>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
148 </when>
6
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
149 <when value="kallisto">
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
150 </when>
0
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
151 </conditional>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
152
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
153 <section name="additional_params" title="Additional Options" expanded="False">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
154 <conditional name="gene_map">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
155 <param name="has_gene_map" type="select" label="Trinity assembly?" help="If the transcripts were not assembled by trinity, additional information is needed">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
156 <option value="yes">Yes</option>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
157 <option value="no">No</option>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
158 </param>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
159 <when value="yes">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
160 </when>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
161 <when value="no">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
162 <param format="tabular" name="gene_trans_map" argument="--gene_trans_map" type="data" label="Gene to transcript correspondence ('gene(tab)transcript' lines)" />
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
163 </when>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
164 </conditional>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
165
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
166 </section>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
167 </inputs>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
168 <outputs>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
169 <data format="tabular" name="isoforms_counts_rsem" label="${tool.name} on ${on_string}: isoforms counts" from_work_dir="output/RSEM.isoforms.results">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
170 <filter>method['est_method'] == "RSEM"</filter>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
171 </data>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
172 <data format="tabular" name="genes_counts_rsem" label="${tool.name} on ${on_string}: genes counts" from_work_dir="output/RSEM.genes.results">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
173 <filter>method['est_method'] == "RSEM"</filter>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
174 </data>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
175
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
176 <data format="tabular" name="isoforms_counts_express" label="${tool.name} on ${on_string}: isoforms counts" from_work_dir="output/results.xprs">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
177 <filter>method['est_method'] == "eXpress"</filter>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
178 </data>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
179 <data format="tabular" name="genes_counts_express" label="${tool.name} on ${on_string}: genes counts" from_work_dir="output/results.xprs.genes">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
180 <filter>method['est_method'] == "eXpress"</filter>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
181 </data>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
182
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
183 <data format="tabular" name="isoforms_counts_salmon" label="${tool.name} on ${on_string}: isoforms counts" from_work_dir="output/quant.sf">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
184 <filter>method['est_method'] == "salmon"</filter>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
185 </data>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
186 <data format="tabular" name="genes_counts_salmon" label="${tool.name} on ${on_string}: genes counts" from_work_dir="output/quant.sf.genes">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
187 <filter>method['est_method'] == "salmon"</filter>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
188 </data>
6
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
189
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
190 <data format="tabular" name="isoforms_counts_kallisto" label="${tool.name} on ${on_string}: isoforms counts" from_work_dir="output/abundance.tsv">
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
191 <filter>method['est_method'] == "kallisto"</filter>
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
192 </data>
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
193 <data format="tabular" name="genes_counts_kallisto" label="${tool.name} on ${on_string}: genes counts" from_work_dir="output/abundance.tsv.genes">
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
194 <filter>method['est_method'] == "kallisto"</filter>
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
195 </data>
0
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
196 </outputs>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
197 <tests>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
198 <test>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
199 <param name="paired_or_single" value="paired"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
200 <param name="left_input" value="reads.left.fq"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
201 <param name="right_input" value="reads.right.fq"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
202 <param name="transcripts" value="raw/Trinity.fasta"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
203 <param name="library_type" value="RF"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
204 <param name="est_method" value="RSEM"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
205 <param name="aln_method" value="bowtie"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
206 <param name="has_gene_map" value="yes"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
207 <output name="isoforms_counts_rsem">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
208 <assert_contents>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
209 <has_line_matching expression="TRINITY_DN0_c0_g1_i1&#009;.*" />
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
210 <has_n_columns n="8" />
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
211 </assert_contents>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
212 </output>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
213 <output name="genes_counts_rsem">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
214 <assert_contents>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
215 <has_line_matching expression="TRINITY_DN0_c0_g1&#009;.*" />
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
216 <has_n_columns n="7" />
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
217 </assert_contents>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
218 </output>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
219 </test>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
220 <test>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
221 <param name="paired_or_single" value="paired"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
222 <param name="left_input" value="reads.left.fq"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
223 <param name="right_input" value="reads.right.fq"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
224 <param name="transcripts" value="raw/Trinity.fasta"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
225 <param name="library_type" value="RF"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
226 <param name="est_method" value="RSEM"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
227 <param name="aln_method" value="bowtie2"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
228 <param name="has_gene_map" value="yes"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
229 <output name="isoforms_counts_rsem">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
230 <assert_contents>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
231 <has_line_matching expression="TRINITY_DN0_c0_g1_i1&#009;.*" />
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
232 <has_n_columns n="8" />
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
233 </assert_contents>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
234 </output>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
235 <output name="genes_counts_rsem">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
236 <assert_contents>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
237 <has_line_matching expression="TRINITY_DN0_c0_g1&#009;.*" />
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
238 <has_n_columns n="7" />
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
239 </assert_contents>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
240 </output>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
241 </test>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
242 <test>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
243 <param name="paired_or_single" value="paired"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
244 <param name="left_input" value="reads.left.fq"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
245 <param name="right_input" value="reads.right.fq"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
246 <param name="transcripts" value="raw/Trinity.fasta"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
247 <param name="library_type" value="RF"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
248 <param name="est_method" value="eXpress"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
249 <param name="aln_method" value="bowtie"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
250 <param name="has_gene_map" value="yes"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
251 <output name="isoforms_counts_express">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
252 <assert_contents>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
253 <has_line_matching expression=".*&#009;TRINITY_DN2_c3_g1_i1&#009;.*" />
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
254 <has_n_columns n="15" />
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
255 </assert_contents>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
256 </output>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
257 <output name="genes_counts_express">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
258 <assert_contents>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
259 <has_line_matching expression="NA&#009;TRINITY_DN3_c0_g1.*" />
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
260 <has_n_columns n="15" />
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
261 </assert_contents>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
262 </output>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
263 </test>
6
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
264 <test>
0
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
265 <param name="paired_or_single" value="paired"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
266 <param name="left_input" value="reads.left.fq"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
267 <param name="right_input" value="reads.right.fq"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
268 <param name="transcripts" value="raw/Trinity.fasta"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
269 <param name="library_type" value="RF"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
270 <param name="est_method" value="salmon"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
271 <param name="aln_method" value="bowtie"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
272 <param name="has_gene_map" value="yes"/>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
273 <output name="isoforms_counts_salmon">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
274 <assert_contents>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
275 <has_line_matching expression="TRINITY_DN2_c3_g1_i1&#009;.*" />
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
276 <has_n_columns n="5" />
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
277 </assert_contents>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
278 </output>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
279 <output name="genes_counts_salmon">
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
280 <assert_contents>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
281 <has_line_matching expression="TRINITY_DN3_c0_g1.*" />
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
282 <has_n_columns n="5" />
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
283 </assert_contents>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
284 </output>
6
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
285 </test>
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
286 <test>
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
287 <param name="paired_or_single" value="paired"/>
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
288 <param name="left_input" value="reads.left.fq"/>
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
289 <param name="right_input" value="reads.right.fq"/>
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
290 <param name="transcripts" value="raw/Trinity.fasta"/>
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
291 <param name="library_type" value="RF"/>
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
292 <param name="est_method" value="kallisto"/>
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
293 <param name="has_gene_map" value="yes"/>
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
294 <output name="isoforms_counts_kallisto">
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
295 <assert_contents>
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
296 <has_line_matching expression="TRINITY_DN1_c0_g1_i1&#009;.*" />
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
297 <has_n_columns n="5" />
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
298 </assert_contents>
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
299 </output>
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
300 <output name="genes_counts_kallisto">
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
301 <assert_contents>
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
302 <has_line_matching expression="TRINITY_DN1_c0_g1&#009;.*" />
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
303 <has_n_columns n="5" />
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
304 </assert_contents>
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
305 </output>
04bd98a9c751 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit bc4ea54f0deec4ddec8e6cf79fd547491e165686
iuc
parents: 5
diff changeset
306 </test>
0
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
307 </tests>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
308 <help>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
309 <![CDATA[
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
310 Trinity_ assembles transcript sequences from Illumina RNA-Seq data.
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
311 This tool estimates the abundance of isoforms and genes of a transcriptome assembled with Trinity, using FastQ of a specific sample.
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
312
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
313 **Inputs**
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
314
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
315 It takes as input a transcriptome assembled with Trinity and the reads from a RNASeq sample.
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
316 You have to choose between several counting methods.
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
317
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
318 If you dont align on a Trinity assembly, you need to provide a file of the following (tabular) format to map gene ids to transcript ids:
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
319
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
320 =========== ================
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
321 gene1 transcript1
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
322 ----------- ----------------
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
323 gene2 transcript2
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
324 =========== ================
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
325
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
326 **Output**
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
327
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
328 This tool will produce 2 tabular files, with counts for isoforms and genes respectively. More details on this page:
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
329
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
330 .. _Trinity manual: https://github.com/trinityrnaseq/trinityrnaseq/wiki/Trinity-Transcript-Quantification
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
331
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
332
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
333 .. _Trinity: http://trinityrnaseq.github.io
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
334 ]]>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
335 </help>
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
336
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
337 <expand macro="citation" />
a21e229da9a1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit e23a8ad798830209db722d5496d19ec7a5e06214
iuc
parents:
diff changeset
338 </tool>