view graph2db.xml @ 0:aa7a5cc0f59b default tip

commit
author ryo_tas <yamanaka@genome.rcast.u-tokyo.ac.jp>
date Tue, 30 Dec 2014 18:27:26 +0900
parents
children
line wrap: on
line source

<tool id="graph2db" name="Graph-to-DB" version="0.2.1">
  <description>Loader</description>
  <command interpreter="node">
    neo4j_loader.js $input_file_n $input_file_r $namespace $host $port 1 > $log_file
  </command>
  <inputs>
    <param name="host" type="text" size="50" value="localhost" label="Neo4j Host"/>
    <param name="port" type="text" size="10" value="7474" label="Neo4j Port"/>
    <param name="namespace" type="text" size="50" value="http://sem4j.org/" label="Namespace"/>
    <param name="input_file_n" type="data" format="txt" label="Input Node File (txt)"/>
    <param name="input_file_r" type="data" format="txt" label="Input Relation File (txt)"/>
  </inputs>
  <outputs>
    <data name="log_file" format="txt" label="${tool.name} on ${on_string} (log)"/>
  </outputs>
  <help>
**What it does**
  </help>
</tool>