-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzip_to_spif.xml
More file actions
28 lines (22 loc) · 841 Bytes
/
zip_to_spif.xml
File metadata and controls
28 lines (22 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<tool id="zip_to_spif" name="Code to SPIF" version="1.0.3">
<description>converts zip (code) data to SPIF data</description>
<requirements>
<requirement type="package" version="0.0.2">monitors4codegen</requirement>
<requirement type="package" version="3.10">python</requirement>
</requirements>
<command>python3 '${__tool_directory__}/main.py' '$input' '$output'</command>
<inputs>
<param name="input" type="data" format="zip" multiple="True" label="Zip (code) file(s)" />
</inputs>
<outputs>
<data format="spif" name="output" />
</outputs>
<help>
**What it does**
This tool takes a zip (**code**) file, extracts the code, interprets it as ASTs and then converts it to a SPIF file.
-----
**Example**
Converting a zip (**code**) file provides:
- Galaxyx-[Code_to_SPIF_on_data_x].spif
</help>
</tool>