Mercurial > repos > tduigou > sbml2sbol
comparison sbml2sbol.xml @ 0:f0a06f526c7f draft
"planemo upload commit 2f1af427fa4c4f2aad53ab94c4cdb51456c66019-dirty"
author | tduigou |
---|---|
date | Thu, 09 Dec 2021 14:21:48 +0000 |
parents | |
children | 83108f3c65aa |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f0a06f526c7f |
---|---|
1 <tool id="sbml2sbol" name="SbmlToSbol" version="0.1.12"> | |
2 <description>Convert sbml to sbol format</description> | |
3 <requirements> | |
4 <requirement type="package" version="0.1.12">sbml2sbol</requirement> | |
5 </requirements> | |
6 <command detect_errors="exit_code"><![CDATA[ | |
7 python -m sbml2sbol | |
8 --input '$sbml_single_input' | |
9 --outfile '$sbol_outfile' | |
10 #if str($adv.rbs) == "true" | |
11 --rbs True | |
12 #else | |
13 --rbs False | |
14 #end if | |
15 --max_prot_per_react '$adv.max_prot_per_react' | |
16 #if $adv.tirs | |
17 --tirs $adv.tirs | |
18 #end if | |
19 --pathway_id '$adv.pathway_id' | |
20 --uniprotID_key '$adv.uniprotID_key' | |
21 ]]></command> | |
22 <inputs> | |
23 <param name="sbml_single_input" type="data" format="xml" label="Pathway (SBML)" /> | |
24 <section name="adv" title="Advanced Options" expanded="false"> | |
25 <param name="rbs" type="boolean" label="Calculate the RBS strength?" checked="true" /> | |
26 <param name="max_prot_per_react" type="integer" value="3" label="The maximum number of proteins per reaction" /> | |
27 <param name="tirs" type="text" optional="true" label="Space separated RBS strength values" /> | |
28 <param name="pathway_id" type="text" value="rp_pathway" label="Group ID of the heterologous pathway" /> | |
29 <param name="uniprotID_key" type="text" value="selenzy" label="Uniprot ID" /> | |
30 </section> | |
31 </inputs> | |
32 <outputs> | |
33 <data name="sbol_outfile" format="xml" label="${tool.name}: sbol outfile" /> | |
34 </outputs> | |
35 <tests> | |
36 <test> | |
37 <!-- test 1: check if identical outputs are produced with default parameters --> | |
38 <param name="sbml_single_input" value="lycopene.xml" /> | |
39 <output name="sbol_outfile" file="sbol_lycopene_output.xml" ftype="xml" compare="diff" sort="true"/> | |
40 </test> | |
41 </tests> | |
42 <help><![CDATA[ | |
43 SBML to SBOL | |
44 ================ | |
45 | |
46 Convert a single or multiple SBML files to SBOL. | |
47 | |
48 Input | |
49 ----- | |
50 | |
51 Required: | |
52 | |
53 * **input**\ : (string) path to folder(s) containing rpSBML files and/or rpSBML file path(s). | |
54 | |
55 Advanced options: | |
56 | |
57 * **rbs**\ : (boolean) Calculate or not the RBS strength (default: True). | |
58 * **max_prot_per_react**\ : (int) The maximum number of proteins per reaction (default: 3). | |
59 * **tirs**\ : (int) The RBS strength values (default: None) | |
60 * **pathway_id**\ : (string) Group ID of the heterologous pathway (default: rp_pathway) | |
61 * **uniprotID_key**\ : (string) Group ID of the heterologous pathway (default: selenzy) | |
62 | |
63 Output | |
64 ------ | |
65 | |
66 * **outfile**\ : (string) specify output (SBOL) file. | |
67 | |
68 Project Links | |
69 ------------------ | |
70 | |
71 * `GitHub <https://github.com/neilswainston/SbmlToSbol>`_ | |
72 | |
73 Version | |
74 ---------- | |
75 0.1.12 | |
76 | |
77 License | |
78 ------- | |
79 | |
80 * `MIT <https://raw.githubusercontent.com/neilswainston/SbmlToSbol/master/LICENSE>`_ | |
81 | |
82 ]]></help> | |
83 </tool> |