Mercurial > repos > tduigou > get_sbml_model
annotate get_sbml_model.xml @ 12:1aadcfdae10b draft
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
author | tduigou |
---|---|
date | Tue, 01 Apr 2025 10:00:10 +0000 |
parents | 062f51695ae0 |
children | 6bcd8f09158d |
rev | line source |
---|---|
12
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
1 <tool id="get_sbml_model" name="Pick SBML Model" version="0.3.0" profile="21.09" license="MIT"> |
1
ceffb29b60c9
planemo upload commit 9c19f737cd6e2152151c8bf97a53ab1afe51a4a0
tduigou
parents:
0
diff
changeset
|
2 <description>Get an SBML model (BiGG)</description> |
0
4797d0b36ff3
"planemo upload commit 2f1af427fa4c4f2aad53ab94c4cdb51456c66019-dirty"
tduigou
parents:
diff
changeset
|
3 <requirements> |
4797d0b36ff3
"planemo upload commit 2f1af427fa4c4f2aad53ab94c4cdb51456c66019-dirty"
tduigou
parents:
diff
changeset
|
4 <requirement type="package" version="7.81.0">curl</requirement> |
4797d0b36ff3
"planemo upload commit 2f1af427fa4c4f2aad53ab94c4cdb51456c66019-dirty"
tduigou
parents:
diff
changeset
|
5 <requirement type="package" version="1.11">gzip</requirement> |
1
ceffb29b60c9
planemo upload commit 9c19f737cd6e2152151c8bf97a53ab1afe51a4a0
tduigou
parents:
0
diff
changeset
|
6 <requirement type="package" version="5.19.2">python-libsbml</requirement> |
12
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
7 <requirement type="package" version="2.29">requests</requirement> |
9
6a2871e89352
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 537d7fefe58984b8f7ca66010153a2fdc35ddf4b
tduigou
parents:
8
diff
changeset
|
8 <requirement type="package" version="0.1.1">taxonid</requirement> |
0
4797d0b36ff3
"planemo upload commit 2f1af427fa4c4f2aad53ab94c4cdb51456c66019-dirty"
tduigou
parents:
diff
changeset
|
9 </requirements> |
4797d0b36ff3
"planemo upload commit 2f1af427fa4c4f2aad53ab94c4cdb51456c66019-dirty"
tduigou
parents:
diff
changeset
|
10 <command detect_errors="exit_code"><![CDATA[ |
10
dc1167469d62
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
9
diff
changeset
|
11 #import re |
6
9b5947d48192
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 87a863d4074543870caef1116b8e9be58005dcdd
tduigou
parents:
5
diff
changeset
|
12 #if str($cond_src.from_src) == 'from_bigg' |
12
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
13 curl -o - 'http://bigg.ucsd.edu/static/models/${cond_src.hostid.hostid}.xml.gz' | gunzip > '$model' && |
10
dc1167469d62
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
9
diff
changeset
|
14 #else |
dc1167469d62
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
9
diff
changeset
|
15 #set model=$cond_src.input_file |
6
9b5947d48192
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 87a863d4074543870caef1116b8e9be58005dcdd
tduigou
parents:
5
diff
changeset
|
16 #end if |
4
1482291aaa5c
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 4a0b08beb8cdf51ab295a1f5f8c586d6bbaf5586
tduigou
parents:
3
diff
changeset
|
17 python '$__tool_directory__/'get_infos.py |
10
dc1167469d62
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
9
diff
changeset
|
18 '$model' |
12
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
19 --hostname-or-id '$cond_src.hostid.hostid' |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
20 --taxid '$taxid' |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
21 --comp '$compartments' |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
22 --biomass '$biomass' |
0
4797d0b36ff3
"planemo upload commit 2f1af427fa4c4f2aad53ab94c4cdb51456c66019-dirty"
tduigou
parents:
diff
changeset
|
23 ]]></command> |
4797d0b36ff3
"planemo upload commit 2f1af427fa4c4f2aad53ab94c4cdb51456c66019-dirty"
tduigou
parents:
diff
changeset
|
24 <inputs> |
6
9b5947d48192
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 87a863d4074543870caef1116b8e9be58005dcdd
tduigou
parents:
5
diff
changeset
|
25 <conditional name="cond_src"> |
9b5947d48192
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 87a863d4074543870caef1116b8e9be58005dcdd
tduigou
parents:
5
diff
changeset
|
26 <param name="from_src" type="select" label="Select source"> |
9b5947d48192
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 87a863d4074543870caef1116b8e9be58005dcdd
tduigou
parents:
5
diff
changeset
|
27 <option value="from_bigg" selected="True">Download model from BiGG</option> |
9b5947d48192
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 87a863d4074543870caef1116b8e9be58005dcdd
tduigou
parents:
5
diff
changeset
|
28 <option value="from_history">Select file from the History</option> |
9b5947d48192
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 87a863d4074543870caef1116b8e9be58005dcdd
tduigou
parents:
5
diff
changeset
|
29 </param> |
9b5947d48192
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 87a863d4074543870caef1116b8e9be58005dcdd
tduigou
parents:
5
diff
changeset
|
30 <when value="from_history"> |
9b5947d48192
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 87a863d4074543870caef1116b8e9be58005dcdd
tduigou
parents:
5
diff
changeset
|
31 <param name="input_file" type="data" format="sbml,xml" label="SBML model" help="An SBML file is expected"/> |
12
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
32 <section name="hostid" title="Model's ID" expanded="false"> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
33 <param name="hostid" type="text" label="Model's hostname or ID" help="Model extended name or ID" optional="True"/> |
10
dc1167469d62
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
9
diff
changeset
|
34 </section> |
6
9b5947d48192
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 87a863d4074543870caef1116b8e9be58005dcdd
tduigou
parents:
5
diff
changeset
|
35 </when> |
9b5947d48192
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 87a863d4074543870caef1116b8e9be58005dcdd
tduigou
parents:
5
diff
changeset
|
36 <when value="from_bigg"> |
12
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
37 <section name="hostid" title="Model's ID" expanded="true"> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
38 <param name="hostid" type="select" label="Strain"> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
39 <!-- Be careful, the text name is used for the hostname variable --> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
40 <option value="iCN718">Acinetobacter baumannii AYE (iCN718)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
41 <option value="iYO844">Bacillus subtilis subsp. subtilis str. 168 (iYO844)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
42 <option value="iRC1080">Chlamydomonas reinhardtii (iRC1080)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
43 <option value="iCN900">Clostridioides difficile 630 (iCN900)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
44 <option value="iHN637">Clostridium ljungdahlii DSM 13528 (iHN637)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
45 <option value="iCHOv1_DG44">Cricetulus griseus (iCHOv1_DG44)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
46 <option value="iCHOv1">Cricetulus griseus (iCHOv1)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
47 <option value="iAF1260b">Escherichia coli str. K-12 substr. MG1655 (iAF1260b)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
48 <option value="iAF1260">Escherichia coli str. K-12 substr. MG1655 (iAF1260)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
49 <option value="iML1515" selected="true">Escherichia coli str. K-12 substr. MG1655 (iML1515)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
50 <option value="iJO1366">Escherichia coli str. K-12 substr. MG1655 (iJO1366)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
51 <option value="iJR904">Escherichia coli str. K-12 substr. MG1655 (iJR904)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
52 <option value="e_coli_core">Escherichia coli str. K-12 substr. MG1655 (e_coli_core)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
53 <option value="iAF987">Geobacter metallireducens GS-15 (iAF987)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
54 <option value="iIT341">Helicobacter pylori 26695 (iIT341)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
55 <option value="iAT_PLT_636">Homo sapiens (iAT_PLT_636)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
56 <option value="Recon3D">Homo sapiens (Recon3D)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
57 <option value="iAB_RBC_283">Homo sapiens (iAB_RBC_283)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
58 <option value="RECON1">Homo sapiens (RECON1)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
59 <option value="iYL1228">Klebsiella pneumoniae subsp. pneumoniae MGH 78578 (iYL1228)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
60 <option value="iNF517">Lactococcus lactis subsp. cremoris MG1363 (iNF517)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
61 <option value="iAF692">Methanosarcina barkeri str. Fusaro (iAF692)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
62 <option value="iMM1415">Mus musculus (iMM1415)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
63 <option value="iNJ661">Mycobacterium tuberculosis H37Rv (iNJ661)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
64 <option value="iEK1008">Mycobacterium tuberculosis H37Rv (iEK1008)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
65 <option value="iLB1027_lipid">Phaeodactylum tricornutum CCAP 1055/1 (iLB1027_lipid)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
66 <option value="iAM_Pb448">Plasmodium berghei (iAM_Pb448)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
67 <option value="iAM_Pc455">Plasmodium cynomolgi strain B (iAM_Pc455)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
68 <option value="iAM_Pf480">Plasmodium falciparum 3D7 (iAM_Pf480)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
69 <option value="iAM_Pk459">Plasmodium knowlesi strain H (iAM_Pk459)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
70 <option value="iAM_Pv461">Plasmodium vivax Sal-1 (iAM_Pv461)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
71 <option value="iJN746">Pseudomonas putida KT2440 (iJN746)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
72 <option value="iJN1463">Pseudomonas putida KT2440 (iJN1463)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
73 <option value="iND750">Saccharomyces cerevisiae S288C (iND750)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
74 <option value="iMM904">Saccharomyces cerevisiae S288C (iMM904)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
75 <option value="STM_v1_0">Salmonella enterica subsp. enterica serovar Typhimurium str. LT2 (STM_v1_0)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
76 <option value="iYS1720">Salmonella pan-reactome (iYS1720)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
77 <option value="iSB619">Staphylococcus aureus subsp. aureus N315 (iSB619)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
78 <option value="iYS854">Staphylococcus aureus subsp. aureus USA300_TCH1516 (iYS854)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
79 <option value="iJB785">Synechococcus elongatus PCC 7942 (iJB785)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
80 <option value="iJN678">Synechocystis sp. PCC 6803 (iJN678)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
81 <option value="iSynCJ816">Synechocystis sp. PCC 6803 (iSynCJ816)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
82 <option value="iLJ478">Thermotoga maritima MSB8 (iLJ478)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
83 <option value="iIS312">Trypanosoma cruzi Dm28c (iIS312)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
84 <option value="iIS312_Trypomastigote">Trypanosoma cruzi Dm28c (iIS312_Trypomastigote)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
85 <option value="iIS312_Epimastigote">Trypanosoma cruzi Dm28c (iIS312_Epimastigote)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
86 <option value="iIS312_Amastigote">Trypanosoma cruzi Dm28c (iIS312_Amastigote)</option> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
87 </param> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
88 </section> |
6
9b5947d48192
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 87a863d4074543870caef1116b8e9be58005dcdd
tduigou
parents:
5
diff
changeset
|
89 </when> |
9b5947d48192
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 87a863d4074543870caef1116b8e9be58005dcdd
tduigou
parents:
5
diff
changeset
|
90 </conditional> |
0
4797d0b36ff3
"planemo upload commit 2f1af427fa4c4f2aad53ab94c4cdb51456c66019-dirty"
tduigou
parents:
diff
changeset
|
91 </inputs> |
4797d0b36ff3
"planemo upload commit 2f1af427fa4c4f2aad53ab94c4cdb51456c66019-dirty"
tduigou
parents:
diff
changeset
|
92 <outputs> |
12
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
93 <data name="model" format="sbml" label="${cond_src.hostid.hostid}"> |
7
8dc4d3964ab5
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 09fcdb371be214b222a2e1c540d7c6e7489ca258
tduigou
parents:
6
diff
changeset
|
94 <filter>cond_src['from_src'] == 'from_bigg'</filter> |
8dc4d3964ab5
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 09fcdb371be214b222a2e1c540d7c6e7489ca258
tduigou
parents:
6
diff
changeset
|
95 </data> |
12
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
96 <data name="taxid" format="tsv" label="${cond_src.hostid.hostid} (taxon id)" /> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
97 <data name="compartments" format="tsv" label="${cond_src.hostid.hostid} (compartments)" /> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
98 <data name="biomass" format="tsv" label="${cond_src.hostid.hostid} (biomass reactions)" /> |
0
4797d0b36ff3
"planemo upload commit 2f1af427fa4c4f2aad53ab94c4cdb51456c66019-dirty"
tduigou
parents:
diff
changeset
|
99 </outputs> |
4797d0b36ff3
"planemo upload commit 2f1af427fa4c4f2aad53ab94c4cdb51456c66019-dirty"
tduigou
parents:
diff
changeset
|
100 <tests> |
10
dc1167469d62
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
9
diff
changeset
|
101 <test expect_num_outputs="4"> |
dc1167469d62
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
9
diff
changeset
|
102 <conditional name="cond_src"> |
dc1167469d62
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
9
diff
changeset
|
103 <param name="from_src" value="from_bigg" /> |
12
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
104 <section name="hostid"> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
105 <param name="hostid" value="iML1515" /> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
106 </section> |
11
062f51695ae0
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 8ab0b9452a029b409b18b80243958b4901bdeb3d
tduigou
parents:
10
diff
changeset
|
107 </conditional> |
062f51695ae0
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 8ab0b9452a029b409b18b80243958b4901bdeb3d
tduigou
parents:
10
diff
changeset
|
108 <output name="model" md5="9bf81d20cab5476700697ded95b716d1" /> |
12
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
109 <output name="taxid" md5="6b35ad8a1c2b640af4ba738c2f5f876e" /> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
110 <output name="compartments" md5="e93a875a2d8efc10a880ae3ac0018236" /> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
111 <output name="biomass" md5="95c0255bd5dd8753c6dde53c0f2958ea" /> |
0
4797d0b36ff3
"planemo upload commit 2f1af427fa4c4f2aad53ab94c4cdb51456c66019-dirty"
tduigou
parents:
diff
changeset
|
112 </test> |
10
dc1167469d62
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
9
diff
changeset
|
113 <test expect_num_outputs="3"> |
6
9b5947d48192
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 87a863d4074543870caef1116b8e9be58005dcdd
tduigou
parents:
5
diff
changeset
|
114 <conditional name="cond_src"> |
9b5947d48192
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 87a863d4074543870caef1116b8e9be58005dcdd
tduigou
parents:
5
diff
changeset
|
115 <param name="from_src" value="from_history" /> |
12
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
116 <section name="hostid"> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
117 <param name="hostid" value="Escherichia coli str. K-12 substr. MG1655" /> |
10
dc1167469d62
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
9
diff
changeset
|
118 </section> |
12
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
119 <param name="input_file" value="e_coli_core.xml" /> |
10
dc1167469d62
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
9
diff
changeset
|
120 </conditional> |
12
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
121 <output name="taxid" md5="6b35ad8a1c2b640af4ba738c2f5f876e" /> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
122 <output name="compartments" md5="71dc18974a12e9bb75bb2c4cffd13edf" /> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
123 <output name="biomass" md5="d10baa335181450c7bffa9b4ca01754a" /> |
10
dc1167469d62
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
9
diff
changeset
|
124 </test> |
dc1167469d62
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
9
diff
changeset
|
125 <test expect_num_outputs="3"> |
dc1167469d62
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
9
diff
changeset
|
126 <conditional name="cond_src"> |
dc1167469d62
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
9
diff
changeset
|
127 <param name="from_src" value="from_history" /> |
12
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
128 <section name="hostid"> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
129 <param name="hostid" value="e_coli_core" /> |
10
dc1167469d62
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
9
diff
changeset
|
130 </section> |
12
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
131 <param name="input_file" value="e_coli_core.xml" /> |
6
9b5947d48192
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 87a863d4074543870caef1116b8e9be58005dcdd
tduigou
parents:
5
diff
changeset
|
132 </conditional> |
12
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
133 <output name="taxid" md5="6b35ad8a1c2b640af4ba738c2f5f876e" /> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
134 <output name="compartments" md5="71dc18974a12e9bb75bb2c4cffd13edf" /> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
135 <output name="biomass" md5="d10baa335181450c7bffa9b4ca01754a" /> |
10
dc1167469d62
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
9
diff
changeset
|
136 </test> |
dc1167469d62
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
9
diff
changeset
|
137 <test expect_num_outputs="3"> |
dc1167469d62
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
9
diff
changeset
|
138 <conditional name="cond_src"> |
dc1167469d62
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
9
diff
changeset
|
139 <param name="from_src" value="from_history" /> |
12
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
140 <section name="hostid"> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
141 <param name="hostid" value="iMM1415" /> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
142 </section> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
143 <param name="input_file" value="e_coli_core.xml" /> |
11
062f51695ae0
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 8ab0b9452a029b409b18b80243958b4901bdeb3d
tduigou
parents:
10
diff
changeset
|
144 </conditional> |
12
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
145 <output name="taxid" md5="9c5ebe6ee91a632cbfb244435db7ce7e" /> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
146 <output name="compartments" md5="71dc18974a12e9bb75bb2c4cffd13edf" /> |
1aadcfdae10b
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
11
diff
changeset
|
147 <output name="biomass" md5="d10baa335181450c7bffa9b4ca01754a" /> |
10
dc1167469d62
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 94f89a44e330ccfccc8d94b5e7acf583c9d39343
tduigou
parents:
9
diff
changeset
|
148 </test> |
0
4797d0b36ff3
"planemo upload commit 2f1af427fa4c4f2aad53ab94c4cdb51456c66019-dirty"
tduigou
parents:
diff
changeset
|
149 </tests> |
4797d0b36ff3
"planemo upload commit 2f1af427fa4c4f2aad53ab94c4cdb51456c66019-dirty"
tduigou
parents:
diff
changeset
|
150 <help><![CDATA[ |
4797d0b36ff3
"planemo upload commit 2f1af427fa4c4f2aad53ab94c4cdb51456c66019-dirty"
tduigou
parents:
diff
changeset
|
151 Pick SBML Model |
4797d0b36ff3
"planemo upload commit 2f1af427fa4c4f2aad53ab94c4cdb51456c66019-dirty"
tduigou
parents:
diff
changeset
|
152 ================= |
4797d0b36ff3
"planemo upload commit 2f1af427fa4c4f2aad53ab94c4cdb51456c66019-dirty"
tduigou
parents:
diff
changeset
|
153 |
6
9b5947d48192
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 87a863d4074543870caef1116b8e9be58005dcdd
tduigou
parents:
5
diff
changeset
|
154 Download the selected SBML model fromg BiGG database or get statistics from local SBML model. |
0
4797d0b36ff3
"planemo upload commit 2f1af427fa4c4f2aad53ab94c4cdb51456c66019-dirty"
tduigou
parents:
diff
changeset
|
155 ]]></help> |
1
ceffb29b60c9
planemo upload commit 9c19f737cd6e2152151c8bf97a53ab1afe51a4a0
tduigou
parents:
0
diff
changeset
|
156 <creator> |
ceffb29b60c9
planemo upload commit 9c19f737cd6e2152151c8bf97a53ab1afe51a4a0
tduigou
parents:
0
diff
changeset
|
157 <organization name="BioRetroSynth" url="https://github.com/brsynth"/> |
ceffb29b60c9
planemo upload commit 9c19f737cd6e2152151c8bf97a53ab1afe51a4a0
tduigou
parents:
0
diff
changeset
|
158 </creator> |
2
fa893f77dc22
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 18fcec17fb6415ad5a59b9bcfa853e755c768e6f
tduigou
parents:
1
diff
changeset
|
159 <citations> |
fa893f77dc22
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 18fcec17fb6415ad5a59b9bcfa853e755c768e6f
tduigou
parents:
1
diff
changeset
|
160 <citation type="bibtex"> |
fa893f77dc22
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 18fcec17fb6415ad5a59b9bcfa853e755c768e6f
tduigou
parents:
1
diff
changeset
|
161 @unpublished{get_sbml_model |
fa893f77dc22
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 18fcec17fb6415ad5a59b9bcfa853e755c768e6f
tduigou
parents:
1
diff
changeset
|
162 author = {Joan Hérisson}, |
fa893f77dc22
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 18fcec17fb6415ad5a59b9bcfa853e755c768e6f
tduigou
parents:
1
diff
changeset
|
163 title = {{get_sbml_model}}, |
fa893f77dc22
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 18fcec17fb6415ad5a59b9bcfa853e755c768e6f
tduigou
parents:
1
diff
changeset
|
164 url = {https://github.com/brsynth/}, |
fa893f77dc22
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 18fcec17fb6415ad5a59b9bcfa853e755c768e6f
tduigou
parents:
1
diff
changeset
|
165 } |
fa893f77dc22
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 18fcec17fb6415ad5a59b9bcfa853e755c768e6f
tduigou
parents:
1
diff
changeset
|
166 </citation> |
fa893f77dc22
planemo upload for repository https://github.com/brsynth/synbiocad-galaxy-wrappers commit 18fcec17fb6415ad5a59b9bcfa853e755c768e6f
tduigou
parents:
1
diff
changeset
|
167 </citations> |
1
ceffb29b60c9
planemo upload commit 9c19f737cd6e2152151c8bf97a53ab1afe51a4a0
tduigou
parents:
0
diff
changeset
|
168 </tool> |