Mercurial > repos > ryotas > cypher_tools
comparison tab2graph.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 |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:aa7a5cc0f59b |
|---|---|
| 1 <tool id="tab2graph" name="Tab-to-Graph" version="0.2"> | |
| 2 <description>Converter 2</description> | |
| 3 <command interpreter="python"> | |
| 4 tab2graph.py $input_file $h $output_file_n $output_file_r '$def_n' '$def_r' | |
| 5 </command> | |
| 6 <inputs> | |
| 7 <param name="input_file" type="data" format="tabular" label="Input File (tabular)"/> | |
| 8 <param name="h" label="Check to neglect the first row of the input." type="boolean" truevalue="1" falsevalue="0" checked="False"/> | |
| 9 <param name="def_n" type="text" area="true" size="10x70" label="Definition for Nodes"> | |
| 10 <sanitizer> | |
| 11 <valid initial="string.printable"> | |
| 12 <remove value="'"/> | |
| 13 </valid> | |
| 14 <mapping initial="none"> | |
| 15 <add source="'" target="__sq__"/> | |
| 16 </mapping> | |
| 17 </sanitizer> | |
| 18 </param> | |
| 19 <param name="def_r" type="text" area="true" size="10x70" label="Definition for Relations"> | |
| 20 <sanitizer> | |
| 21 <valid initial="string.printable"> | |
| 22 <remove value="'"/> | |
| 23 </valid> | |
| 24 <mapping initial="none"> | |
| 25 <add source="'" target="__sq__"/> | |
| 26 </mapping> | |
| 27 </sanitizer> | |
| 28 </param> | |
| 29 </inputs> | |
| 30 <outputs> | |
| 31 <data name="output_file_n" format="tabular" label="${tool.name} on ${on_string} (node)"/> | |
| 32 <data name="output_file_r" format="tabular" label="${tool.name} on ${on_string} (relation)"/> | |
| 33 </outputs> | |
| 34 <help> | |
| 35 **What it does** | |
| 36 </help> | |
| 37 </tool> |
