comparison merge.xml @ 19:cc270db37d33 draft

Directories re-arranged
author Mikel Egana Aranguren <mikel-egana-aranguren@toolshed.g2.bx.psu.edu>
date Sat, 06 Oct 2012 21:50:39 +0200
parents OPPL/merge.xml@d3616fac4ca5
children
comparison
equal deleted inserted replaced
18:d3616fac4ca5 19:cc270db37d33
1 <tool id="merge" name="Merge the imported ontologies" version="1.0.1">
2 <description>If an ontology with import axioms is provided, it will merge the imported ontologies into the main ontology</description>
3
4 <!-- DEFAULT SETTINGS -->
5
6 <!-- For big ontologies I use -Xmx3000M -Xms250M -DentityExpansionLimit=1000000000 If that's too much for your machine simply delete or modify at will, but since Galaxy is usually used in a server setting it makes sense to use a big chunk of memory -->
7
8 <command>
9 java -Xmx3000M -Xms250M -DentityExpansionLimit=1000000000 -jar ${__tool_data_path__}/shared/jars/merge.jar $ontology "$uri" > $output
10 </command>
11
12 <inputs>
13 <param name="ontology" type="data" label="Input ontology file"/>
14 <param name="uri" type="text" size="100" value="" label="IRI for the new ontology" />
15 </inputs>
16 <outputs>
17 <data type="data" format="text" name="output" />
18 </outputs>
19 <!--<tests>
20 <test>
21 <param name="ontology" value="merge_test.owl"/>
22 <param name="uri" value="http://cbgp.upm.es/BiologicalInformatics/OPPLGalaxy/merged.owl"/>
23 <output name="out_file" file="merge.owl"/>
24 </test>
25 </tests>-->
26 <help>
27
28 **About Merge-Galaxy**
29
30 Merge-Galaxy can be used to merge any (resolvable) imported ontologies into the main ontology, creating a new ontology.
31
32 **Usage**
33
34 An ontology is needed as input: load it with Get Data >> Upload File from your computer or redirect the output of another galaxy tool. Merge-Galaxy uses the OWL API, and therefore it can load any ontology format that such API is able to load: OBO flat file, OWL (RDF/XML, OWL/XML, Functional, Manchester), turtle, and KRSS.
35
36 An URI can be specified for the new merged ontology. In case non is specified, the following URI will be used: http://cbgp.upm.es/BiologicalInformatics/OPPLGalaxy/merged.owl.
37
38 **Contact**
39
40 Please send any request or comment to mikel.egana.aranguren@gmail.com.
41
42 </help>
43
44 </tool>