comparison GAFA.xml @ 0:af9f72ddf7f9 draft

planemo upload for repository https://github.com/TGAC/earlham-galaxytools/tree/master/tools/GAFA/ commit 822c798d43a72724eeab174043fdaafcfdac845f-dirty
author earlhaminst
date Wed, 21 Dec 2016 07:31:50 -0500
parents
children fc8ca4ade638
comparison
equal deleted inserted replaced
-1:000000000000 0:af9f72ddf7f9
1 <tool id="gafa" name="Gene Align and Family Aggregator" version="0.1.0">
2 <description>generates an SQLite database that can be visualised with Aequatus</description>
3 <command>
4 <![CDATA[
5 python '$__tool_directory__/GAFA.py'
6 #for $dataset in $treeFile:
7 -t '$dataset'
8 #end for
9 #for $dataset in $alignmentFile:
10 -c '$dataset'
11 #end for
12 -g '$genesFile'
13 -o '$outputFile'
14 ]]>
15 </command>
16 <inputs>
17 <param name="treeFile" type="data" format="nhx" multiple="true" label="Gene tree" help="Gene tree in Newick format, e.g. generated from 'TreeBeST best' or 'Get gene tree by Ensembl ID' tool" />
18 <param name="alignmentFile" type="data" format="tabular" multiple="true" label="CDS alignments" help="CDS alignments in tabular format generated by 'T-Coffee to CIGAR' tool" />
19 <param name="genesFile" type="data" format="json" label="Gene features" help="Gene features in JSON format generated by 'GFF3 to JSON' or 'Get Ensembl features by ID' tool" />
20 </inputs>
21 <outputs>
22 <data name="outputFile" format="gafa.sqlite" label="${tool.name} on ${on_string}" />
23 </outputs>
24 <tests>
25 <test>
26 <param name="treeFile" ftype="nhx" value="tree.nhx" />
27 <param name="alignmentFile" ftype="tabular" value="cigar.tabular" />
28 <param name="genesFile" ftype="json" value="gene.json" />
29 <output name="outputFile" file="test.gafa.sqlite" compare="sim_size" />
30 </test>
31 </tests>
32 <help>
33 <![CDATA[
34 Simple tool to generate an SQLite database that can be visualised with `Aequatus`_.
35
36 Aequatus is an open-source homology browser developed with novel rendering approaches to visualise homologous, orthologous and paralogous gene structures.
37
38 N.B.: The tool will modify the sequence identifiers found in the "CDS alignments" dataset by removing everything from the first underscore to the end of the string.
39
40 .. _Aequatus: http://aequatus.earlham.ac.uk
41 ]]>
42 </help>
43 <citations>
44 </citations>
45 </tool>