Mercurial > repos > sem4j > sparql_tools
view tab2rdf.xml @ 16:d779893dec56 draft default tip
Uploaded
author | sem4j |
---|---|
date | Wed, 11 Dec 2013 10:22:41 -0500 |
parents | 8d4ee8bac6a6 |
children |
line wrap: on
line source
<tool id="tab2rdf" name="Tab-to-RDF" version="0.1"> <description>Converter</description> <command interpreter="python"> tab2rdf.py $input_file $output_file $output_format $namespace #for $i in $triples ${i.s_col} ${i.p_val} ${i.o_col} ${i.o_type} #end for </command> <inputs> <param name="input_file" type="data" format="tabular" label="Input File (tabular)"/> <param name="namespace" type="text" size="50" value="http://localhost/" label="Namespace" /> <param name="output_format" type="select" label="Output Format"> <option value="ntriples">N-Triples</option> <option value="turtle">Turtle</option> <option value="rdfxml">RDF/XML</option> </param> <repeat name="triples" title="Triples"> <param name="s_col" type="data_column" data_ref="input_file" label="Subject (column)" /> <param name="p_val" type="text" size="50" value="a" label="Predicate (text)" /> <param name="o_col" type="data_column" data_ref="input_file" label="Object (column)" /> <param name="o_type" label="Check if this object is Literal (Keep unchecked if this object is URI)" type="boolean" truevalue="1" falsevalue="0" checked="False"/> </repeat> </inputs> <outputs> <data name="output_file" format="tabular" label="${tool.name} on ${on_string}"/> </outputs> <help> **What it does** Sample Input:: name age superviser Micheal 42 John Anne 30 Micheal Sample Parameters:: Namespace - 'http://localhost/' Triple 1 - c1 'age' c2(literal) Triple 2 - c3 'supervises' c1(URI) Sample Output:: <http://localhost/Michael> <http://localhost/age> "42" <http://localhost/Anne> <http://localhost/age> "30" <http://localhost/John> <http://localhost/supervises> <http://localhost/Micheal> <http://localhost/Micheal> <http://localhost/supervises> <http://localhost/Anne> **Output Format** Output RDF format is N-Triples by default. Raptor's Rapper has to be installed to generate the output in Turtle or RDF/XML. </help> </tool>