16
|
1 <tool id="vgx_converter" name="SIF-to-JGF" version="0.0.5">
|
15
|
2 <description>Converts a SIF file to a JSON Graph Format (JGF) file for visualization in VisualGraphX</description>
|
1
|
3 <command interpreter="python">vgx_converter.py $input1 $delimiter $input2 $output</command>
|
|
4 <inputs>
|
|
5 <param format="txt" name="input1" type="data" label="Network"/>
|
|
6 <param format="tabular" name="input2" type="data" optional="true" label="Attributes"/>
|
|
7 <param name="delimiter" type="select" label="Delimiter">
|
|
8 <option value="tab" selected="true">tab-delimited</option>
|
|
9 <option value="space">space-delimited</option>
|
|
10 </param>
|
|
11 </inputs>
|
|
12 <outputs>
|
17
|
13 <data format="json" name="output"/>
|
1
|
14 </outputs>
|
|
15
|
|
16 <help>
|
15
|
17 This tool converts the simple interaction format (.sif) to the JavaScript Graph Format JGF (.jgf)
|
1
|
18 that can be visualized using VisualGraphX. Furthermore, a attributes list can be provided to enhance
|
|
19 the information of the nodes in the graph.
|
|
20 </help>
|
|
21
|
|
22 <tests>
|
|
23 <test>
|
16
|
24 <param name="input1" value="CoVennTree_network.sif"/>
|
1
|
25 <param name="delimiter" value="space"/>
|
16
|
26 <param name="input2" value="CoVennTree.venn"/>
|
|
27 <param name="output" value="CoVennTree.jgf"/>
|
1
|
28 </test>
|
|
29 <test>
|
16
|
30 <param name="input1" value="Apoptosis.sif"/>
|
1
|
31 <param name="delimiter" value="tab"/>
|
16
|
32 <param name="output" value="Apoptosis.jgf"/>
|
1
|
33 </test>
|
|
34 </tests>
|
|
35
|
|
36 </tool>
|
|
37
|