0
|
1 <tool id="plant_tribes_gene_family_integrator" name="GeneFamilyIntegrator" version="0.8.0">
|
|
2 <description>integrates de novo assembly sequences with scaffold gene family sequences</description>
|
|
3 <macros>
|
|
4 <import>macros.xml</import>
|
|
5 </macros>
|
|
6 <expand macro="requirements_gene_family_integrator" />
|
|
7 <expand macro="stdio" />
|
|
8 <command>
|
|
9 <![CDATA[
|
|
10 #set input_format = $input_format_cond.input_format
|
|
11 #set scaffold = $input_format_cond.scaffold
|
|
12 #set method = $input_format_cond.method
|
|
13
|
|
14 python $__tool_directory__/gene_family_integrator.py
|
|
15 --scaffold '$scaffold.fields.path'
|
|
16 --method $method
|
|
17 #if str($input_format) == 'ptortho':
|
|
18 --orthogroup_faa '$input_format_cond.input_ptortho.extra_files_path'
|
4
|
19 --output '$output_ptortho'
|
|
20 --output_dir '$output_ptortho.files_path'
|
0
|
21 #else:
|
|
22 ## str($input_format) == 'ptorthocs'
|
|
23 --orthogroup_faa '$input_format_cond.input_ptorthocs.extra_files_path'
|
4
|
24 #if str($input_format_cond.orthogroup_fna) == 'yes':
|
0
|
25 --orthogroup_fna 'true'
|
4
|
26 --output '$output_ptorthocs'
|
|
27 --output_dir '$output_ptorthocs.files_path'
|
|
28 #else:
|
|
29 --output '$output_ptortho'
|
|
30 --output_dir '$output_ptortho.files_path'
|
0
|
31 #end if
|
|
32 #end if
|
|
33 ]]>
|
|
34 </command>
|
|
35 <inputs>
|
|
36 <conditional name="input_format_cond">
|
|
37 <param name="input_format" type="select" label="Select type of data to sub sample">
|
|
38 <option value="ptortho">Gene family clusters</option>
|
|
39 <option value="ptorthocs">Gene family clusters with corresponding coding sequences</option>
|
|
40 </param>
|
|
41 <when value="ptortho">
|
|
42 <param name="input_ptortho" format="ptortho" type="data" label="Gene family clusters" />
|
|
43 <expand macro="param_scaffold" />
|
|
44 <expand macro="param_method" />
|
|
45 </when>
|
|
46 <when value="ptorthocs">
|
|
47 <param name="input_ptorthocs" format="ptorthocs" type="data" label="Gene family clusters with corresponding coding sequences" />
|
|
48 <expand macro="param_scaffold" />
|
|
49 <expand macro="param_method" />
|
|
50 <expand macro="param_orthogroup_fna" />
|
|
51 </when>
|
|
52 </conditional>
|
|
53 </inputs>
|
|
54 <outputs>
|
4
|
55 <data name="output_ptortho" format="ptortho" label="Integrated gene family clusters on ${on_string}">
|
|
56 <filter>input_format_cond['input_format'] == 'ptortho' or (input_format_cond['input_format'] == 'ptorthocs' and input_format_cond['orthogroup_fna'] == 'no')</filter>
|
|
57 </data>
|
|
58 <data name="output_ptorthocs" format="ptorthocs" label="Integrated gene family clusters and corresponding coding sequences on ${on_string}">
|
|
59 <filter>input_format_cond['input_format'] == 'ptorthocs' and input_format_cond['orthogroup_fna'] == 'yes'</filter>
|
|
60 </data>
|
0
|
61 </outputs>
|
|
62 <tests>
|
|
63 <test>
|
|
64 </test>
|
|
65 </tests>
|
|
66 <help>
|
|
67 This tool is one of the PlantTribes collection of automated modular analysis pipelines for comparative and evolutionary
|
|
68 analyses of genome-scale gene families and transcriptomes. This tool integrates classified post processed de novo transcriptome
|
|
69 assembly sequence(s) with the scaffold gene family sequences.
|
|
70
|
|
71 -----
|
|
72
|
|
73 **Required options**
|
|
74
|
|
75 * **Gene family clusters** - sequences classified into gene family clusters, optionally including corresponding coding sequences.
|
|
76 * **Gene family scaffold** - one of the PlantTribes gene family scaffolds [2-4] installed into Galaxy by the PlantTribes Scaffold Data Manager tool.
|
|
77 * **Protein clustering method** - gene family scaffold protein clustering method as described in the AssemblyPostProcessor tool.
|
|
78
|
|
79 **Other options**
|
|
80
|
2
|
81 * **Process corresponding gene family classification orthogroups CDS fasta files** - Select 'Yes' top process corresponding gene family classification orthogroups CDS fasta files.
|
0
|
82
|
|
83 </help>
|
|
84 <citations>
|
|
85 <expand macro="citation1" />
|
|
86 <expand macro="citations2to4" />
|
|
87 </citations>
|
|
88 </tool>
|