Mercurial > repos > mikel-egana-aranguren > sadi_generic
comparison galaxy-dist/tools/SADI/RDFSyntaxConverter.xml @ 2:977c838e3442 draft default tip
New dir structure, README improved, tests added and RDF merge tool created
author | mikel-egana-aranguren <mikel.egana.aranguren@gmail.com> |
---|---|
date | Fri, 25 Apr 2014 14:41:12 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1:bb17b69a74c5 | 2:977c838e3442 |
---|---|
1 <tool id="RDFSyntaxConverter" name="RDF Syntax Converter" version="0.0.1"> | |
2 <description>Converts RDF to N3, N-TRIPLE or TAB format</description> | |
3 | |
4 <command>${__tool_data_path__}/shared/errwrap.sh java -Xmx2000M -Xms250M -jar ${__tool_data_path__}/shared/jars/RDFSyntaxConverter.jar $input $format > $output </command> | |
5 | |
6 <inputs> | |
7 <param name="input" type="data" format="rdf" label="RDF input file"/> | |
8 <param name="format" type="select" label="Choose RDF output format"> | |
9 <option value="N3">N3</option> | |
10 <option value="N-TRIPLE">N-TRIPLE</option> | |
11 <option value="TAB" selected="true">Tab separated columns</option> | |
12 </param> | |
13 </inputs> | |
14 <outputs> | |
15 <data format="text" name="output" /> | |
16 </outputs> | |
17 | |
18 <tests> | |
19 <test> | |
20 <param name="input" value="hello-input.rdf"/> | |
21 <param name="format" value="N3"/> | |
22 <output name="output" file="RDFSyntaxConverter_N3_test_hello_output"/> | |
23 </test> | |
24 <test> | |
25 <param name="input" value="hello-input.rdf"/> | |
26 <param name="format" value="N-TRIPLE"/> | |
27 <output name="output" file="RDFSyntaxConverter_N-TRIPLE_test_hello_output"/> | |
28 </test> | |
29 <test> | |
30 <param name="input" value="hello-input.rdf"/> | |
31 <param name="format" value="TAB"/> | |
32 <output name="output" file="RDFSyntaxConverter_TAB_test_hello_output"/> | |
33 </test> | |
34 </tests> | |
35 <help> | |
36 | |
37 **What it does** | |
38 | |
39 Given an RDF input file, it converts it to N3, N-TRIPLE or TAB (A tab delimited file containing three columns -subjects, predicates and objects- for other Galaxy tools to consume). | |
40 | |
41 **About** | |
42 | |
43 More information and contact: http://github.com/mikel-egana-aranguren/SADI-Galaxy | |
44 | |
45 </help> | |
46 </tool> |