From c2e1f45a14746299fda892be3e1a6567e491edcf Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Mon, 4 Nov 2024 10:48:53 +0000 Subject: [PATCH 01/22] draft adding list of cases to command line options --- test_suite/README.md | 6 ++++++ test_suite/process_test_suite.py | 12 +++++++++++- ...test_test_suite_compatibility_biosimulators.py | 15 +++++++++++++-- 3 files changed, 30 insertions(+), 3 deletions(-) diff --git a/test_suite/README.md b/test_suite/README.md index 2c26a5e6..6526fd78 100644 --- a/test_suite/README.md +++ b/test_suite/README.md @@ -47,6 +47,12 @@ The `process_test_suite.py` script provides various command-line options to cust **Usage:** `--limit ` **Default:** `0` (no limit) + `--cases` + **Description:** list specific cases to process + **Usage:** `--cases ` + **Default:** `[]` (no limit) + + - `--suite-path` **Description:** Specifies the path to the directory containing the test suite files. **Usage:** `--suite-path ` diff --git a/test_suite/process_test_suite.py b/test_suite/process_test_suite.py index 1a2862c6..0d3ca223 100755 --- a/test_suite/process_test_suite.py +++ b/test_suite/process_test_suite.py @@ -45,6 +45,14 @@ def parse_arguments(): help="Limit to the first n test cases, 0 means no limit", ) + parser.add_argument( + "--cases", + action="store", + type=list, + default=[], + help="Limit to the cases listed in the file. Empty list means no limit", + ) + parser.add_argument( "--suite-path", action="store", @@ -116,7 +124,9 @@ def process_cases(args): matplotlib.use("agg") # Suppress specific UserWarning caused by matplotlib (required to suppress interactive plots) warnings.filterwarnings("ignore", category=UserWarning, message="FigureCanvasAgg is non-interactive, and thus cannot be shown") - subfolders = os.listdir(suite_path_abs) if args.limit == 0 else os.listdir(suite_path_abs)[:args.limit] + subfolders = os.listdir(suite_path_abs) if args.limit == 0 else os.listdir(suite_path_abs)[:args.limit] + # do same for cases + subfolders = os.listdir(suite_path_abs) if args.cases == [] else os.listdir(suite_path_abs)cases for subfolder in subfolders: # if sbml_level_version is empty string (default), find the highest level and version in the folder diff --git a/test_suite/test_test_suite_compatibility_biosimulators.py b/test_suite/test_test_suite_compatibility_biosimulators.py index 1a1a590a..f7161680 100644 --- a/test_suite/test_test_suite_compatibility_biosimulators.py +++ b/test_suite/test_test_suite_compatibility_biosimulators.py @@ -15,7 +15,7 @@ import shutil sys.path.append("..") import utils -engines = utils.engines +engines = utils.ENGINES md_description = \ @@ -44,6 +44,14 @@ def parse_arguments(): help="Limit to the first n test cases, 0 means no limit", ) + parser.add_argument( + "--cases", + action="store", + type=list, + default=[], + help="Limit to the cases listed in the file. Empty list means no limit", + ) + parser.add_argument( "--suite-path", action="store", @@ -94,6 +102,7 @@ def process_cases(args): suite_path_abs = os.getcwd() # absolute path to test suite subfolders = os.listdir(suite_path_abs) if args.limit == 0 else os.listdir(suite_path_abs)[:args.limit] + # subfolders = os.listdir(suite_path_abs) if args.cases == [] else os.listdir(suite_path_abs)[args.cases] print(f"Processing {len(subfolders)} subfolders in {args.suite_path}") test_folder = 'tests' @@ -129,12 +138,14 @@ def process_cases(args): os.chdir(new_directory) print(f"Changed to {new_directory}") + + engines_list = list(engines.keys()) utils.run_biosimulators_remotely_and_locally(os.path.basename(sedml_file_path), os.path.basename(sbml_file_path), os.path.join(test_folder,'d1_plots_remote'), os.path.join(test_folder,'d1_plots_local'), - engines=engines, test_folder=test_folder) + test_folder=test_folder) if __name__ == "__main__": From cce679c21842f2e3425fdd54ce5f79c824d39557 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Mon, 4 Nov 2024 12:15:49 +0000 Subject: [PATCH 02/22] update test suite 00001 table and draft for 01186 table --- .../tests/d1_plots_local/amici_plot_1.pdf | Bin 9578 -> 9578 bytes .../tests/d1_plots_local/bionetgen_plot_1.pdf | Bin 5948 -> 5948 bytes .../tests/d1_plots_local/boolnet_plot_1.pdf | Bin 5948 -> 5948 bytes .../tests/d1_plots_local/cbmpy_plot_1.pdf | Bin 5948 -> 5948 bytes .../tests/d1_plots_local/cobrapy_plot_1.pdf | Bin 5948 -> 5948 bytes .../tests/d1_plots_local/copasi_plot_1.pdf | Bin 5948 -> 9591 bytes .../tests/d1_plots_local/gillespy2_plot_1.pdf | Bin 9592 -> 9592 bytes .../tests/d1_plots_local/ginsim_plot_1.pdf | Bin 5948 -> 5948 bytes .../d1_plots_local/libsbmlsim_plot_1.pdf | Bin 9597 -> 9597 bytes .../tests/d1_plots_local/masspy_plot_1.pdf | Bin 5948 -> 5948 bytes .../tests/d1_plots_local/pysces_plot_1.pdf | Bin 9590 -> 9590 bytes .../tests/d1_plots_local/rbapy_plot_1.pdf | Bin 5948 -> 5948 bytes .../tests/d1_plots_local/tellurium_plot_1.pdf | Bin 9580 -> 9575 bytes .../tests/d1_plots_remote/amici_plot_1.pdf | Bin 9584 -> 9584 bytes .../d1_plots_remote/bionetgen_plot_1.pdf | Bin 5954 -> 5954 bytes .../tests/d1_plots_remote/boolnet_plot_1.pdf | Bin 5954 -> 5954 bytes .../tests/d1_plots_remote/cbmpy_plot_1.pdf | Bin 5954 -> 5954 bytes .../tests/d1_plots_remote/cobrapy_plot_1.pdf | Bin 5954 -> 5954 bytes .../tests/d1_plots_remote/copasi_plot_1.pdf | Bin 5954 -> 9597 bytes .../d1_plots_remote/gillespy2_plot_1.pdf | Bin 9598 -> 9598 bytes .../tests/d1_plots_remote/ginsim_plot_1.pdf | Bin 5954 -> 5954 bytes .../d1_plots_remote/libsbmlsim_plot_1.pdf | Bin 9603 -> 9603 bytes .../tests/d1_plots_remote/masspy_plot_1.pdf | Bin 5954 -> 5954 bytes .../tests/d1_plots_remote/pysces_plot_1.pdf | Bin 9596 -> 9596 bytes .../tests/d1_plots_remote/rbapy_plot_1.pdf | Bin 5954 -> 5954 bytes .../d1_plots_remote/tellurium_plot_1.pdf | Bin 9586 -> 9586 bytes .../results_compatibility_biosimulators.md | 46 +- .../test_00001/tests/results_local.json | 1277 ++++++++++++++++ .../test_00001/tests/results_remote.json | 1326 +++++++++++++++++ .../results_compatibility_biosimulators.md | 75 + .../test_01186/tests/results_local.json | 307 ++++ .../test_01186/tests/results_remote.json | 356 +++++ ..._test_suite_compatibility_biosimulators.py | 14 +- utils/__init__.py | 10 + 34 files changed, 3382 insertions(+), 29 deletions(-) create mode 100644 test_suite/test_00001/tests/results_local.json create mode 100644 test_suite/test_00001/tests/results_remote.json create mode 100644 test_suite/test_01186/tests/results_compatibility_biosimulators.md create mode 100644 test_suite/test_01186/tests/results_local.json create mode 100644 test_suite/test_01186/tests/results_remote.json diff --git a/test_suite/test_00001/tests/d1_plots_local/amici_plot_1.pdf b/test_suite/test_00001/tests/d1_plots_local/amici_plot_1.pdf index b1fe80088d06bfcd3121a6f34801b7b5cfda8055..6286fbe181f929c9d9703e0022f1aff46e0ca9ec 100644 GIT binary patch delta 23 ecmaFm^~!5QffARYp@E5^p{a#|#pWud4@>}PqX+W< delta 23 ecmaFm^~!5QffAR2g^`7Uxsi#9(dH_p4@>}QE(iMn diff --git a/test_suite/test_00001/tests/d1_plots_local/bionetgen_plot_1.pdf b/test_suite/test_00001/tests/d1_plots_local/bionetgen_plot_1.pdf index 0e5ec46b80c76874fe9b0d784f5311f9c898fdeb..180319c4a6d4694d0ce7e24e2f00970478243070 100644 GIT binary patch delta 23 ecmdm^w?}V7vp@E5^p{a$T>E=|C>r4Py00#a5 delta 23 ecmdm^w?}V7vr4PyqX!BA diff --git a/test_suite/test_00001/tests/d1_plots_local/boolnet_plot_1.pdf b/test_suite/test_00001/tests/d1_plots_local/boolnet_plot_1.pdf index 05041f0f7c052cd5572bb4b225c94928b6a86c9a..0b48027c8ceaba888b654fb2a690c02aa92dd370 100644 GIT binary patch delta 23 ecmdm^w?}V7vp@E5^p{a$T<>pk8>r4Py7zY9X delta 23 ecmdm^w?}V7vr4Pyb_W9h diff --git a/test_suite/test_00001/tests/d1_plots_local/cbmpy_plot_1.pdf b/test_suite/test_00001/tests/d1_plots_local/cbmpy_plot_1.pdf index a33c90358f7fcf20ce98da3a7d852175fbef8c88..2a4f88c9e15efd1e78691826766773bdce3fe5ae 100644 GIT binary patch delta 23 ecmdm^w?}V7vp@E5^p{a$D@#a*K>r4Px`v(00 delta 23 ecmdm^w?}V7vr4Pyngp@E5^p{a$D#pYCz>r4Py83zIY delta 23 ecmdm^w?}V7vr4Pyg9ilw diff --git a/test_suite/test_00001/tests/d1_plots_local/copasi_plot_1.pdf b/test_suite/test_00001/tests/d1_plots_local/copasi_plot_1.pdf index 9e60e1cc2599367062a5b4110aa61f12c90cc448..a082d1c1bd67b6de9e51f530532089d243ddd40d 100644 GIT binary patch delta 4752 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 delta 1417 zcmezFwMTD57i0a@-Fec60TBX0gt6Oym(e~@VM-se=}A; ze3MF2Xu(0r3EwB&v3~OC^5OmVv)l7mFa2NfTr7A?W#NR51V7>P3zrQALVo=R`AAO ztq8b%%PS}J*xmA5vCn${323&&-PO(2uKs>~-;4YUY1xe{43|HMbeL)Rvee%*7cM@%QI6tf>0O`X9YeD2sM&1r&;rv5i( zWh8Jni_Pu5YJ9_G!gBd-vxTN_te0WsdV2FlMVF}PgQ5@dKs{k94I1ZH3u-yPxCF88uKLumrf{-nmRWbuI{gO5s5i4)wM%+#Ur?G*96#mt z+xyOz3L-pT^RMmTO!ajryBw4MZ}IH%l7PJ((PEosd$in=v)WjvUU<2)u+2m9R!-O4 z#K~Kx*2%ouuwOQA)jwa0x|8Sj@?5Tarx*77;f!yuL)otcTQ7h3k9peWN`cAeIHZ|P z%q=Is^--xU4Ga8 z#Bb@#lc#d+-8_ZoAmijl9^uKW_$N;e3D1yeHx{nX6#j1mP43kCfM1^vj) zjM5UU^$`k&<_ZQ1K|lcoLkkECqR!9~!UG#)WB}ph=cOtb8G_hc`UR;)nfWOSMn(`R zkS#{W5Ozs1vaC(l*VuQxRW`2_?N@)Wqh38BW@=yxbS$bmQv-7>>MVgFhpNuN zzzn2!vbVA#i-Dzq#pD8Im3jjUV34CJG&VQJ6f-pjhAgUq#)hUC>VWAFL!E)85r#TL zpbLQJ)dNjLgo2@w35I4va|2*pqgrfeVU7_BMh3p@E5^p{a$5;pSA4>r4Px{RaI2 delta 23 ecmdm^w?}V7vpk8>r4Pyx(5yb diff --git a/test_suite/test_00001/tests/d1_plots_local/libsbmlsim_plot_1.pdf b/test_suite/test_00001/tests/d1_plots_local/libsbmlsim_plot_1.pdf index e972febebb87ac6b8db4b7a56efbba859225cf0e..2ca069efd226ea6ab8e9f1b895014687ae9f188e 100644 GIT binary patch delta 23 ecmezC_19~IiV~Nhp@E5^p{a$5>1I78e`Ww=Cp@E5^p{a$b;pSA4>r4Py1P1;9 delta 23 ecmdm^w?}V7vr4Pyk_QI> diff --git a/test_suite/test_00001/tests/d1_plots_local/pysces_plot_1.pdf b/test_suite/test_00001/tests/d1_plots_local/pysces_plot_1.pdf index e0af79f6ec71415b1b0fc4a03a3453f4359a7f63..546910a87777aad8e9077ca1fa687c2a181487f6 100644 GIT binary patch delta 57 zcmez7_04O8f)cZ(p3!7wC3_Vht*M~zT$Gwvl9`|9l30?epy6U=WME`sXlMY$rj`a4 Ko7ro00G|-= diff --git a/test_suite/test_00001/tests/d1_plots_local/rbapy_plot_1.pdf b/test_suite/test_00001/tests/d1_plots_local/rbapy_plot_1.pdf index 5260a2aad30e39c107eb4294db5035792efb6ea0..f33e96c63f979fd7bf0f7015fc1e5a1130bd8f3b 100644 GIT binary patch delta 23 ecmdm^w?}V7vp@E5^p{b>z(dJZ<>r4Px_6Ga_ delta 23 ecmdm^w?}V7vr4Pyt_KVN diff --git a/test_suite/test_00001/tests/d1_plots_local/tellurium_plot_1.pdf b/test_suite/test_00001/tests/d1_plots_local/tellurium_plot_1.pdf index accc88ddcd8451d813099388fa04c9b624b88961..00b1e4dc607b12d2058b748b04ef212245a5190f 100644 GIT binary patch delta 2415 zcmZWlc{CLM9!)~_eP0@8Mj?zbGiG9F?2(a#WD14sBH5W^tl1eMX_BP|2l2CveJo{3 zw(J@qV?wsjqoU`%^Zt3w=bZ03pL0L=^Znd=znL-2-Xyc&&C}-)0`2Q|U#I1|o^zlK z)d>6*s=HV z;(lObrJSy%4xY-OUESq~Xdl$k>t)akZ${?VT9s3NhET?ESq5OnEbI*jes6n(1?ka_1~orM{Ap;3{L{NP_ggkn?~m^1 zj=ZSm7k99<_{T5DEOuIy&ego1wKrF`aj1d^%@>l+;VZ<)TvT&$h<#v?eVf2y3of~F zIy5E>RXpzr?K~>}$9vJ^Gu@)-Kek`c z$1r5^c8nCiD_lZ4_ss|5s)Mf<9W)iznq99jd6F;ze{#p#zuk!b^zMeTr1!n7^h@dQ zz098acO0nR8W!m<60Iq(C{CELd2TOk(`NMg_SmZGONw1-0^O!Et#&*pc`^)B0XgsE zB`KRbRmT;oypf~7WF7}Pn@fjNdrwHSBgjVlxR7Hx7(`ydx(W;B+Qx#}+{UxAbb1-RCNc%d#U?9TRH!#X-DKDH4H?H3YsYA}=}J;I~nYc9kJyQ2d}w6xDZZp&m8Yl1aYB%aDyPj2DydQ?Kd{-eXht%zQ~Ud4{(Fe|UT= zp?1%TH_Bwxu8Tb5d`8!Sk}74JA~d#mU14((K}b|a=XrlccJdx4bEpveL|GC+HQ%BCa-Qf8SPx>>tN|_EzeZPOq=g+OMAq_a>*F5srQcb zQJ!Ea8yo+mj(9STfMV^&9~y2hBAq-3&^5{u^95c02T9p=n_OXPnI1?!2@p-iFE5d5 z%~tP*xt`yt*%bE~<4Ewl?UamO47LJ^b^8}m6jfbg{yHiIFG-kWYPEWVPysZ|BhCkBSdHizYM zsy^&lU#0){$?olZ$h$u=qSg7({kJhdY&tlVF}dhbjEd+lpHCpC(y88OJ64SYFgKi} zS6OJLX`|8;5A1a1n`DZC{#ze1movC94yvhoSu(Ga9OjhzZFqf+bg`y z=T`)M>xF9#$fFls1^;<-`y9`RPa6kEbIga)F8^4U)P?$={1v1 zv>e&9htTTKyPUHe7FOX69BbU4wq@obr6~Nd*#xOT%P1BHfu@Za^;SSh^$h9w^e|b9 zw(E$e$_4)+Wd6)D-Er1wcz;S~J-%C&;ra1DQF?;r;Gh;M|H*|WYZP5z+wW6HdC^)6-ClgdX8{{tO>UXfx z-HUDy)AsyS6rfwhzq7V6voqnK2ed*vhQjjH^`x$nH3eqMmE=s{%f|rzXdaB6W<0=T zbL|J{j`uBEENqItUlER-3t-S0B~vYpUb%{d!=Hwb=7eI^@W^Ev*Vc3C1;5=7XRY1a zHfJ|ke$e;y0GdugM0svu9w-0;@Vo2DrGbQL{j+oyCdq;#iYs71C^e`OK;0m~)j80^ z&)3j7&=qjO@DdaPg=uI&P97Wu)gVSFnCL>`0LXs|;0xgTZv#PUB9TlO3<_bw;0P#@ z1t=`4$uvPgU_>S0rPEqkL|34q8yxXBLrX)G=`I2VWx9)iYiRwwi_~D&2Zf@vh&w=G zw8r0TC=zj!(f>QtJV}cQL%^X#3`iKwG=XWrn7qTF%s;>o8gODJNEpw|MxvN9f}aTc nTLT=1V$upnL70;|vHSNf5`p|5j|c=`=F~)Rfx$+W#$5jf)u0)O delta 2490 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 C*&zr3 diff --git a/test_suite/test_00001/tests/d1_plots_remote/amici_plot_1.pdf b/test_suite/test_00001/tests/d1_plots_remote/amici_plot_1.pdf index 9d284421a7b321adbe958719921383ba205095ce..86d62b0103c7c5f2dec2019afa1d99835430b8fa 100644 GIT binary patch delta 23 ecmez1^}%aHffARYp@E5knW?#f`Q|F6Z%hDb&q{<`j{8OaN3I2HyYx delta 22 dcmX@4cSvtTvp@E5knW>qn(dJZ diff --git a/test_suite/test_00001/tests/d1_plots_remote/cbmpy_plot_1.pdf b/test_suite/test_00001/tests/d1_plots_remote/cbmpy_plot_1.pdf index eda415e699b60b7f384ab5d1bcedf168026fc281..360b1d7ec863633b938b32ff5a6bfb370ff9a78e 100644 GIT binary patch delta 23 ecmX@4cSvtTvp@E5knW>qn>E=|CyG#IDM+X)F delta 23 ecmX@4cSvtTvp@E5knW>qn>E=|CyG#IDM+X)F delta 23 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 diff --git a/test_suite/test_00001/tests/d1_plots_remote/ginsim_plot_1.pdf b/test_suite/test_00001/tests/d1_plots_remote/ginsim_plot_1.pdf index ea42f00d16ed7171c6c64f0f085c1afebda86544..d9599c8e00c3c7d32777f7f1fd43218569a12070 100644 GIT binary patch delta 22 dcmX@4cSvtTvI=yjf2vlop|4!ws`Z2hjV1@nM0@EK&{LVUz%Q}JAytm6oW6RlF3(73H>j&U zIRzYl$o=kJ>Uy}$6)Kk$(Y-qK#1lZbaBx^KFU4X1##Hb?XLq&>U4xj~@+(3hlqd-jGi`@ zfHsfX6i|sU(()THH>Xpt?pOEpf(XlXb{5e5AzQ34!YJfBmlk}Ffz{cs6UJ!Zfh~{v z>3gGsDos*%y#`Dx2yLxZ_h^m5jJnX3Fiio(8b#0ZSqP?~NT?(fs3!nNo%x`a(e%?F z7T#$Ts8K zt(=`RIY~e07i)B$p6hd#yp@E5knW?#<>E=|CyG#IDGY1m@ delta 23 ecmX@4cSvtTvZ%hDctq2qV diff --git a/test_suite/test_00001/tests/results_compatibility_biosimulators.md b/test_suite/test_00001/tests/results_compatibility_biosimulators.md index 1fd797f1..d36280a6 100644 --- a/test_suite/test_00001/tests/results_compatibility_biosimulators.md +++ b/test_suite/test_00001/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ -| | Engine | pass / FAIL (R) | pass / FAIL (L) | Compat (R) | Compat (L) | Type (R) | Error (R) | Error (L) | d1 (R) | d1 (L) | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------|:--------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| pass | pass |
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with amici. ['SBML', 'SED-ML'] are compatible with amici
|
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with amici. ['SBML', 'SED-ML'] are compatible with amici
| | | | plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| FAIL | FAIL |
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
CAEECombineArchiveExecutionError
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).
|
Details```Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
| plot | plot | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| FAIL | FAIL |
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
CAEECombineArchiveExecutionError
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).
|
Details```Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
| plot | plot | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| FAIL | FAIL |
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML', 'SBML', 'SED-ML'] are compatible with brian2
|
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML', 'SBML', 'SED-ML'] are compatible with brian2
|
MNFEModuleNotFoundError
|
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| FAIL | FAIL |
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cbmpy. ['SBML', 'SED-ML'] are compatible with cbmpy
|
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cbmpy. ['SBML', 'SED-ML'] are compatible with cbmpy
|
CAEECombineArchiveExecutionError
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
Details```Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
| plot | plot | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| FAIL | FAIL |
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cobrapy. ['SBML', 'SED-ML'] are compatible with cobrapy
|
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cobrapy. ['SBML', 'SED-ML'] are compatible with cobrapy
|
CAEECombineArchiveExecutionError
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
Details```Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| pass | pass |
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with copasi. ['SBML', 'SED-ML'] are compatible with copasi
|
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with copasi. ['SBML', 'SED-ML'] are compatible with copasi
| | | | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| pass | pass |
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with gillespy2. ['SBML', 'SED-ML'] are compatible with gillespy2
|
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with gillespy2. ['SBML', 'SED-ML'] are compatible with gillespy2
| | | | plot | plot | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| FAIL | FAIL |
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
CAEECombineArchiveExecutionError
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:
Output start time: 0.0
Output end time: 5.0
Number of steps: 50
|
Details```Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| pass | pass |
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with libsbmlsim. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with libsbmlsim. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| | | | plot | plot | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| FAIL | FAIL |
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with masspy. ['SBML', 'SED-ML'] are compatible with masspy
|
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with masspy. ['SBML', 'SED-ML'] are compatible with masspy
|
CAEECombineArchiveExecutionError
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .
|
Details```Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
| plot | plot | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| FAIL | FAIL |
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with netpyne. ['SBML', 'SED-ML'] are compatible with netpyne
|
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with netpyne. ['SBML', 'SED-ML'] are compatible with netpyne
|
MNFEModuleNotFoundError
|
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| FAIL | FAIL |
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
MNFEModuleNotFoundError
|
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| FAIL | FAIL |
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
MNFEModuleNotFoundError
|
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| FAIL | FAIL |
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
MNFEModuleNotFoundError
|
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| pass | pass |
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with pysces. ['SBML', 'SED-ML'] are compatible with pysces
|
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with pysces. ['SBML', 'SED-ML'] are compatible with pysces
| | | | plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| FAIL | FAIL |
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
CAEECombineArchiveExecutionError
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).
|
Details```Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
| plot | plot | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| FAIL | FAIL |
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with smoldyn. [] are compatible with smoldyn
|
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with smoldyn. [] are compatible with smoldyn
|
MNFEModuleNotFoundError
|
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| pass | pass |
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with tellurium. ['SBML', 'SED-ML'] are compatible with tellurium
|
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with tellurium. ['SBML', 'SED-ML'] are compatible with tellurium
| | | | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
| None | FAIL |
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with vcell. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with vcell. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| | |
Details```Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| FAIL | FAIL |
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
unsureThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
MNFEModuleNotFoundError
|
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
| | | \ No newline at end of file +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------|:--------------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with amici. ['SBML', 'SED-ML'] are compatible with amici
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cbmpy. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cobrapy. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with copasi. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with gillespy2. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:
Output start time: 0.0
Output end time: 5.0
Number of steps: 50

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:
Output start time: 0.0
Output end time: 5.0
Number of steps: 50

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with libsbmlsim. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with masspy. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']
- /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']

Only following targets are supported:
- M_S1
- M_S2
- R_reaction1
- S1
- S2
- k1
- reaction1

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with pysces. ['SBML', 'SED-ML'] are compatible with pysces
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with tellurium. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with vcell. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file diff --git a/test_suite/test_00001/tests/results_local.json b/test_suite/test_00001/tests/results_local.json new file mode 100644 index 00000000..b4e8981e --- /dev/null +++ b/test_suite/test_00001/tests/results_local.json @@ -0,0 +1,1277 @@ +{ + "amici": { + "exception_message": "", + "log_yml": { + "duration": 14.945897, + "exception": null, + "output": "", + "sedDocuments": [ + { + "duration": 14.477085, + "exception": null, + "location": "tmp383126", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp383126:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp383126 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "c_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.301881, + "exception": null, + "id": "plot_1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SUCCEEDED" + }, + { + "id": "ds_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "ds_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.070628, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000496", + "duration": 14.026971, + "exception": null, + "id": "task_1", + "output": "", + "simulatorDetails": [ + { + "key": "solver", + "value": "amici.amici.CVodeSolver" + }, + { + "key": "method", + "value": "amici.swig_wrappers.runAmiciSimulation" + }, + { + "key": "arguments", + "value": {} + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + }, + "detailed_error_log": {} + }, + "brian2": { + "exception_message": "Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1", + "log_yml": { + "duration": 0.124591, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "bionetgen": { + "exception_message": "Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1", + "log_yml": { + "duration": 0.652344, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `model_1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", + "type": "CombineArchiveExecutionError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` has warnings.\r\n - The model file `00001-sbml-l3v2.xml` has warnings.\r\n - 1 warning of type SBML unit consistency (99507). The following is the first warning at line 3, column 2:\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions.\r\n - 1 warning of type SBML unit consistency (99508). The following is the first warning at line 29, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20702). The following is the first warning at line 29, column 6:\r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n - 1 warning of type SBML unit consistency (99505). The following is the first warning at line 39, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type Modeling practice (80701). The following is the first warning at line 29, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp76442` has warnings.\r\n - Model `model_1` has warnings.\r\n - The model file `00001-sbml-l3v2.xml` has warnings.\r\n - 1 warning of type SBML unit consistency (99507). The following is the first warning at line 3, column 2:\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions.\r\n - 1 warning of type SBML unit consistency (99508). The following is the first warning at line 29, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20702). The following is the first warning at line 29, column 6:\r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n - 1 warning of type SBML unit consistency (99505). The following is the first warning at line 39, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type Modeling practice (80701). The following is the first warning at line 29, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 0.426688, + "exception": { + "message": "The SED document did not execute successfully:\n\n Language for model `model_1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", + "type": "SedmlExecutionError" + }, + "location": "tmp76442", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp76442:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp76442 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SKIPPED" + }, + { + "id": "c_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.248525, + "exception": null, + "id": "plot_1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SKIPPED" + }, + { + "id": "ds_S1_1", + "status": "SKIPPED" + }, + { + "id": "ds_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.055996, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.026353, + "exception": { + "message": "Language for model `model_1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", + "type": "ValueError" + }, + "id": "task_1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "boolnet": { + "exception_message": "Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1", + "log_yml": { + "duration": 0.649471, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `simulation_1` is invalid.\n - Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).", + "type": "CombineArchiveExecutionError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` may be invalid.\r\n - The model file `00001-sbml-l3v2.xml` may be invalid.\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions. \r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp493084` may be invalid.\r\n - Model `model_1` may be invalid.\r\n - The model file `00001-sbml-l3v2.xml` may be invalid.\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions. \r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 0.39038, + "exception": { + "message": "The SED document did not execute successfully:\n\n Simulation `simulation_1` is invalid.\n - Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).", + "type": "SedmlExecutionError" + }, + "location": "tmp493084", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp493084:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp493084 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SKIPPED" + }, + { + "id": "c_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.226278, + "exception": null, + "id": "plot_1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SKIPPED" + }, + { + "id": "ds_S1_1", + "status": "SKIPPED" + }, + { + "id": "ds_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.061712, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.026888, + "exception": { + "message": "Simulation `simulation_1` is invalid.\n - Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).", + "type": "ValueError" + }, + "id": "task_1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "cbmpy": { + "exception_message": "Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1", + "log_yml": { + "duration": 0.875066, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `simulation_1` is not supported.\n - Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "CombineArchiveExecutionError" + }, + "output": "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` has warnings.\r\n - The model file `00001-sbml-l3v2.xml` has warnings.\r\n - 1 warning of type SBML unit consistency (99507). The following is the first warning at line 3, column 2:\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions.\r\n - 1 warning of type SBML unit consistency (99508). The following is the first warning at line 29, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20702). The following is the first warning at line 29, column 6:\r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n - 1 warning of type SBML unit consistency (99505). The following is the first warning at line 39, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type Modeling practice (80701). The following is the first warning at line 29, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp734844` has warnings.\r\n - Model `model_1` has warnings.\r\n - The model file `00001-sbml-l3v2.xml` has warnings.\r\n - 1 warning of type SBML unit consistency (99507). The following is the first warning at line 3, column 2:\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions.\r\n - 1 warning of type SBML unit consistency (99508). The following is the first warning at line 29, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20702). The following is the first warning at line 29, column 6:\r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n - 1 warning of type SBML unit consistency (99505). The following is the first warning at line 39, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type Modeling practice (80701). The following is the first warning at line 29, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 0.376968, + "exception": { + "message": "The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `simulation_1` is not supported.\n - Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "SedmlExecutionError" + }, + "location": "tmp734844", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp734844:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp734844 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SKIPPED" + }, + { + "id": "c_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.214746, + "exception": null, + "id": "plot_1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SKIPPED" + }, + { + "id": "ds_S1_1", + "status": "SKIPPED" + }, + { + "id": "ds_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.060416, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.025588, + "exception": { + "message": "UniformTimeCourseSimulation `simulation_1` is not supported.\n - Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "ValueError" + }, + "id": "task_1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "cobrapy": { + "exception_message": "Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1", + "log_yml": { + "duration": 0.994398, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `simulation_1` is not supported.\n - Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "CombineArchiveExecutionError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` has warnings.\r\n - The model file `00001-sbml-l3v2.xml` has warnings.\r\n - 1 warning of type SBML unit consistency (99507). The following is the first warning at line 3, column 2:\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions.\r\n - 1 warning of type SBML unit consistency (99508). The following is the first warning at line 29, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20702). The following is the first warning at line 29, column 6:\r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n - 1 warning of type SBML unit consistency (99505). The following is the first warning at line 39, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type Modeling practice (80701). The following is the first warning at line 29, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp259661` has warnings.\r\n - Model `model_1` has warnings.\r\n - The model file `00001-sbml-l3v2.xml` has warnings.\r\n - 1 warning of type SBML unit consistency (99507). The following is the first warning at line 3, column 2:\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions.\r\n - 1 warning of type SBML unit consistency (99508). The following is the first warning at line 29, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20702). The following is the first warning at line 29, column 6:\r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n - 1 warning of type SBML unit consistency (99505). The following is the first warning at line 39, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type Modeling practice (80701). The following is the first warning at line 29, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 0.68093, + "exception": { + "message": "The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `simulation_1` is not supported.\n - Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "SedmlExecutionError" + }, + "location": "tmp259661", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp259661:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp259661 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SKIPPED" + }, + { + "id": "c_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.341102, + "exception": null, + "id": "plot_1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SKIPPED" + }, + { + "id": "ds_S1_1", + "status": "SKIPPED" + }, + { + "id": "ds_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.060286, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.038447, + "exception": { + "message": "UniformTimeCourseSimulation `simulation_1` is not supported.\n - Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "ValueError" + }, + "id": "task_1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "copasi": { + "exception_message": "", + "log_yml": { + "duration": 1.195088, + "exception": null, + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` has warnings.\r\n - The model file `00001-sbml-l3v2.xml` has warnings.\r\n - 1 warning of type SBML unit consistency (99507). The following is the first warning at line 3, column 2:\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions.\r\n - 1 warning of type SBML unit consistency (99508). The following is the first warning at line 29, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20702). The following is the first warning at line 29, column 6:\r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n - 1 warning of type SBML unit consistency (99505). The following is the first warning at line 39, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type Modeling practice (80701). The following is the first warning at line 29, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp824256` has warnings.\r\n - Model `model_1` has warnings.\r\n - The model file `00001-sbml-l3v2.xml` has warnings.\r\n - 1 warning of type SBML unit consistency (99507). The following is the first warning at line 3, column 2:\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions.\r\n - 1 warning of type SBML unit consistency (99508). The following is the first warning at line 29, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20702). The following is the first warning at line 29, column 6:\r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n - 1 warning of type SBML unit consistency (99505). The following is the first warning at line 39, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type Modeling practice (80701). The following is the first warning at line 29, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 0.792452, + "exception": null, + "location": "tmp824256", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp824256:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp824256 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "c_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.383445, + "exception": null, + "id": "plot_1", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SUCCEEDED" + }, + { + "id": "ds_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "ds_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.063615, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000560", + "duration": 0.073808, + "exception": null, + "id": "task_1", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `S2_1_c` has warnings.\r\n - XPath could not be validated.\r\n- Variable `S1_1_s` has warnings.\r\n - XPath could not be validated.\r\n- Variable `S1_1_c` has warnings.\r\n - XPath could not be validated.\r\n- Variable `S2_1_s` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mModel `model_1` may be invalid.\r\n - The model file `/tmp/tmp5rjy3i1h/./00001-sbml-l3v2.xml` has warnings.\r\n - 1 warning of type SBML unit consistency (99507). The following is the first warning at line 3, column 2:\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions.\r\n - 1 warning of type SBML unit consistency (99508). The following is the first warning at line 29, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20702). The following is the first warning at line 29, column 6:\r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n - 1 warning of type SBML unit consistency (99505). The following is the first warning at line 39, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type Modeling practice (80701). The following is the first warning at line 29, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/kisao/utils.py:518: AlgorithmSubstitutedWarning: \u001b[33m'LSODA/LSODAR hybrid method' (KISAO_0000560) will be substituted for 'CVODE' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", + "simulatorDetails": [ + { + "key": "methodName", + "value": "lsoda" + }, + { + "key": "parameters", + "value": null + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + }, + "detailed_error_log": {} + }, + "gillespy2": { + "exception_message": "", + "log_yml": { + "duration": 0.824948, + "exception": null, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` has warnings.\r\n - The model file `00001-sbml-l3v2.xml` has warnings.\r\n - 1 warning of type SBML unit consistency (99507). The following is the first warning at line 3, column 2:\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions.\r\n - 1 warning of type SBML unit consistency (99508). The following is the first warning at line 29, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20702). The following is the first warning at line 29, column 6:\r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n - 1 warning of type SBML unit consistency (99505). The following is the first warning at line 39, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type Modeling practice (80701). The following is the first warning at line 29, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp391390` has warnings.\r\n - Model `model_1` has warnings.\r\n - The model file `00001-sbml-l3v2.xml` has warnings.\r\n - 1 warning of type SBML unit consistency (99507). The following is the first warning at line 3, column 2:\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions.\r\n - 1 warning of type SBML unit consistency (99508). The following is the first warning at line 29, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20702). The following is the first warning at line 29, column 6:\r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n - 1 warning of type SBML unit consistency (99505). The following is the first warning at line 39, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type Modeling practice (80701). The following is the first warning at line 29, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 0.508623, + "exception": null, + "location": "tmp391390", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp391390:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp391390 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "c_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.311967, + "exception": null, + "id": "plot_1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SUCCEEDED" + }, + { + "id": "ds_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "ds_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.062732, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000088", + "duration": 0.044193, + "exception": null, + "id": "task_1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `S1_1_c` has warnings.\r\n - XPath could not be validated.\r\n- Variable `S1_1_s` has warnings.\r\n - XPath could not be validated.\r\n- Variable `S2_1_c` has warnings.\r\n - XPath could not be validated.\r\n- Variable `S2_1_s` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \u001b[33m'LSODA' (KISAO_0000088) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", + "simulatorDetails": [ + { + "key": "method", + "value": "gillespy2.solvers.numpy.ode_solver.ODESolver" + }, + { + "key": "arguments", + "value": { + "integrator": "lsoda" + } + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + }, + "detailed_error_log": {} + }, + "ginsim": { + "exception_message": "Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1", + "log_yml": { + "duration": 0.767792, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `simulation_1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:\n Output start time: 0.0\n Output end time: 5.0\n Number of steps: 50", + "type": "CombineArchiveExecutionError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` may be invalid.\r\n - The model file `00001-sbml-l3v2.xml` may be invalid.\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions. \r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp717238` may be invalid.\r\n - Model `model_1` may be invalid.\r\n - The model file `00001-sbml-l3v2.xml` may be invalid.\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions. \r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 0.520654, + "exception": { + "message": "The SED document did not execute successfully:\n\n Simulation `simulation_1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:\n Output start time: 0.0\n Output end time: 5.0\n Number of steps: 50", + "type": "SedmlExecutionError" + }, + "location": "tmp717238", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp717238:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp717238 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SKIPPED" + }, + { + "id": "c_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.318909, + "exception": null, + "id": "plot_1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SKIPPED" + }, + { + "id": "ds_S1_1", + "status": "SKIPPED" + }, + { + "id": "ds_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.063617, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.026382, + "exception": { + "message": "Simulation `simulation_1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:\n Output start time: 0.0\n Output end time: 5.0\n Number of steps: 50", + "type": "ValueError" + }, + "id": "task_1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "libsbmlsim": { + "exception_message": "", + "log_yml": { + "duration": 1.30786, + "exception": null, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` may be invalid.\r\n - The model file `00001-sbml-l3v2.xml` may be invalid.\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions. \r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp711766` may be invalid.\r\n - Model `model_1` may be invalid.\r\n - The model file `00001-sbml-l3v2.xml` may be invalid.\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions. \r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 0.750966, + "exception": null, + "location": "tmp711766", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp711766:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp711766 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "c_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.312021, + "exception": null, + "id": "plot_1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SUCCEEDED" + }, + { + "id": "ds_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "ds_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.084254, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000086", + "duration": 0.06945, + "exception": null, + "id": "task_1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `S1_1_s` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `S2_1_c` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `S1_1_c` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `S2_1_s` may be invalid.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mModel `model_1` may be invalid.\r\n - The model file `/tmp/tmpn8yusbf5/./00001-sbml-l3v2.xml` may be invalid.\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions. \r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \u001b[33m'Fehlberg method' (KISAO_0000086) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", + "simulatorDetails": [ + { + "key": "method", + "value": "simulateSBMLFromFile" + }, + { + "key": "arguments", + "value": { + "dt": 0.001, + "method": 51, + "print_amount": 0, + "print_interval": 100, + "sim_time": 5.0, + "use_lazy_method": 0 + } + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + }, + "detailed_error_log": {} + }, + "masspy": { + "exception_message": "Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1", + "log_yml": { + "duration": 1.128796, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", + "type": "CombineArchiveExecutionError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` has warnings.\r\n - The model file `00001-sbml-l3v2.xml` has warnings.\r\n - 1 warning of type SBML unit consistency (99507). The following is the first warning at line 3, column 2:\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions.\r\n - 1 warning of type SBML unit consistency (99508). The following is the first warning at line 29, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20702). The following is the first warning at line 29, column 6:\r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n - 1 warning of type SBML unit consistency (99505). The following is the first warning at line 39, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type Modeling practice (80701). The following is the first warning at line 29, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp359632` has warnings.\r\n - Model `model_1` has warnings.\r\n - The model file `00001-sbml-l3v2.xml` has warnings.\r\n - 1 warning of type SBML unit consistency (99507). The following is the first warning at line 3, column 2:\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions.\r\n - 1 warning of type SBML unit consistency (99508). The following is the first warning at line 29, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20702). The following is the first warning at line 29, column 6:\r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n - 1 warning of type SBML unit consistency (99505). The following is the first warning at line 39, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type Modeling practice (80701). The following is the first warning at line 29, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\u001b[0m\r\n", + "sedDocuments": [ + { + "duration": 0.532317, + "exception": { + "message": "The SED document did not execute successfully:\n\n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", + "type": "SedmlExecutionError" + }, + "location": "tmp359632", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp359632:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp359632 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SKIPPED" + }, + { + "id": "c_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.216593, + "exception": null, + "id": "plot_1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mIllogicalVizWarning\u001b[0m: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mIllogicalVizWarning\u001b[0m: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mIllogicalVizWarning\u001b[0m: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mIllogicalVizWarning\u001b[0m: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SKIPPED" + }, + { + "id": "ds_S1_1", + "status": "SKIPPED" + }, + { + "id": "ds_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.066701, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.034642, + "exception": { + "message": "Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n\t`(model, errors) = validate_sbml_model(filename)`\nIf the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", + "type": "MassSBMLError" + }, + "id": "task_1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33m- Variable `S2_1_c` has warnings.\r\n - XPath could not be validated.\r\n- Variable `S1_1_c` has warnings.\r\n - XPath could not be validated.\r\n- Variable `S1_1_s` has warnings.\r\n - XPath could not be validated.\r\n- Variable `S2_1_s` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mModel `model_1` may be invalid.\r\n - The model file `/tmp/tmp1y2zkv3f/./00001-sbml-l3v2.xml` has warnings.\r\n - 1 warning of type SBML unit consistency (99507). The following is the first warning at line 3, column 2:\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions.\r\n - 1 warning of type SBML unit consistency (99508). The following is the first warning at line 29, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20702). The following is the first warning at line 29, column 6:\r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n - 1 warning of type SBML unit consistency (99505). The following is the first warning at line 39, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type Modeling practice (80701). The following is the first warning at line 29, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mSBML model is written as Level 3 Version 2, will attempt to convert the SBML model from Level 3 Version 2 to Level 3 Version 1 before parsing\u001b[0m\r\n", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "netpyne": { + "exception_message": "Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1", + "log_yml": { + "duration": 0.140419, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "neuron": { + "exception_message": "Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1", + "log_yml": { + "duration": 0.034594, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "opencor": { + "exception_message": "Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1", + "log_yml": { + "duration": 0.020313, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "pyneuroml": { + "exception_message": "Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1", + "log_yml": { + "duration": 0.077575, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "pysces": { + "exception_message": "", + "log_yml": { + "duration": 2.169071, + "exception": null, + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` has warnings.\r\n - The model file `00001-sbml-l3v2.xml` has warnings.\r\n - 1 warning of type SBML unit consistency (99507). The following is the first warning at line 3, column 2:\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions.\r\n - 1 warning of type SBML unit consistency (99508). The following is the first warning at line 29, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20702). The following is the first warning at line 29, column 6:\r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n - 1 warning of type SBML unit consistency (99505). The following is the first warning at line 39, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type Modeling practice (80701). The following is the first warning at line 29, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp704056` has warnings.\r\n - Model `model_1` has warnings.\r\n - The model file `00001-sbml-l3v2.xml` has warnings.\r\n - 1 warning of type SBML unit consistency (99507). The following is the first warning at line 3, column 2:\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions.\r\n - 1 warning of type SBML unit consistency (99508). The following is the first warning at line 29, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20702). The following is the first warning at line 29, column 6:\r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n - 1 warning of type SBML unit consistency (99505). The following is the first warning at line 39, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type Modeling practice (80701). The following is the first warning at line 29, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 1.429044, + "exception": null, + "location": "tmp704056", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp704056:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp704056 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L3V2\r\nInfo: single compartment model: locating \"reaction1\" in default compartment\r\nWriting file: /tmp/tmp3vl49w67.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmp0p253j1i.xml\r\nout: /tmp/tmp3vl49w67.psc\r\nUsing model directory: /Pysces/psc\r\n/tmp/tmp3vl49w67.psc loading ..... \r\nParsing file: /tmp/tmp3vl49w67.psc\r\nInfo: No reagents have been fixed\r\n \r\nCalculating L matrix . . . . . . . done.\r\nCalculating K matrix . . . . . . . no flux conservation\r\n done.\r\n \r\nCVODE time for 51 points: 0.0020084381103515625\r\n \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "c_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.600432, + "exception": null, + "id": "plot_1", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SUCCEEDED" + }, + { + "id": "ds_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "ds_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.172397, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000019", + "duration": 0.169901, + "exception": null, + "id": "task_1", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `S2_1_s` has warnings.\r\n - XPath could not be validated.\r\n- Variable `S1_1_s` has warnings.\r\n - XPath could not be validated.\r\n- Variable `S1_1_c` has warnings.\r\n - XPath could not be validated.\r\n- Variable `S2_1_c` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "simulatorDetails": [ + { + "key": "method", + "value": "pysces.PyscesModel.Simulate" + }, + { + "key": "arguments", + "value": { + "cvode_abstol": 1e-09, + "cvode_access_solver": true, + "cvode_h0": 0.0, + "cvode_hmax": 0.0, + "cvode_hmin": 0.0, + "cvode_mxord": 5, + "cvode_mxstep": 5000, + "cvode_reltol": 1e-09, + "cvode_return_event_timepoints": false, + "cvode_stats": false, + "cvode_track_assignment_rules": true + } + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + }, + "detailed_error_log": {} + }, + "rbapy": { + "exception_message": "Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1", + "log_yml": { + "duration": 0.66583, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `model_1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", + "type": "CombineArchiveExecutionError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` may be invalid.\r\n - The model file `00001-sbml-l3v2.xml` may be invalid.\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions. \r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp708002` may be invalid.\r\n - Model `model_1` may be invalid.\r\n - The model file `00001-sbml-l3v2.xml` may be invalid.\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions. \r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 0.42883, + "exception": { + "message": "The SED document did not execute successfully:\n\n Language for model `model_1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", + "type": "SedmlExecutionError" + }, + "location": "tmp708002", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp708002:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp708002 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SKIPPED" + }, + { + "id": "c_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.227427, + "exception": null, + "id": "plot_1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SKIPPED" + }, + { + "id": "ds_S1_1", + "status": "SKIPPED" + }, + { + "id": "ds_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.051989, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.024601, + "exception": { + "message": "Language for model `model_1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", + "type": "ValueError" + }, + "id": "task_1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "smoldyn": { + "exception_message": "Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1", + "log_yml": {}, + "detailed_error_log": {} + }, + "tellurium": { + "exception_message": "", + "log_yml": { + "duration": 1.342302, + "exception": null, + "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` has warnings.\r\n - The model file `00001-sbml-l3v2.xml` has warnings.\r\n - 1 warning of type SBML unit consistency (99507). The following is the first warning at line 3, column 2:\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions.\r\n - 1 warning of type SBML unit consistency (99508). The following is the first warning at line 29, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20702). The following is the first warning at line 29, column 6:\r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n - 1 warning of type SBML unit consistency (99505). The following is the first warning at line 39, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type Modeling practice (80701). The following is the first warning at line 29, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp264702` has warnings.\r\n - Model `model_1` has warnings.\r\n - The model file `00001-sbml-l3v2.xml` has warnings.\r\n - 1 warning of type SBML unit consistency (99507). The following is the first warning at line 3, column 2:\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions.\r\n - 1 warning of type SBML unit consistency (99508). The following is the first warning at line 29, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20702). The following is the first warning at line 29, column 6:\r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n - 1 warning of type SBML unit consistency (99505). The following is the first warning at line 39, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type Modeling practice (80701). The following is the first warning at line 29, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\u001b[0m\r\n\r\n", + "sedDocuments": [ + { + "duration": 0.667745, + "exception": null, + "location": "tmp264702", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp264702:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp264702 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "c_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.331755, + "exception": null, + "id": "plot_1", + "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning:\r\n\r\n\u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n\r\n", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SUCCEEDED" + }, + { + "id": "ds_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "ds_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.07227, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000019", + "duration": 0.073165, + "exception": null, + "id": "task_1", + "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33m- Variable `S1_1_s` has warnings.\r\n - XPath could not be validated.\r\n- Variable `S2_1_s` has warnings.\r\n - XPath could not be validated.\r\n- Variable `S1_1_c` has warnings.\r\n - XPath could not be validated.\r\n- Variable `S2_1_c` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mModel `model_1` may be invalid.\r\n - The model file `/tmp/tmpwzv1gbo7/./00001-sbml-l3v2.xml` has warnings.\r\n - 1 warning of type SBML unit consistency (99507). The following is the first warning at line 3, column 2:\r\n - In situations where a mathematical expression refers to extent, the units of extent should be consistent with the global extent units of the model. In models where the 'extentUnits' attribute has not been declared, libSBML does not yet have the functionality to verify accurately the consistency of the units in such expressions.\r\n - 1 warning of type SBML unit consistency (99508). The following is the first warning at line 29, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'k1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20702). The following is the first warning at line 29, column 6:\r\n - If the attribute 'units' on a given Parameter object has not been set, then the unit of measurement associated with that parameter's value is undefined.\r\n Reference: L3V2 Section 4.7.3\r\n The with id 'k1' does not have a 'units' attribute.\r\n - 1 warning of type SBML unit consistency (99505). The following is the first warning at line 39, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'compartment * k1 * S1' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type Modeling practice (80701). The following is the first warning at line 29, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'k1' does not have a 'units' attribute.\u001b[0m\r\n\r\n", + "simulatorDetails": [ + { + "key": "method", + "value": "simulate" + }, + { + "key": "solver", + "value": "cvode" + }, + { + "key": "relative_tolerance", + "value": 1e-06 + }, + { + "key": "absolute_tolerance", + "value": 1e-12 + }, + { + "key": "stiff", + "value": true + }, + { + "key": "maximum_bdf_order", + "value": 5 + }, + { + "key": "maximum_adams_order", + "value": 12 + }, + { + "key": "maximum_num_steps", + "value": 20000 + }, + { + "key": "maximum_time_step", + "value": 0.0 + }, + { + "key": "minimum_time_step", + "value": 0.0 + }, + { + "key": "initial_time_step", + "value": 0.0 + }, + { + "key": "multiple_steps", + "value": false + }, + { + "key": "variable_step_size", + "value": false + }, + { + "key": "max_output_rows", + "value": 100000 + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + }, + "detailed_error_log": {} + }, + "vcell": { + "exception_message": "Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1", + "log_yml": { + "duration": 3, + "exception": null, + "output": "Processing tmp190725. Done", + "sedDocuments": [], + "skipReason": null, + "status": "SUCCEEDED" + }, + "detailed_error_log": { + "status": "FAIL", + "error_message": "Runtime Exception" + } + }, + "xpp": { + "exception_message": "Command '-i /root/in/00001-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1", + "log_yml": { + "duration": 0.211976, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + } +} \ No newline at end of file diff --git a/test_suite/test_00001/tests/results_remote.json b/test_suite/test_00001/tests/results_remote.json new file mode 100644 index 00000000..c91d70ea --- /dev/null +++ b/test_suite/test_00001/tests/results_remote.json @@ -0,0 +1,1326 @@ +{ + "amici": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b677b678b3883bb5de95", + "download": "https://api.biosimulations.org/results/6728b677b678b3883bb5de95/download", + "logs": "https://api.biosimulations.org/logs/6728b677b678b3883bb5de95?includeOutput=true", + "log_yml": { + "duration": 22.350696, + "exception": null, + "output": "", + "sedDocuments": [ + { + "duration": 22.025563, + "exception": null, + "location": "tmp678447", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp678447:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp678447 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "c_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.313357, + "exception": null, + "id": "plot_1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SUCCEEDED" + }, + { + "id": "ds_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "ds_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.065473, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000496", + "duration": 21.565357, + "exception": null, + "id": "task_1", + "output": "", + "simulatorDetails": [ + { + "key": "solver", + "value": "amici.amici.CVodeSolver" + }, + { + "key": "method", + "value": "amici.swig_wrappers.runAmiciSimulation" + }, + { + "key": "arguments", + "value": {} + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + }, + "brian2": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b679b678b3883bb5de98", + "download": "https://api.biosimulations.org/results/6728b679b678b3883bb5de98/download", + "logs": "https://api.biosimulations.org/logs/6728b679b678b3883bb5de98?includeOutput=true", + "log_yml": { + "duration": 0.040628, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "bionetgen": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b67ab678b3883bb5de9b", + "download": "https://api.biosimulations.org/results/6728b67ab678b3883bb5de9b/download", + "logs": "https://api.biosimulations.org/logs/6728b67ab678b3883bb5de9b?includeOutput=true", + "log_yml": { + "duration": 0.549263, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `model_1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", + "type": "CombineArchiveExecutionError" + }, + "output": "", + "sedDocuments": [ + { + "duration": 0.314731, + "exception": { + "message": "The SED document did not execute successfully:\n\n Language for model `model_1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", + "type": "SedmlExecutionError" + }, + "location": "tmp317828", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp317828:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp317828 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SKIPPED" + }, + { + "id": "c_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.151124, + "exception": null, + "id": "plot_1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SKIPPED" + }, + { + "id": "ds_S1_1", + "status": "SKIPPED" + }, + { + "id": "ds_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.057554, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.025411, + "exception": { + "message": "Language for model `model_1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", + "type": "ValueError" + }, + "id": "task_1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } + }, + "boolnet": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b67c0d09353e8f0f89ae", + "download": "https://api.biosimulations.org/results/6728b67c0d09353e8f0f89ae/download", + "logs": "https://api.biosimulations.org/logs/6728b67c0d09353e8f0f89ae?includeOutput=true", + "log_yml": { + "duration": 0.643911, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `simulation_1` is invalid.\n - Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).", + "type": "CombineArchiveExecutionError" + }, + "output": "", + "sedDocuments": [ + { + "duration": 0.378471, + "exception": { + "message": "The SED document did not execute successfully:\n\n Simulation `simulation_1` is invalid.\n - Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).", + "type": "SedmlExecutionError" + }, + "location": "tmp179074", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp179074:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp179074 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SKIPPED" + }, + { + "id": "c_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.195245, + "exception": null, + "id": "plot_1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SKIPPED" + }, + { + "id": "ds_S1_1", + "status": "SKIPPED" + }, + { + "id": "ds_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.063768, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.030742, + "exception": { + "message": "Simulation `simulation_1` is invalid.\n - Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).", + "type": "ValueError" + }, + "id": "task_1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } + }, + "cbmpy": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b67eb678b3883bb5de9e", + "download": "https://api.biosimulations.org/results/6728b67eb678b3883bb5de9e/download", + "logs": "https://api.biosimulations.org/logs/6728b67eb678b3883bb5de9e?includeOutput=true", + "log_yml": { + "duration": 0.726073, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `simulation_1` is not supported.\n - Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "CombineArchiveExecutionError" + }, + "output": "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n", + "sedDocuments": [ + { + "duration": 0.341286, + "exception": { + "message": "The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `simulation_1` is not supported.\n - Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "SedmlExecutionError" + }, + "location": "tmp125101", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp125101:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp125101 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SKIPPED" + }, + { + "id": "c_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.180071, + "exception": null, + "id": "plot_1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SKIPPED" + }, + { + "id": "ds_S1_1", + "status": "SKIPPED" + }, + { + "id": "ds_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.054795, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.028423, + "exception": { + "message": "UniformTimeCourseSimulation `simulation_1` is not supported.\n - Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "ValueError" + }, + "id": "task_1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } + }, + "cobrapy": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b6805a60072d20f48abc", + "download": "https://api.biosimulations.org/results/6728b6805a60072d20f48abc/download", + "logs": "https://api.biosimulations.org/logs/6728b6805a60072d20f48abc?includeOutput=true", + "log_yml": { + "duration": 0.595, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `simulation_1` is not supported.\n - Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "CombineArchiveExecutionError" + }, + "output": "", + "sedDocuments": [ + { + "duration": 0.34159, + "exception": { + "message": "The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `simulation_1` is not supported.\n - Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "SedmlExecutionError" + }, + "location": "tmp129681", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp129681:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp129681 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SKIPPED" + }, + { + "id": "c_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.168312, + "exception": null, + "id": "plot_1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SKIPPED" + }, + { + "id": "ds_S1_1", + "status": "SKIPPED" + }, + { + "id": "ds_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.060222, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.028816, + "exception": { + "message": "UniformTimeCourseSimulation `simulation_1` is not supported.\n - Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "ValueError" + }, + "id": "task_1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } + }, + "copasi": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b6820d09353e8f0f89b6", + "download": "https://api.biosimulations.org/results/6728b6820d09353e8f0f89b6/download", + "logs": "https://api.biosimulations.org/logs/6728b6820d09353e8f0f89b6?includeOutput=true", + "log_yml": { + "duration": 1.062521, + "exception": null, + "output": "", + "sedDocuments": [ + { + "duration": 0.74751, + "exception": null, + "location": "tmp544281", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp544281:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp544281 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "c_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.481398, + "exception": null, + "id": "plot_1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SUCCEEDED" + }, + { + "id": "ds_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "ds_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.060355, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000560", + "duration": 0.128926, + "exception": null, + "id": "task_1", + "output": "", + "simulatorDetails": [ + { + "key": "methodName", + "value": "lsoda" + }, + { + "key": "parameters", + "value": null + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + }, + "gillespy2": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b6840d09353e8f0f89b9", + "download": "https://api.biosimulations.org/results/6728b6840d09353e8f0f89b9/download", + "logs": "https://api.biosimulations.org/logs/6728b6840d09353e8f0f89b9?includeOutput=true", + "log_yml": { + "duration": 0.697597, + "exception": null, + "output": "", + "sedDocuments": [ + { + "duration": 0.427466, + "exception": null, + "location": "tmp424506", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp424506:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp424506 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "c_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.221943, + "exception": null, + "id": "plot_1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SUCCEEDED" + }, + { + "id": "ds_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "ds_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.061791, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000088", + "duration": 0.059014, + "exception": null, + "id": "task_1", + "output": "", + "simulatorDetails": [ + { + "key": "method", + "value": "gillespy2.solvers.numpy.ode_solver.ODESolver" + }, + { + "key": "arguments", + "value": { + "integrator": "lsoda" + } + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + }, + "ginsim": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b6860d09353e8f0f89bd", + "download": "https://api.biosimulations.org/results/6728b6860d09353e8f0f89bd/download", + "logs": "https://api.biosimulations.org/logs/6728b6860d09353e8f0f89bd?includeOutput=true", + "log_yml": { + "duration": 0.60385, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `simulation_1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:\n Output start time: 0.0\n Output end time: 5.0\n Number of steps: 50", + "type": "CombineArchiveExecutionError" + }, + "output": "", + "sedDocuments": [ + { + "duration": 0.34216, + "exception": { + "message": "The SED document did not execute successfully:\n\n Simulation `simulation_1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:\n Output start time: 0.0\n Output end time: 5.0\n Number of steps: 50", + "type": "SedmlExecutionError" + }, + "location": "tmp256142", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp256142:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp256142 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SKIPPED" + }, + { + "id": "c_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.178315, + "exception": null, + "id": "plot_1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SKIPPED" + }, + { + "id": "ds_S1_1", + "status": "SKIPPED" + }, + { + "id": "ds_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.054549, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.029284, + "exception": { + "message": "Simulation `simulation_1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:\n Output start time: 0.0\n Output end time: 5.0\n Number of steps: 50", + "type": "ValueError" + }, + "id": "task_1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } + }, + "libsbmlsim": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b6885a60072d20f48acb", + "download": "https://api.biosimulations.org/results/6728b6885a60072d20f48acb/download", + "logs": "https://api.biosimulations.org/logs/6728b6885a60072d20f48acb?includeOutput=true", + "log_yml": { + "duration": 0.697696, + "exception": null, + "output": "", + "sedDocuments": [ + { + "duration": 0.434444, + "exception": null, + "location": "tmp412874", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp412874:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp412874 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "c_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.196723, + "exception": null, + "id": "plot_1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SUCCEEDED" + }, + { + "id": "ds_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "ds_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.061553, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000086", + "duration": 0.092233, + "exception": null, + "id": "task_1", + "output": "", + "simulatorDetails": [ + { + "key": "method", + "value": "simulateSBMLFromFile" + }, + { + "key": "arguments", + "value": { + "dt": 0.001, + "method": 51, + "print_amount": 0, + "print_interval": 100, + "sim_time": 5.0, + "use_lazy_method": 0 + } + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + }, + "masspy": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b68a0d09353e8f0f89c3", + "download": "https://api.biosimulations.org/results/6728b68a0d09353e8f0f89c3/download", + "logs": "https://api.biosimulations.org/logs/6728b68a0d09353e8f0f89c3?includeOutput=true", + "log_yml": { + "duration": 1.120088, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n The following targets are not supported:\n - /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']\n - /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']\n \n Only following targets are supported:\n - M_S1\n - M_S2\n - R_reaction1\n - S1\n - S2\n - k1\n - reaction1", + "type": "CombineArchiveExecutionError" + }, + "output": "", + "sedDocuments": [ + { + "duration": 0.605584, + "exception": { + "message": "The SED document did not execute successfully:\n\n The following targets are not supported:\n - /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']\n - /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']\n \n Only following targets are supported:\n - M_S1\n - M_S2\n - R_reaction1\n - S1\n - S2\n - k1\n - reaction1", + "type": "SedmlExecutionError" + }, + "location": "tmp984734", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp984734:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp984734 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SKIPPED" + }, + { + "id": "c_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.371845, + "exception": null, + "id": "plot_1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SKIPPED" + }, + { + "id": "ds_S1_1", + "status": "SKIPPED" + }, + { + "id": "ds_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.058755, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.067595, + "exception": { + "message": "The following targets are not supported:\n - /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']\n - /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']\n\nOnly following targets are supported:\n - M_S1\n - M_S2\n - R_reaction1\n - S1\n - S2\n - k1\n - reaction1", + "type": "ValueError" + }, + "id": "task_1", + "output": "\u001b[93mWARNING:\u001b[0m \u001b[93mModel does not contain SBML fbc package\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mModel does not contain SBML groups package\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mRate expressions are set to exclude compartments, but the initial condition is an InitialAmount for 'S1' in the SBML model specie. \u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mRate expressions are set to exclude compartments, but the initial condition is an InitialAmount for 'S2' in the SBML model specie. \u001b[0m\r\n", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } + }, + "netpyne": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b68b0d09353e8f0f89d1", + "download": "https://api.biosimulations.org/results/6728b68b0d09353e8f0f89d1/download", + "logs": "https://api.biosimulations.org/logs/6728b68b0d09353e8f0f89d1?includeOutput=true", + "log_yml": { + "duration": 0.042507, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "neuron": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b68db678b3883bb5deb6", + "download": "https://api.biosimulations.org/results/6728b68db678b3883bb5deb6/download", + "logs": "https://api.biosimulations.org/logs/6728b68db678b3883bb5deb6?includeOutput=true", + "log_yml": { + "duration": 0.043636, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "opencor": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b68f0d09353e8f0f89df", + "download": "https://api.biosimulations.org/results/6728b68f0d09353e8f0f89df/download", + "logs": "https://api.biosimulations.org/logs/6728b68f0d09353e8f0f89df?includeOutput=true", + "log_yml": { + "duration": 0.037139, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "pyneuroml": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b6900d09353e8f0f89e3", + "download": "https://api.biosimulations.org/results/6728b6900d09353e8f0f89e3/download", + "logs": "https://api.biosimulations.org/logs/6728b6900d09353e8f0f89e3?includeOutput=true", + "log_yml": { + "duration": 0.061968, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "pysces": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b6925a60072d20f48afe", + "download": "https://api.biosimulations.org/results/6728b6925a60072d20f48afe/download", + "logs": "https://api.biosimulations.org/logs/6728b6925a60072d20f48afe?includeOutput=true", + "log_yml": { + "duration": 0.872768, + "exception": null, + "output": "libtk8.6.so: cannot open shared object file: No such file or directory\r\n\r\nPySCeS defaults to matplotlib's TKagg backend if not specified in the user configuration file, set \"matplotlib_backend = \" \r\nMatplotlib interface loaded (pysces.plt.m)\r\nPitcon routines available\r\nNLEQ2 routines available\r\nSBML support available\r\nYou are using NumPy (2.1.2) with SciPy (1.14.1)\r\nAssimulo CVode available\r\nRateChar is available\r\nParallel scanner is available\r\n\r\nPySCeS environment\r\n******************\r\npysces.model_dir = /home/FCAM/crbmapi/Pysces/psc\r\npysces.output_dir = /home/FCAM/crbmapi/Pysces\r\n\r\n\r\n***********************************************************************\r\n* Welcome to PySCeS (1.2.2) - Python Simulator for Cellular Systems *\r\n* http://pysces.sourceforge.net *\r\n* Copyright(C) B.G. Olivier, J.M. Rohwer, J.-H.S. Hofmeyr, 2004-2024 *\r\n* Triple-J Group for Molecular Cell Physiology *\r\n* Stellenbosch University, ZA and VU University Amsterdam, NL *\r\n* PySCeS is distributed under the PySCeS (BSD style) licence, see *\r\n* LICENCE.txt (supplied with this release) for details *\r\n* Please cite PySCeS with: doi:10.1093/bioinformatics/bti046 *\r\n***********************************************************************\r\n", + "sedDocuments": [ + { + "duration": 0.622144, + "exception": null, + "location": "tmp384164", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp384164:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp384164 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L3V2\r\nInfo: single compartment model: locating \"reaction1\" in default compartment\r\nWriting file: /tmp/tmp4mj1xvmt.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmpigr7u72o.xml\r\nout: /tmp/tmp4mj1xvmt.psc\r\nUsing model directory: /home/FCAM/crbmapi/Pysces/psc\r\n/tmp/tmp4mj1xvmt.psc loading ..... \r\nParsing file: /tmp/tmp4mj1xvmt.psc\r\nInfo: No reagents have been fixed\r\n \r\nCalculating L matrix . . . . . . . done.\r\nCalculating K matrix . . . . . . . no flux conservation\r\n done.\r\n \r\nCVODE time for 51 points: 0.007776975631713867\r\n \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "c_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.405717, + "exception": null, + "id": "plot_1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SUCCEEDED" + }, + { + "id": "ds_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "ds_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.058856, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000019", + "duration": 0.080845, + "exception": null, + "id": "task_1", + "output": "", + "simulatorDetails": [ + { + "key": "method", + "value": "pysces.PyscesModel.Simulate" + }, + { + "key": "arguments", + "value": { + "cvode_abstol": 1e-09, + "cvode_access_solver": true, + "cvode_h0": 0.0, + "cvode_hmax": 0.0, + "cvode_hmin": 0.0, + "cvode_mxord": 5, + "cvode_mxstep": 5000, + "cvode_reltol": 1e-09, + "cvode_return_event_timepoints": false, + "cvode_stats": false, + "cvode_track_assignment_rules": true + } + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + }, + "rbapy": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b693b678b3883bb5dedd", + "download": "https://api.biosimulations.org/results/6728b693b678b3883bb5dedd/download", + "logs": "https://api.biosimulations.org/logs/6728b693b678b3883bb5dedd?includeOutput=true", + "log_yml": { + "duration": 0.599051, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `model_1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", + "type": "CombineArchiveExecutionError" + }, + "output": "", + "sedDocuments": [ + { + "duration": 0.3463, + "exception": { + "message": "The SED document did not execute successfully:\n\n Language for model `model_1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", + "type": "SedmlExecutionError" + }, + "location": "tmp569097", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp569097:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp569097 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SKIPPED" + }, + { + "id": "c_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.166468, + "exception": null, + "id": "plot_1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SKIPPED" + }, + { + "id": "ds_S1_1", + "status": "SKIPPED" + }, + { + "id": "ds_S2_1", + "status": "SKIPPED" + } + ], + "duration": 0.06125, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.027023, + "exception": { + "message": "Language for model `model_1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", + "type": "ValueError" + }, + "id": "task_1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } + }, + "smoldyn": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b6955a60072d20f48b10", + "download": "https://api.biosimulations.org/results/6728b6955a60072d20f48b10/download", + "logs": "https://api.biosimulations.org/logs/6728b6955a60072d20f48b10?includeOutput=true", + "log_yml": { + "duration": 0.061281, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "tellurium": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b6970d09353e8f0f8a0b", + "download": "https://api.biosimulations.org/results/6728b6970d09353e8f0f8a0b/download", + "logs": "https://api.biosimulations.org/logs/6728b6970d09353e8f0f8a0b?includeOutput=true", + "log_yml": { + "duration": 1.176542, + "exception": null, + "output": "", + "sedDocuments": [ + { + "duration": 0.726483, + "exception": null, + "location": "tmp348905", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp348905:\r\n Tasks (1):\r\n task_1\r\n Reports (1):\r\n report_1: 3 data sets\r\n Plots (1):\r\n plot_1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp348905 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task_1`\r\n Outputs:\r\n `plot_1`\r\n `report_1`\r\n Executing task 1: `task_1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `plot_1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `report_1` ...", + "outputs": [ + { + "curves": [ + { + "id": "c_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "c_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.39315, + "exception": null, + "id": "plot_1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ds_time", + "status": "SUCCEEDED" + }, + { + "id": "ds_S1_1", + "status": "SUCCEEDED" + }, + { + "id": "ds_S2_1", + "status": "SUCCEEDED" + } + ], + "duration": 0.058473, + "exception": null, + "id": "report_1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000019", + "duration": 0.182248, + "exception": null, + "id": "task_1", + "output": "", + "simulatorDetails": [ + { + "key": "method", + "value": "simulate" + }, + { + "key": "solver", + "value": "cvode" + }, + { + "key": "relative_tolerance", + "value": 1e-06 + }, + { + "key": "absolute_tolerance", + "value": 1e-12 + }, + { + "key": "stiff", + "value": true + }, + { + "key": "maximum_bdf_order", + "value": 5 + }, + { + "key": "maximum_adams_order", + "value": 12 + }, + { + "key": "maximum_num_steps", + "value": 20000 + }, + { + "key": "maximum_time_step", + "value": 0.0 + }, + { + "key": "minimum_time_step", + "value": 0.0 + }, + { + "key": "initial_time_step", + "value": 0.0 + }, + { + "key": "multiple_steps", + "value": false + }, + { + "key": "variable_step_size", + "value": false + }, + { + "key": "max_output_rows", + "value": 100000 + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + }, + "vcell": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b69a5a60072d20f48b21", + "download": "https://api.biosimulations.org/results/6728b69a5a60072d20f48b21/download", + "logs": "https://api.biosimulations.org/logs/6728b69a5a60072d20f48b21?includeOutput=true", + "log_yml": { + "duration": null, + "exception": null, + "output": null, + "sedDocuments": [], + "skipReason": null, + "status": "QUEUED" + } + }, + "xpp": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b69c5a60072d20f48b37", + "download": "https://api.biosimulations.org/results/6728b69c5a60072d20f48b37/download", + "logs": "https://api.biosimulations.org/logs/6728b69c5a60072d20f48b37?includeOutput=true", + "log_yml": { + "duration": 0.066845, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + } +} \ No newline at end of file diff --git a/test_suite/test_01186/tests/results_compatibility_biosimulators.md b/test_suite/test_01186/tests/results_compatibility_biosimulators.md new file mode 100644 index 00000000..a382fc23 --- /dev/null +++ b/test_suite/test_01186/tests/results_compatibility_biosimulators.md @@ -0,0 +1,75 @@ +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------|:---------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/

|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with amici. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | +| | | | - The SED-ML file at location `./tmp267694` is invalid. | - The SED-ML file at location `./tmp640928` is invalid. | | | +| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | +| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | +| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | +| | | | - The SED-ML file at location `./tmp347049` is invalid. | - The SED-ML file at location `./tmp46347` is invalid. | | | +| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | +| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | +| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | +| | | | - The SED-ML file at location `./tmp838310` is invalid. | - The SED-ML file at location `./tmp433696` is invalid. | | | +| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | +| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | +| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cbmpy. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | +| | | | - The SED-ML file at location `./tmp528257` is invalid. | - The SED-ML file at location `./tmp385050` is invalid. | | | +| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | +| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | +| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cobrapy. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | +| | | | - The SED-ML file at location `./tmp171288` is invalid. | - The SED-ML file at location `./tmp413781` is invalid. | | | +| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | +| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | +| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with copasi. ['SBML', 'SED-ML'] are compatible with copasi
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | +| | | | - The SED-ML file at location `./tmp860188` is invalid. | - The SED-ML file at location `./tmp332181` is invalid. | | | +| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | +| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | +| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with gillespy2. ['SBML', 'SED-ML'] are compatible with gillespy2
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | +| | | | - The SED-ML file at location `./tmp595452` is invalid. | - The SED-ML file at location `./tmp697896` is invalid. | | | +| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | +| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | +| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | +| | | | - The SED-ML file at location `./tmp956508` is invalid. | - The SED-ML file at location `./tmp90777` is invalid. | | | +| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | +| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | +| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with libsbmlsim. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | +| | | | - The SED-ML file at location `./tmp385105` is invalid. | - The SED-ML file at location `./tmp39181` is invalid. | | | +| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | +| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | +| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with masspy. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | +| | | | - The SED-ML file at location `./tmp581425` is invalid. | - The SED-ML file at location `./tmp205834` is invalid. | | | +| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | +| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | +| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with pysces. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | +| | | | - The SED-ML file at location `./tmp956852` is invalid. | - The SED-ML file at location `./tmp186426` is invalid. | | | +| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | +| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | +| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | +| | | | - The SED-ML file at location `./tmp868261` is invalid. | - The SED-ML file at location `./tmp37134` is invalid. | | | +| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | +| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | +| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with tellurium. ['SBML', 'SED-ML'] are compatible with tellurium
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | +| | | | - The SED-ML file at location `./tmp399285` is invalid. | - The SED-ML file at location `./tmp453545` is invalid. | | | +| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | +| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | +| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with vcell. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file diff --git a/test_suite/test_01186/tests/results_local.json b/test_suite/test_01186/tests/results_local.json new file mode 100644 index 00000000..03405273 --- /dev/null +++ b/test_suite/test_01186/tests/results_local.json @@ -0,0 +1,307 @@ +{ + "amici": { + "exception_message": "Command '-i /root/in/01186-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/amici' returned non-zero exit status 1", + "log_yml": { + "duration": 0.445042, + "exception": { + "message": "`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp640928` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "brian2": { + "exception_message": "Command '-i /root/in/01186-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1", + "log_yml": { + "duration": 0.051707, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "bionetgen": { + "exception_message": "Command '-i /root/in/01186-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1", + "log_yml": { + "duration": 0.316504, + "exception": { + "message": "`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp46347` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` has warnings.\r\n - The model file `01186-sbml-l3v2.xml` has warnings.\r\n - 24 warnings of type SBML unit consistency (99508). The following is the first warning at line 72, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20518). The following is the first warning at line 72, column 6:\r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n - 23 warnings of type SBML unit consistency (20616). The following is the first warning at line 75, column 6:\r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp46347` has warnings.\r\n - Model `model_1` has warnings.\r\n - The model file `01186-sbml-l3v2.xml` has warnings.\r\n - 24 warnings of type SBML unit consistency (99508). The following is the first warning at line 72, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20518). The following is the first warning at line 72, column 6:\r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n - 23 warnings of type SBML unit consistency (20616). The following is the first warning at line 75, column 6:\r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "boolnet": { + "exception_message": "Command '-i /root/in/01186-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1", + "log_yml": { + "duration": 0.178893, + "exception": { + "message": "`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp433696` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` may be invalid.\r\n - The model file `01186-sbml-l3v2.xml` may be invalid.\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'A' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'B' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'B' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'C' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'C' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'D' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'D' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'E' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'E' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'F' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'F' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'G' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'G' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'H' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'H' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'I' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'I' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'J' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'J' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'K' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'K' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'L' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'L' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'M' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'M' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'N' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'N' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'O' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'O' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'P' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'P' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Q' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'Q' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'R' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'R' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'S' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'S' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'T' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'T' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'U' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'U' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'X' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'X' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Y' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'Y' does not have a substanceUnits attribute, nor does its enclosing .\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp433696` may be invalid.\r\n - Model `model_1` may be invalid.\r\n - The model file `01186-sbml-l3v2.xml` may be invalid.\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'A' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'B' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'B' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'C' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'C' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'D' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'D' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'E' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'E' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'F' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'F' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'G' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'G' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'H' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'H' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'I' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'I' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'J' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'J' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'K' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'K' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'L' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'L' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'M' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'M' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'N' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'N' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'O' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'O' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'P' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'P' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Q' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'Q' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'R' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'R' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'S' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'S' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'T' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'T' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'U' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'U' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'X' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'X' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Y' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'Y' does not have a substanceUnits attribute, nor does its enclosing .\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "cbmpy": { + "exception_message": "Command '-i /root/in/01186-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1", + "log_yml": { + "duration": 0.224672, + "exception": { + "message": "`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp385050` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` has warnings.\r\n - The model file `01186-sbml-l3v2.xml` has warnings.\r\n - 24 warnings of type SBML unit consistency (99508). The following is the first warning at line 72, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20518). The following is the first warning at line 72, column 6:\r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n - 23 warnings of type SBML unit consistency (20616). The following is the first warning at line 75, column 6:\r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp385050` has warnings.\r\n - Model `model_1` has warnings.\r\n - The model file `01186-sbml-l3v2.xml` has warnings.\r\n - 24 warnings of type SBML unit consistency (99508). The following is the first warning at line 72, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20518). The following is the first warning at line 72, column 6:\r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n - 23 warnings of type SBML unit consistency (20616). The following is the first warning at line 75, column 6:\r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "cobrapy": { + "exception_message": "Command '-i /root/in/01186-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1", + "log_yml": { + "duration": 0.159565, + "exception": { + "message": "`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp413781` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` has warnings.\r\n - The model file `01186-sbml-l3v2.xml` has warnings.\r\n - 24 warnings of type SBML unit consistency (99508). The following is the first warning at line 72, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20518). The following is the first warning at line 72, column 6:\r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n - 23 warnings of type SBML unit consistency (20616). The following is the first warning at line 75, column 6:\r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp413781` has warnings.\r\n - Model `model_1` has warnings.\r\n - The model file `01186-sbml-l3v2.xml` has warnings.\r\n - 24 warnings of type SBML unit consistency (99508). The following is the first warning at line 72, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20518). The following is the first warning at line 72, column 6:\r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n - 23 warnings of type SBML unit consistency (20616). The following is the first warning at line 75, column 6:\r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "copasi": { + "exception_message": "Command '-i /root/in/01186-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/copasi' returned non-zero exit status 1", + "log_yml": { + "duration": 0.332948, + "exception": { + "message": "`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp332181` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` has warnings.\r\n - The model file `01186-sbml-l3v2.xml` has warnings.\r\n - 24 warnings of type SBML unit consistency (99508). The following is the first warning at line 72, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20518). The following is the first warning at line 72, column 6:\r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n - 23 warnings of type SBML unit consistency (20616). The following is the first warning at line 75, column 6:\r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp332181` has warnings.\r\n - Model `model_1` has warnings.\r\n - The model file `01186-sbml-l3v2.xml` has warnings.\r\n - 24 warnings of type SBML unit consistency (99508). The following is the first warning at line 72, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20518). The following is the first warning at line 72, column 6:\r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n - 23 warnings of type SBML unit consistency (20616). The following is the first warning at line 75, column 6:\r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "gillespy2": { + "exception_message": "Command '-i /root/in/01186-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/gillespy2' returned non-zero exit status 1", + "log_yml": { + "duration": 0.177558, + "exception": { + "message": "`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp697896` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` has warnings.\r\n - The model file `01186-sbml-l3v2.xml` has warnings.\r\n - 24 warnings of type SBML unit consistency (99508). The following is the first warning at line 72, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20518). The following is the first warning at line 72, column 6:\r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n - 23 warnings of type SBML unit consistency (20616). The following is the first warning at line 75, column 6:\r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp697896` has warnings.\r\n - Model `model_1` has warnings.\r\n - The model file `01186-sbml-l3v2.xml` has warnings.\r\n - 24 warnings of type SBML unit consistency (99508). The following is the first warning at line 72, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20518). The following is the first warning at line 72, column 6:\r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n - 23 warnings of type SBML unit consistency (20616). The following is the first warning at line 75, column 6:\r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "ginsim": { + "exception_message": "Command '-i /root/in/01186-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1", + "log_yml": { + "duration": 0.313585, + "exception": { + "message": "`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp90777` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` may be invalid.\r\n - The model file `01186-sbml-l3v2.xml` may be invalid.\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'A' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'B' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'B' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'C' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'C' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'D' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'D' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'E' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'E' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'F' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'F' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'G' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'G' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'H' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'H' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'I' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'I' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'J' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'J' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'K' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'K' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'L' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'L' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'M' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'M' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'N' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'N' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'O' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'O' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'P' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'P' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Q' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'Q' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'R' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'R' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'S' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'S' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'T' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'T' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'U' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'U' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'X' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'X' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Y' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'Y' does not have a substanceUnits attribute, nor does its enclosing .\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp90777` may be invalid.\r\n - Model `model_1` may be invalid.\r\n - The model file `01186-sbml-l3v2.xml` may be invalid.\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'A' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'B' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'B' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'C' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'C' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'D' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'D' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'E' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'E' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'F' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'F' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'G' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'G' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'H' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'H' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'I' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'I' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'J' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'J' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'K' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'K' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'L' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'L' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'M' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'M' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'N' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'N' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'O' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'O' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'P' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'P' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Q' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'Q' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'R' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'R' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'S' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'S' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'T' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'T' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'U' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'U' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'X' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'X' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Y' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'Y' does not have a substanceUnits attribute, nor does its enclosing .\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "libsbmlsim": { + "exception_message": "Command '-i /root/in/01186-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/libsbmlsim' returned non-zero exit status 1", + "log_yml": { + "duration": 0.291287, + "exception": { + "message": "`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp39181` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` may be invalid.\r\n - The model file `01186-sbml-l3v2.xml` may be invalid.\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'A' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'B' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'B' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'C' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'C' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'D' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'D' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'E' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'E' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'F' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'F' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'G' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'G' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'H' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'H' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'I' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'I' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'J' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'J' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'K' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'K' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'L' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'L' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'M' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'M' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'N' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'N' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'O' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'O' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'P' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'P' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Q' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'Q' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'R' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'R' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'S' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'S' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'T' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'T' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'U' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'U' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'X' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'X' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Y' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'Y' does not have a substanceUnits attribute, nor does its enclosing .\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp39181` may be invalid.\r\n - Model `model_1` may be invalid.\r\n - The model file `01186-sbml-l3v2.xml` may be invalid.\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'A' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'B' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'B' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'C' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'C' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'D' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'D' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'E' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'E' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'F' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'F' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'G' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'G' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'H' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'H' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'I' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'I' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'J' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'J' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'K' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'K' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'L' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'L' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'M' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'M' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'N' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'N' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'O' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'O' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'P' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'P' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Q' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'Q' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'R' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'R' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'S' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'S' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'T' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'T' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'U' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'U' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'X' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'X' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Y' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'Y' does not have a substanceUnits attribute, nor does its enclosing .\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "masspy": { + "exception_message": "Command '-i /root/in/01186-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1", + "log_yml": { + "duration": 0.197211, + "exception": { + "message": "`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp205834` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` has warnings.\r\n - The model file `01186-sbml-l3v2.xml` has warnings.\r\n - 24 warnings of type SBML unit consistency (99508). The following is the first warning at line 72, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20518). The following is the first warning at line 72, column 6:\r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n - 23 warnings of type SBML unit consistency (20616). The following is the first warning at line 75, column 6:\r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp205834` has warnings.\r\n - Model `model_1` has warnings.\r\n - The model file `01186-sbml-l3v2.xml` has warnings.\r\n - 24 warnings of type SBML unit consistency (99508). The following is the first warning at line 72, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20518). The following is the first warning at line 72, column 6:\r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n - 23 warnings of type SBML unit consistency (20616). The following is the first warning at line 75, column 6:\r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\u001b[0m\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "netpyne": { + "exception_message": "Command '-i /root/in/01186-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1", + "log_yml": { + "duration": 0.284652, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "neuron": { + "exception_message": "Command '-i /root/in/01186-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1", + "log_yml": { + "duration": 0.043271, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "opencor": { + "exception_message": "Command '-i /root/in/01186-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1", + "log_yml": { + "duration": 0.02603, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "pyneuroml": { + "exception_message": "Command '-i /root/in/01186-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1", + "log_yml": { + "duration": 0.045681, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "pysces": { + "exception_message": "Command '-i /root/in/01186-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1", + "log_yml": { + "duration": 0.324198, + "exception": { + "message": "`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp186426` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` has warnings.\r\n - The model file `01186-sbml-l3v2.xml` has warnings.\r\n - 24 warnings of type SBML unit consistency (99508). The following is the first warning at line 72, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20518). The following is the first warning at line 72, column 6:\r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n - 23 warnings of type SBML unit consistency (20616). The following is the first warning at line 75, column 6:\r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp186426` has warnings.\r\n - Model `model_1` has warnings.\r\n - The model file `01186-sbml-l3v2.xml` has warnings.\r\n - 24 warnings of type SBML unit consistency (99508). The following is the first warning at line 72, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20518). The following is the first warning at line 72, column 6:\r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n - 23 warnings of type SBML unit consistency (20616). The following is the first warning at line 75, column 6:\r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "rbapy": { + "exception_message": "Command '-i /root/in/01186-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1", + "log_yml": { + "duration": 0.131336, + "exception": { + "message": "`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp37134` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` may be invalid.\r\n - The model file `01186-sbml-l3v2.xml` may be invalid.\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'A' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'B' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'B' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'C' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'C' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'D' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'D' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'E' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'E' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'F' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'F' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'G' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'G' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'H' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'H' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'I' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'I' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'J' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'J' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'K' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'K' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'L' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'L' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'M' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'M' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'N' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'N' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'O' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'O' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'P' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'P' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Q' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'Q' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'R' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'R' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'S' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'S' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'T' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'T' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'U' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'U' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'X' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'X' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Y' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'Y' does not have a substanceUnits attribute, nor does its enclosing .\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp37134` may be invalid.\r\n - Model `model_1` may be invalid.\r\n - The model file `01186-sbml-l3v2.xml` may be invalid.\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'A' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'B' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'B' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'C' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'C' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'D' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'D' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'E' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'E' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'F' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'F' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'G' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'G' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'H' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'H' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'I' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'I' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'J' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'J' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'K' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'K' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'L' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'L' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'M' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'M' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'N' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'N' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'O' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'O' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'P' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'P' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Q' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'Q' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'R' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'R' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'S' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'S' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'T' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'T' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'U' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'U' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'X' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'X' does not have a substanceUnits attribute, nor does its enclosing .\r\n \r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Y' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'Y' does not have a substanceUnits attribute, nor does its enclosing .\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "smoldyn": { + "exception_message": "Command '-i /root/in/01186-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1", + "log_yml": {}, + "detailed_error_log": {} + }, + "tellurium": { + "exception_message": "Command '-i /root/in/01186-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/tellurium' returned non-zero exit status 1", + "log_yml": { + "duration": 0.416693, + "exception": { + "message": "`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp453545` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe SED document is potentially incorrect.\r\n - Model `model_1` has warnings.\r\n - The model file `01186-sbml-l3v2.xml` has warnings.\r\n - 24 warnings of type SBML unit consistency (99508). The following is the first warning at line 72, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20518). The following is the first warning at line 72, column 6:\r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n - 23 warnings of type SBML unit consistency (20616). The following is the first warning at line 75, column 6:\r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp453545` has warnings.\r\n - Model `model_1` has warnings.\r\n - The model file `01186-sbml-l3v2.xml` has warnings.\r\n - 24 warnings of type SBML unit consistency (99508). The following is the first warning at line 72, column 6:\r\n - In situations where a mathematical expression refers to a compartment, species or parameter, it is necessary to know the units of the object to establish unit consistency. In models where the units of an object have not been declared, libSBML does not yet have the functionality to accurately verify the consistency of the units in mathematical expressions referring to that object. \r\n The units of the 'Cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 1 warning of type SBML unit consistency (20518). The following is the first warning at line 72, column 6:\r\n - If neither the attribute 'units' nor the attribute 'spatialDimensions' on a Compartment object is set, the unit associated with that compartment's size is undefined.\r\n Reference: L3V2 Section 4.5.4\r\n The 'Cell' has no discernable units.\r\n - 23 warnings of type SBML unit consistency (20616). The following is the first warning at line 75, column 6:\r\n - If the attribute 'substanceUnits' in a Species object has not been set, then the unit of measurement associated with the species' quantity is determined by the value of the enclosing Model object's 'substanceUnits' attribute. If neither the Species object's 'substanceUnits' attribute nor the enclosing Model object's 'substanceUnits' attribute are set, then the unit of that species' quantity is undefined.\r\n Reference: L3V2 Section 4.6.5\r\n The with id 'A' does not have a substanceUnits attribute, nor does its enclosing .\u001b[0m\r\n\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "vcell": { + "exception_message": "Command '-i /root/in/01186-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1", + "log_yml": { + "duration": 2, + "exception": null, + "output": "Processing tmp291036. Done", + "sedDocuments": [], + "skipReason": null, + "status": "SUCCEEDED" + }, + "detailed_error_log": { + "status": "FAIL", + "error_message": "Runtime Exception" + } + }, + "xpp": { + "exception_message": "Command '-i /root/in/01186-sbml-l3v2-sedml.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1", + "log_yml": { + "duration": 0.340051, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + } +} \ No newline at end of file diff --git a/test_suite/test_01186/tests/results_remote.json b/test_suite/test_01186/tests/results_remote.json new file mode 100644 index 00000000..1d109f3c --- /dev/null +++ b/test_suite/test_01186/tests/results_remote.json @@ -0,0 +1,356 @@ +{ + "amici": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b7265a60072d20f48b96", + "download": "https://api.biosimulations.org/results/6728b7265a60072d20f48b96/download", + "logs": "https://api.biosimulations.org/logs/6728b7265a60072d20f48b96?includeOutput=true", + "log_yml": { + "duration": 0.299356, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp267694` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "brian2": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b72a0d09353e8f0f8a88", + "download": "https://api.biosimulations.org/results/6728b72a0d09353e8f0f8a88/download", + "logs": "https://api.biosimulations.org/logs/6728b72a0d09353e8f0f8a88?includeOutput=true", + "log_yml": { + "duration": 0.058261, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "bionetgen": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b72b0d09353e8f0f8a8c", + "download": "https://api.biosimulations.org/results/6728b72b0d09353e8f0f8a8c/download", + "logs": "https://api.biosimulations.org/logs/6728b72b0d09353e8f0f8a8c?includeOutput=true", + "log_yml": { + "duration": 0.202798, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp347049` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "boolnet": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b72d5a60072d20f48b99", + "download": "https://api.biosimulations.org/results/6728b72d5a60072d20f48b99/download", + "logs": "https://api.biosimulations.org/logs/6728b72d5a60072d20f48b99?includeOutput=true", + "log_yml": { + "duration": 0.207202, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp838310` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "cbmpy": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b72f5a60072d20f48b9e", + "download": "https://api.biosimulations.org/results/6728b72f5a60072d20f48b9e/download", + "logs": "https://api.biosimulations.org/logs/6728b72f5a60072d20f48b9e?includeOutput=true", + "log_yml": { + "duration": 0.335865, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp528257` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "cobrapy": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b730b678b3883bb5df8f", + "download": "https://api.biosimulations.org/results/6728b730b678b3883bb5df8f/download", + "logs": "https://api.biosimulations.org/logs/6728b730b678b3883bb5df8f?includeOutput=true", + "log_yml": { + "duration": 0.201831, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp171288` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "copasi": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b7335a60072d20f48ba3", + "download": "https://api.biosimulations.org/results/6728b7335a60072d20f48ba3/download", + "logs": "https://api.biosimulations.org/logs/6728b7335a60072d20f48ba3?includeOutput=true", + "log_yml": { + "duration": 0.186713, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp860188` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "gillespy2": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b7350d09353e8f0f8a96", + "download": "https://api.biosimulations.org/results/6728b7350d09353e8f0f8a96/download", + "logs": "https://api.biosimulations.org/logs/6728b7350d09353e8f0f8a96?includeOutput=true", + "log_yml": { + "duration": 0.207018, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp595452` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "ginsim": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b7365a60072d20f48ba8", + "download": "https://api.biosimulations.org/results/6728b7365a60072d20f48ba8/download", + "logs": "https://api.biosimulations.org/logs/6728b7365a60072d20f48ba8?includeOutput=true", + "log_yml": { + "duration": 0.171673, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp956508` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "libsbmlsim": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b738b678b3883bb5dfa0", + "download": "https://api.biosimulations.org/results/6728b738b678b3883bb5dfa0/download", + "logs": "https://api.biosimulations.org/logs/6728b738b678b3883bb5dfa0?includeOutput=true", + "log_yml": { + "duration": 0.159555, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp385105` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "masspy": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b73ab678b3883bb5dfa5", + "download": "https://api.biosimulations.org/results/6728b73ab678b3883bb5dfa5/download", + "logs": "https://api.biosimulations.org/logs/6728b73ab678b3883bb5dfa5?includeOutput=true", + "log_yml": { + "duration": 0.413051, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp581425` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "netpyne": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b73cb678b3883bb5dfb0", + "download": "https://api.biosimulations.org/results/6728b73cb678b3883bb5dfb0/download", + "logs": "https://api.biosimulations.org/logs/6728b73cb678b3883bb5dfb0?includeOutput=true", + "log_yml": { + "duration": 0.066357, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "neuron": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b73d5a60072d20f48be0", + "download": "https://api.biosimulations.org/results/6728b73d5a60072d20f48be0/download", + "logs": "https://api.biosimulations.org/logs/6728b73d5a60072d20f48be0?includeOutput=true", + "log_yml": { + "duration": 0.038132, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "opencor": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b73fb678b3883bb5dfcb", + "download": "https://api.biosimulations.org/results/6728b73fb678b3883bb5dfcb/download", + "logs": "https://api.biosimulations.org/logs/6728b73fb678b3883bb5dfcb?includeOutput=true", + "log_yml": { + "duration": 0.039215, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "pyneuroml": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b7415a60072d20f48bfc", + "download": "https://api.biosimulations.org/results/6728b7415a60072d20f48bfc/download", + "logs": "https://api.biosimulations.org/logs/6728b7415a60072d20f48bfc?includeOutput=true", + "log_yml": { + "duration": 0.043981, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "pysces": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b7435a60072d20f48c09", + "download": "https://api.biosimulations.org/results/6728b7435a60072d20f48c09/download", + "logs": "https://api.biosimulations.org/logs/6728b7435a60072d20f48c09?includeOutput=true", + "log_yml": { + "duration": 0.180308, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp956852` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "libtk8.6.so: cannot open shared object file: No such file or directory\r\n\r\nPySCeS defaults to matplotlib's TKagg backend if not specified in the user configuration file, set \"matplotlib_backend = \" \r\nMatplotlib interface loaded (pysces.plt.m)\r\nPitcon routines available\r\nNLEQ2 routines available\r\nSBML support available\r\nYou are using NumPy (2.1.2) with SciPy (1.14.1)\r\nAssimulo CVode available\r\nRateChar is available\r\nParallel scanner is available\r\n\r\nPySCeS environment\r\n******************\r\npysces.model_dir = /home/FCAM/crbmapi/Pysces/psc\r\npysces.output_dir = /home/FCAM/crbmapi/Pysces\r\n\r\n\r\n***********************************************************************\r\n* Welcome to PySCeS (1.2.2) - Python Simulator for Cellular Systems *\r\n* http://pysces.sourceforge.net *\r\n* Copyright(C) B.G. Olivier, J.M. Rohwer, J.-H.S. Hofmeyr, 2004-2024 *\r\n* Triple-J Group for Molecular Cell Physiology *\r\n* Stellenbosch University, ZA and VU University Amsterdam, NL *\r\n* PySCeS is distributed under the PySCeS (BSD style) licence, see *\r\n* LICENCE.txt (supplied with this release) for details *\r\n* Please cite PySCeS with: doi:10.1093/bioinformatics/bti046 *\r\n***********************************************************************\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "rbapy": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b744b678b3883bb5dfe8", + "download": "https://api.biosimulations.org/results/6728b744b678b3883bb5dfe8/download", + "logs": "https://api.biosimulations.org/logs/6728b744b678b3883bb5dfe8?includeOutput=true", + "log_yml": { + "duration": 0.214364, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp868261` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "smoldyn": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b746b678b3883bb5dfee", + "download": "https://api.biosimulations.org/results/6728b746b678b3883bb5dfee/download", + "logs": "https://api.biosimulations.org/logs/6728b746b678b3883bb5dfee?includeOutput=true", + "log_yml": { + "duration": 0.05399, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "tellurium": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b7480d09353e8f0f8b0e", + "download": "https://api.biosimulations.org/results/6728b7480d09353e8f0f8b0e/download", + "logs": "https://api.biosimulations.org/logs/6728b7480d09353e8f0f8b0e?includeOutput=true", + "log_yml": { + "duration": 0.374941, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./tmp399285` is invalid.\n - Data generator `OBJF_1` is invalid.\n - Variable `OBJF` is invalid.\n - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "vcell": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b74cb678b3883bb5e023", + "download": "https://api.biosimulations.org/results/6728b74cb678b3883bb5e023/download", + "logs": "https://api.biosimulations.org/logs/6728b74cb678b3883bb5e023?includeOutput=true", + "log_yml": { + "duration": null, + "exception": null, + "output": null, + "sedDocuments": [], + "skipReason": null, + "status": "QUEUED" + } + }, + "xpp": { + "response": 201, + "view": "https://api.biosimulations.org/runs/6728b74d0d09353e8f0f8b26", + "download": "https://api.biosimulations.org/results/6728b74d0d09353e8f0f8b26/download", + "logs": "https://api.biosimulations.org/logs/6728b74d0d09353e8f0f8b26?includeOutput=true", + "log_yml": { + "duration": 0.06467, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + } +} \ No newline at end of file diff --git a/test_suite/test_test_suite_compatibility_biosimulators.py b/test_suite/test_test_suite_compatibility_biosimulators.py index f7161680..6e8dbaa2 100644 --- a/test_suite/test_test_suite_compatibility_biosimulators.py +++ b/test_suite/test_test_suite_compatibility_biosimulators.py @@ -46,8 +46,9 @@ def parse_arguments(): parser.add_argument( "--cases", - action="store", - type=list, + action="extend", + nargs="+", + type=str, default=[], help="Limit to the cases listed in the file. Empty list means no limit", ) @@ -106,7 +107,7 @@ def process_cases(args): print(f"Processing {len(subfolders)} subfolders in {args.suite_path}") test_folder = 'tests' - for subfolder in subfolders: + for subfolder in args.cases: # create an equivalently named folder in the starting directory os.chdir(args.suite_path) print(f"Processing {subfolder}") @@ -139,9 +140,10 @@ def process_cases(args): os.chdir(new_directory) print(f"Changed to {new_directory}") - engines_list = list(engines.keys()) + engine_list = list(engines.keys()) - utils.run_biosimulators_remotely_and_locally(os.path.basename(sedml_file_path), + utils.run_biosimulators_remotely_and_locally(engine_list, + os.path.basename(sedml_file_path), os.path.basename(sbml_file_path), os.path.join(test_folder,'d1_plots_remote'), os.path.join(test_folder,'d1_plots_local'), @@ -149,7 +151,7 @@ def process_cases(args): if __name__ == "__main__": - args = parse_arguments() + args = parse_arguments() process_cases(args) diff --git a/utils/__init__.py b/utils/__init__.py index 6b41d690..1c1151c8 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -21,6 +21,7 @@ from pyneuroml import biosimulations import pandas as pd from requests.exceptions import HTTPError +import json ENGINES = { 'amici': { @@ -1233,6 +1234,15 @@ def create_combined_results_table(results_remote, suffix_remote = ' (R)' suffix_local = ' (L)' + + # save results_remote and results_local as json files with dicts + path_to_results_remote = os.path.join(test_folder, 'results_remote.json') + path_to_results_local = os.path.join(test_folder, 'results_local.json') + + with open(path_to_results_remote, 'w') as f: + json.dump(results_remote, f, indent=4) + with open(path_to_results_local, 'w') as f: + json.dump(results_local, f, indent=4) # Create results tables for remote and local results results_table_remote = create_results_table(results_remote, sbml_file_name, sedml_file_name, d1_plots_remote_dir) From a979a7ccd6268e4407b820d446b64b0174032dd9 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Mon, 4 Nov 2024 13:08:51 +0000 Subject: [PATCH 03/22] add sedml and sbml files of case 01186 --- .../test_01186/01186-sbml-l3v2-sedml.xml | 50 ++ test_suite/test_01186/01186-sbml-l3v2.xml | 633 ++++++++++++++++++ 2 files changed, 683 insertions(+) create mode 100644 test_suite/test_01186/01186-sbml-l3v2-sedml.xml create mode 100644 test_suite/test_01186/01186-sbml-l3v2.xml diff --git a/test_suite/test_01186/01186-sbml-l3v2-sedml.xml b/test_suite/test_01186/01186-sbml-l3v2-sedml.xml new file mode 100644 index 00000000..e966115b --- /dev/null +++ b/test_suite/test_01186/01186-sbml-l3v2-sedml.xml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + R01 + + + + + + + + R26 + + + + + + + + OBJF + + + + + + + + + + + + + \ No newline at end of file diff --git a/test_suite/test_01186/01186-sbml-l3v2.xml b/test_suite/test_01186/01186-sbml-l3v2.xml new file mode 100644 index 00000000..69fee4af --- /dev/null +++ b/test_suite/test_01186/01186-sbml-l3v2.xml @@ -0,0 +1,633 @@ + + + + + +

+ Maximize single objective function, hard bounds. +

+ +
+ + + + + + + + Olivier + Brett + + bgoli@users.sourceforge.net + + VU university Amsterdam + + + + + + 2012-12-21T11:05:21Z + + + 2012-12-21T10:05:21Z + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

subsystem: C3

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: C3

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: C3

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: L

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: C2

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: C3

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: L

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: C3

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: C1

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: C1

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: L

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: C1

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: C2

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: C2

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: C2

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: C2

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: C2

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: C3

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: C3

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: L

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: L

+ +
+ + + + + + + + + + + + + +
+ + + +

subsystem: C4

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: C4

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: L

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: C3

+ +
+ + + + + + + + + + + +
+ + + +

subsystem: C3

+ +
+ + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
From 1959b391ec629d572656717c30dc7292bb3e3770 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Mon, 4 Nov 2024 14:53:03 +0000 Subject: [PATCH 04/22] update ansi_to_html --- .../results_compatibility_biosimulators.md | 46 ++++----- .../results_compatibility_biosimulators.md | 46 ++++----- .../results_compatibility_biosimulators.md | 98 +++++-------------- test_suite/test_test_suite_results_table.py | 68 +++++++++++++ utils/__init__.py | 15 +-- 5 files changed, 142 insertions(+), 131 deletions(-) create mode 100644 test_suite/test_test_suite_results_table.py diff --git a/SBML/tests/results_compatibility_biosimulators.md b/SBML/tests/results_compatibility_biosimulators.md index e4cedfa3..2e280e3c 100644 --- a/SBML/tests/results_compatibility_biosimulators.md +++ b/SBML/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ -| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps

|
❌ FAILERROR MESSAGE:
Reached maximum number of steps

| plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
✅ PASSview
download
logs

|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps

|
❌ FAILERROR MESSAGE:
Reached maximum number of steps

| plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
✅ PASSview
download
logs

|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file diff --git a/test_suite/test_00001/tests/results_compatibility_biosimulators.md b/test_suite/test_00001/tests/results_compatibility_biosimulators.md index d36280a6..42a52340 100644 --- a/test_suite/test_00001/tests/results_compatibility_biosimulators.md +++ b/test_suite/test_00001/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ -| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------|:--------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with amici. ['SBML', 'SED-ML'] are compatible with amici
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cbmpy. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cobrapy. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with copasi. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with gillespy2. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:
Output start time: 0.0
Output end time: 5.0
Number of steps: 50

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:
Output start time: 0.0
Output end time: 5.0
Number of steps: 50

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with libsbmlsim. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with masspy. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']
- /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']

Only following targets are supported:
- M_S1
- M_S2
- R_reaction1
- S1
- S2
- k1
- reaction1

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with pysces. ['SBML', 'SED-ML'] are compatible with pysces
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with tellurium. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with vcell. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
❌ FAILThe file extensions other suggest the input file types are not compatibe with amici. ['SBML', 'SED-ML'] are compatible with amici
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
❌ FAILThe file extensions other suggest the input file types are not compatibe with cbmpy. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
❌ FAILThe file extensions other suggest the input file types are not compatibe with cobrapy. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
❌ FAILThe file extensions other suggest the input file types are not compatibe with copasi. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
❌ FAILThe file extensions other suggest the input file types are not compatibe with gillespy2. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:
Output start time: 0.0
Output end time: 5.0
Number of steps: 50

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:
Output start time: 0.0
Output end time: 5.0
Number of steps: 50

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
❌ FAILThe file extensions other suggest the input file types are not compatibe with libsbmlsim. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
❌ FAILThe file extensions other suggest the input file types are not compatibe with masspy. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']
- /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']

Only following targets are supported:
- M_S1
- M_S2
- R_reaction1
- S1
- S2
- k1
- reaction1

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
❌ FAILThe file extensions other suggest the input file types are not compatibe with pysces. ['SBML', 'SED-ML'] are compatible with pysces
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
❌ FAILThe file extensions other suggest the input file types are not compatibe with tellurium. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
❌ FAILThe file extensions other suggest the input file types are not compatibe with vcell. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file diff --git a/test_suite/test_01186/tests/results_compatibility_biosimulators.md b/test_suite/test_01186/tests/results_compatibility_biosimulators.md index a382fc23..be3b84fe 100644 --- a/test_suite/test_01186/tests/results_compatibility_biosimulators.md +++ b/test_suite/test_01186/tests/results_compatibility_biosimulators.md @@ -1,75 +1,23 @@ -| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------|:---------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with amici. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | -| | | | - The SED-ML file at location `./tmp267694` is invalid. | - The SED-ML file at location `./tmp640928` is invalid. | | | -| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | -| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | -| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | -| | | | - The SED-ML file at location `./tmp347049` is invalid. | - The SED-ML file at location `./tmp46347` is invalid. | | | -| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | -| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | -| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | -| | | | - The SED-ML file at location `./tmp838310` is invalid. | - The SED-ML file at location `./tmp433696` is invalid. | | | -| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | -| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | -| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cbmpy. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | -| | | | - The SED-ML file at location `./tmp528257` is invalid. | - The SED-ML file at location `./tmp385050` is invalid. | | | -| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | -| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | -| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cobrapy. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | -| | | | - The SED-ML file at location `./tmp171288` is invalid. | - The SED-ML file at location `./tmp413781` is invalid. | | | -| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | -| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | -| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with copasi. ['SBML', 'SED-ML'] are compatible with copasi
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | -| | | | - The SED-ML file at location `./tmp860188` is invalid. | - The SED-ML file at location `./tmp332181` is invalid. | | | -| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | -| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | -| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with gillespy2. ['SBML', 'SED-ML'] are compatible with gillespy2
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | -| | | | - The SED-ML file at location `./tmp595452` is invalid. | - The SED-ML file at location `./tmp697896` is invalid. | | | -| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | -| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | -| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | -| | | | - The SED-ML file at location `./tmp956508` is invalid. | - The SED-ML file at location `./tmp90777` is invalid. | | | -| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | -| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | -| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with libsbmlsim. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | -| | | | - The SED-ML file at location `./tmp385105` is invalid. | - The SED-ML file at location `./tmp39181` is invalid. | | | -| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | -| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | -| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with masspy. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | -| | | | - The SED-ML file at location `./tmp581425` is invalid. | - The SED-ML file at location `./tmp205834` is invalid. | | | -| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | -| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | -| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with pysces. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | -| | | | - The SED-ML file at location `./tmp956852` is invalid. | - The SED-ML file at location `./tmp186426` is invalid. | | | -| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | -| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | -| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | -| | | | - The SED-ML file at location `./tmp868261` is invalid. | - The SED-ML file at location `./tmp37134` is invalid. | | | -| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | -| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | -| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with tellurium. ['SBML', 'SED-ML'] are compatible with tellurium
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive. |
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive. | | | -| | | | - The SED-ML file at location `./tmp399285` is invalid. | - The SED-ML file at location `./tmp453545` is invalid. | | | -| | | | - Data generator `OBJF_1` is invalid. | - Data generator `OBJF_1` is invalid. | | | -| | | | - Variable `OBJF` is invalid. | - Variable `OBJF` is invalid. | | | -| | | | - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| - One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with vcell. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------|:---------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with amici. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp267694` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp640928` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp347049` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp46347` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp838310` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp433696` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cbmpy. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp528257` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp385050` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cobrapy. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp171288` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp413781` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with copasi. ['SBML', 'SED-ML'] are compatible with copasi
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp860188` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp332181` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with gillespy2. ['SBML', 'SED-ML'] are compatible with gillespy2
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp595452` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp697896` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp956508` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp90777` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with libsbmlsim. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp385105` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp39181` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with masspy. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp581425` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp205834` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with pysces. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp956852` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp186426` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp868261` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp37134` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with tellurium. ['SBML', 'SED-ML'] are compatible with tellurium
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp399285` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp453545` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with vcell. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file diff --git a/test_suite/test_test_suite_results_table.py b/test_suite/test_test_suite_results_table.py new file mode 100644 index 00000000..7a94e34c --- /dev/null +++ b/test_suite/test_test_suite_results_table.py @@ -0,0 +1,68 @@ +#!/usr/bin/env python3 + +""" +produce a markdown table of the results of running various tests on the SBML Test Suite + +get this version of the test suite that includes sedml versions or the sedml validation will fail: +https://github.com/sbmlteam/sbml-test-suite/releases/download/3.4.0/semantic_tests_with_sedml_and_graphs.v3.4.0.zip +""" + +import os +import sys +import json +sys.path.append("..") +import utils +engines = utils.ENGINES + + +def create_test_suite_results_tables(): + """ + Create a table of results for each test case in the test suite + + """ + starting_dir = os.getcwd() + print('Current working directory:', starting_dir) + subfolders = [f for f in os.listdir(starting_dir) if os.path.isdir(f) and f.startswith('test_')] + + print(subfolders) + + for subfolder in subfolders: + subfolder_path = os.path.join(starting_dir, subfolder) + os.chdir(subfolder_path) + print(f"Changed to {os.getcwd()}") + + test_folder = 'tests' + + results_paths = { + "local": os.path.join(subfolder_path, test_folder, 'results_local.json'), + "remote": os.path.join(subfolder_path, test_folder, 'results_remote.json') + } + + results = {} + for key, path in results_paths.items(): + with open(path, 'r') as f: + results[key] = json.load(f) + + d1_plot_paths = { + "local": os.path.join(subfolder_path, test_folder, 'd1_plots_local'), + "remote": os.path.join(subfolder_path, test_folder, 'd1_plots_remote') + } + + # get sbml filename with reg ex (it should contain sbml but not sedml) + sbml_file_name = [f for f in os.listdir(subfolder_path) if 'sbml' in f and 'sedml' not in f][0] + sedml_file_name = [f for f in os.listdir(subfolder_path) if 'sedml' in f][0] + + results_table = utils.create_combined_results_table(results["remote"], + results["local"], + sedml_file_name, + sbml_file_name, + d1_plot_paths["local"], + d1_plot_paths["remote"], + test_folder='tests') + + + print(results_table) + + +if __name__ == "__main__": + create_test_suite_results_tables() diff --git a/utils/__init__.py b/utils/__init__.py index 1c1151c8..a7592a85 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -398,11 +398,8 @@ def ansi_to_html(text): if len(text_message) > 0: text = text_message text = bytes(text[0], "utf-8").decode("unicode_escape") - elif 'The COMBINE/OMEX did not execute successfully:' in text: - text = text # to deal with remote error message - else: - text = text.replace('|', '') - return text + # elif 'The COMBINE/OMEX did not execute successfully:' in text: + # text = text # to deal with remote error message text = text.replace('|', '') @@ -410,8 +407,8 @@ def ansi_to_html(text): text = re.sub(r'<([^>]*)>', r'\1', text) # replace color codes with html color codes - text = text.replace("\x1b[33m",'') - text = text.replace("\x1b[31m",'') + text = text.replace("\x1b[33m","") + text = text.replace("\x1b[31m","") # # remove .\x1b[0m text = text.replace("\x1b[0m", "") @@ -430,9 +427,7 @@ def ansi_to_html(text): text = text.replace('BioSimulatorsWarning:', '

BioSimulatorsWarning:

') text = text.replace('warnings.warn(termcolor.colored(message, Colors.warning.value), category)', '
') - # if text includes The COMBINE/OMEX did not execute successfully: make everyhting from that point red - text = text.replace('The COMBINE/OMEX did not execute successfully:', 'The COMBINE/OMEX did not execute successfully:') - return text + return text def check_file_compatibility_test(engine, model_filepath, experiment_filepath): ''' From 228eace9df7c33f02930e61ecc4826b2133e1046 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Mon, 4 Nov 2024 14:57:54 +0000 Subject: [PATCH 05/22] remvoe test code for case handling --- test_suite/process_test_suite.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test_suite/process_test_suite.py b/test_suite/process_test_suite.py index 0d3ca223..643175e4 100755 --- a/test_suite/process_test_suite.py +++ b/test_suite/process_test_suite.py @@ -125,9 +125,7 @@ def process_cases(args): # Suppress specific UserWarning caused by matplotlib (required to suppress interactive plots) warnings.filterwarnings("ignore", category=UserWarning, message="FigureCanvasAgg is non-interactive, and thus cannot be shown") subfolders = os.listdir(suite_path_abs) if args.limit == 0 else os.listdir(suite_path_abs)[:args.limit] - # do same for cases - subfolders = os.listdir(suite_path_abs) if args.cases == [] else os.listdir(suite_path_abs)cases - + for subfolder in subfolders: # if sbml_level_version is empty string (default), find the highest level and version in the folder if args.sbml_level_version == "highest": From 58917f97ffea08289979eec2d2acc1a7b61c5ca9 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Mon, 4 Nov 2024 15:04:17 +0000 Subject: [PATCH 06/22] enable processing of a given list of cases, or a limit of cases that are processed sequentially when an empty lissed is passed --- .../test_test_suite_compatibility_biosimulators.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/test_suite/test_test_suite_compatibility_biosimulators.py b/test_suite/test_test_suite_compatibility_biosimulators.py index 6e8dbaa2..f7221b39 100644 --- a/test_suite/test_test_suite_compatibility_biosimulators.py +++ b/test_suite/test_test_suite_compatibility_biosimulators.py @@ -102,12 +102,16 @@ def process_cases(args): os.chdir(args.suite_path) # change to test suite directory suite_path_abs = os.getcwd() # absolute path to test suite - subfolders = os.listdir(suite_path_abs) if args.limit == 0 else os.listdir(suite_path_abs)[:args.limit] - # subfolders = os.listdir(suite_path_abs) if args.cases == [] else os.listdir(suite_path_abs)[args.cases] + if args.cases != []: + subfolders = args.cases + else: + subfolders = os.listdir(suite_path_abs) if args.limit == 0 else os.listdir(suite_path_abs)[:args.limit] + print(f"Processing {len(subfolders)} subfolders in {args.suite_path}") test_folder = 'tests' - for subfolder in args.cases: + + for subfolder in subfolders: # create an equivalently named folder in the starting directory os.chdir(args.suite_path) print(f"Processing {subfolder}") From a6e7d65112d57c07488f53a4e5a77040cc40a4ee Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Mon, 4 Nov 2024 15:10:39 +0000 Subject: [PATCH 07/22] correct handling of cases in proces_test_suite script --- test_suite/process_test_suite.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test_suite/process_test_suite.py b/test_suite/process_test_suite.py index 643175e4..9b211172 100755 --- a/test_suite/process_test_suite.py +++ b/test_suite/process_test_suite.py @@ -47,8 +47,9 @@ def parse_arguments(): parser.add_argument( "--cases", - action="store", - type=list, + action="extend", + nargs="+", + type=str, default=[], help="Limit to the cases listed in the file. Empty list means no limit", ) From 43e2d40bef78ae10732016286e6ccdabafa21a4d Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Mon, 4 Nov 2024 15:15:07 +0000 Subject: [PATCH 08/22] add full stop ad end of sentence in compatibility check messages in check_file_compatibility_test function --- utils/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/__init__.py b/utils/__init__.py index a7592a85..cd74f0cf 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -442,11 +442,11 @@ def check_file_compatibility_test(engine, model_filepath, experiment_filepath): if input_filetypes_tuple in engine_filetypes_tuple_list: file_types = [TYPES[i] for i in input_filetypes_tuple] - return 'pass', (f"The file extensions {input_filetypes_tuple} suggest the input file types are '{file_types}'. {compatible_filetypes} are compatible with {engine}") + return 'pass', (f"The file extensions {input_filetypes_tuple} suggest the input file types are '{file_types}'. {compatible_filetypes} are compatible with {engine}.") if 'xml' in input_filetypes_tuple: - return 'unsure', (f"The file extensions of the input files are '{input_filetypes_tuple}'. These may be compatible with {engine}. {compatible_filetypes} are compatible with {engine}") + return 'unsure', (f"The file extensions of the input files are '{input_filetypes_tuple}'. These may be compatible with {engine}. {compatible_filetypes} are compatible with {engine}.") else: - return 'FAIL', (f"The file extensions {input_filetypes_tuple} suggest the input file types are not compatibe with {engine}. {compatible_filetypes} are compatible with {engine}") + return 'FAIL', (f"The file extensions {input_filetypes_tuple} suggest the input file types are not compatibe with {engine}. {compatible_filetypes} are compatible with {engine}.") def collapsible_content(content, title='Details'): From 5cd032878d8661f8125624aa210095511023cda2 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Mon, 4 Nov 2024 15:28:52 +0000 Subject: [PATCH 09/22] exclude files ending with 'omex' in test suite results table --- .../results_compatibility_biosimulators.md | 46 +++++++++--------- .../test_00001/00001-sbml-l3v2-sedml.omex | Bin 1989 -> 0 bytes .../results_compatibility_biosimulators.md | 46 +++++++++--------- .../results_compatibility_biosimulators.md | 46 +++++++++--------- test_suite/test_test_suite_results_table.py | 4 +- 5 files changed, 72 insertions(+), 70 deletions(-) delete mode 100644 test_suite/test_00001/00001-sbml-l3v2-sedml.omex diff --git a/SBML/tests/results_compatibility_biosimulators.md b/SBML/tests/results_compatibility_biosimulators.md index 2e280e3c..1e52472d 100644 --- a/SBML/tests/results_compatibility_biosimulators.md +++ b/SBML/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ -| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps

|
❌ FAILERROR MESSAGE:
Reached maximum number of steps

| plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
✅ PASSview
download
logs

|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici.
|
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps

|
❌ FAILERROR MESSAGE:
Reached maximum number of steps

| plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy.
|
✅ PASSview
download
logs

|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell.
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file diff --git a/test_suite/test_00001/00001-sbml-l3v2-sedml.omex b/test_suite/test_00001/00001-sbml-l3v2-sedml.omex deleted file mode 100644 index ec0894cacfe5ae5324b2024f3020fb40a845b0c2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1989 zcmZ`)XH*jg7Y)m@2^#@RAZ!Q?1ft9`+d?owmh4qo3CIZ3f;ROBq$7pAWU+kC z;+X*e?sE+Eyy@@bjSW+a3Jj>kcOzM(fyp%aP8Nc0{e0#?VP!`&;}M@BnQYP1b>UHw zL8oSIQwrMaRSuMLHpYFrVQ4g3n2wq-tP%%`xr)auT#SnQB?ndSNTKYf(&^}jQVsP) ztp>3}kJ8e{1C}2S9@YW#_mFL-&QjO%Ib1s;3RK#*z($j}_z|J*LqwRgtML&ajHcE9(#wVhk@&K1NF(KeBF?QQn8yRKqj#U^~(NI}k;%jeUu zkQnn^;nst|X!c2kBi&71O3wP0S1znx#@O1e4@yT#gUm)?PO3jUJW0BoD7qO$F{SD8 z#faJ}S;rrVKy^?*!CRQBy7*4I|L|B#xw9M$kdOXCqwXWx@Uj3qO7DHi;Q7ahY27*<3#;wNGOqE1gnI&dyJyYOe97QhTeN`|c9!|qP zqV1HKF(b{hQVI{R7JZ6SYaXKcA=RSgWSKP6%L3rzVWCb|X6mqCyokap`N}H!imKCY zyEZv3LjYX)$fl{KsJk{KZv%cMNsE}=A28fl{7F0NfdFHtO6+zE(f~R5ctbP;WT>0G z#cy_9K*z<#^?jmmqL$r;kB`bTu#He}KdA>X)+o?F7lCe1CyyI~w4Bf*usl6M#vEDs z<7FTIeTT3mG;^ebf##tFO11r>SQuipK=nUwBEXlNYW7NIZtEToL6AH#Ny48kIc4fs z%008gA7-V!ovKi&_b()bAFo=+_TpBw!6e5wh$@{q*@Q0JnX)z&>zfR1U)KcJ8@r{( z5J{b6(RGL4Xf5-_dHaO$NT@i^glSMiT&~2N+`UPxM|RjP{eT9`kpUNd*R1q>)*4%L zI(L~Rj-aQUZ-79Qd-nQ*uKBnqDXChF0ho~%1P zn^zQL!oNvET~R!tfdcXLAYM-QKBG2ezV=s`mzLDn`SwM`fL)Y#+l}O!nb8_TYr3m@ zxgr0P_>R}#YST#qRh_5Sf(_bJK%^09C04o9BUL}F<@A)Q=JC~nz->bkJ?Vi_Hg zFCx7S##cU$@}|0M{)AJ|NKDa4{Ed5An(328Mz+n<&9%36{3J@(W*p#eW6c{&IwtWz z=lst93xOQ~5Ii>)^t{v|Sg*hUNB}HCC7_o_wK3m~iY!BNLuA%v_}6 z8BBo)GoN(v1?5Ug3X<`9SRc={mlw@X^zJDanD7P5q$tQqPJZaMkV5D6w5DXf@or3+uwqIBICb4p=4ytgn}q_WQdbmH zX8x2qRf!7IeKl8r*(qEJQYgV3-M=zuejL~;(rizr$V+}_0J(Q>D|4L7$0bWuCaK+| zDvi1kI5v=geEE!q?6lj2F;vGX}xjC%Ij_1(Qa+~O*p z-trRMG1gonoTSHVn0Ts=-c}m#w_5-XiRDb#wUI9_qiqW(ZQx4#ya!&I0;zfMeNE!* zZP#**Ga#LoLC@~$=CeXDF$)3yfBc&7@CCjO!+$FOnHK-m0RT-2TufhO$Jerd b^TOY<8?6883@ZfNg)c)a=S@1t)4$lCR#txD diff --git a/test_suite/test_00001/tests/results_compatibility_biosimulators.md b/test_suite/test_00001/tests/results_compatibility_biosimulators.md index 42a52340..90fe7e21 100644 --- a/test_suite/test_00001/tests/results_compatibility_biosimulators.md +++ b/test_suite/test_00001/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ -| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
❌ FAILThe file extensions other suggest the input file types are not compatibe with amici. ['SBML', 'SED-ML'] are compatible with amici
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
❌ FAILThe file extensions other suggest the input file types are not compatibe with cbmpy. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
❌ FAILThe file extensions other suggest the input file types are not compatibe with cobrapy. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
❌ FAILThe file extensions other suggest the input file types are not compatibe with copasi. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
❌ FAILThe file extensions other suggest the input file types are not compatibe with gillespy2. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:
Output start time: 0.0
Output end time: 5.0
Number of steps: 50

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:
Output start time: 0.0
Output end time: 5.0
Number of steps: 50

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
❌ FAILThe file extensions other suggest the input file types are not compatibe with libsbmlsim. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
❌ FAILThe file extensions other suggest the input file types are not compatibe with masspy. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']
- /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']

Only following targets are supported:
- M_S1
- M_S2
- R_reaction1
- S1
- S2
- k1
- reaction1

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
❌ FAILThe file extensions other suggest the input file types are not compatibe with pysces. ['SBML', 'SED-ML'] are compatible with pysces
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
❌ FAILThe file extensions other suggest the input file types are not compatibe with tellurium. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
❌ FAILThe file extensions other suggest the input file types are not compatibe with vcell. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions other suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with amici. ['SBML', 'SED-ML'] are compatible with amici.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cbmpy. ['SBML', 'SED-ML'] are compatible with cbmpy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cobrapy. ['SBML', 'SED-ML'] are compatible with cobrapy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with copasi. ['SBML', 'SED-ML'] are compatible with copasi.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with gillespy2. ['SBML', 'SED-ML'] are compatible with gillespy2.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:
Output start time: 0.0
Output end time: 5.0
Number of steps: 50

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:
Output start time: 0.0
Output end time: 5.0
Number of steps: 50

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with libsbmlsim. ['SBML', 'SED-ML'] are compatible with libsbmlsim.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with masspy. ['SBML', 'SED-ML'] are compatible with masspy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']
- /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']

Only following targets are supported:
- M_S1
- M_S2
- R_reaction1
- S1
- S2
- k1
- reaction1

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with opencor. ['CellML', 'SED-ML'] are compatible with opencor.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with pysces. ['SBML', 'SED-ML'] are compatible with pysces.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with tellurium. ['SBML', 'SED-ML'] are compatible with tellurium.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with vcell. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell.
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with xpp. ['XPP', 'SED-ML'] are compatible with xpp.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file diff --git a/test_suite/test_01186/tests/results_compatibility_biosimulators.md b/test_suite/test_01186/tests/results_compatibility_biosimulators.md index be3b84fe..0964ba94 100644 --- a/test_suite/test_01186/tests/results_compatibility_biosimulators.md +++ b/test_suite/test_01186/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ -| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------|:---------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with amici. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp267694` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp640928` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp347049` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp46347` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp838310` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp433696` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cbmpy. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp528257` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp385050` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cobrapy. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp171288` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp413781` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with copasi. ['SBML', 'SED-ML'] are compatible with copasi
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp860188` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp332181` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with gillespy2. ['SBML', 'SED-ML'] are compatible with gillespy2
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp595452` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp697896` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp956508` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp90777` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with libsbmlsim. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp385105` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp39181` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with masspy. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp581425` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp205834` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with pysces. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp956852` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp186426` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp868261` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp37134` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with tellurium. ['SBML', 'SED-ML'] are compatible with tellurium
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp399285` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp453545` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with vcell. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------|:---------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with amici. ['SBML', 'SED-ML'] are compatible with amici.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp267694` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp640928` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp347049` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp46347` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp838310` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp433696` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cbmpy. ['SBML', 'SED-ML'] are compatible with cbmpy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp528257` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp385050` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cobrapy. ['SBML', 'SED-ML'] are compatible with cobrapy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp171288` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp413781` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with copasi. ['SBML', 'SED-ML'] are compatible with copasi.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp860188` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp332181` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with gillespy2. ['SBML', 'SED-ML'] are compatible with gillespy2.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp595452` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp697896` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp956508` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp90777` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with libsbmlsim. ['SBML', 'SED-ML'] are compatible with libsbmlsim.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp385105` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp39181` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with masspy. ['SBML', 'SED-ML'] are compatible with masspy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp581425` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp205834` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with opencor. ['CellML', 'SED-ML'] are compatible with opencor.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with pysces. ['SBML', 'SED-ML'] are compatible with pysces.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp956852` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp186426` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp868261` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp37134` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with tellurium. ['SBML', 'SED-ML'] are compatible with tellurium.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp399285` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp453545` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with vcell. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell.
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with xpp. ['XPP', 'SED-ML'] are compatible with xpp.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file diff --git a/test_suite/test_test_suite_results_table.py b/test_suite/test_test_suite_results_table.py index 7a94e34c..b849257e 100644 --- a/test_suite/test_test_suite_results_table.py +++ b/test_suite/test_test_suite_results_table.py @@ -50,7 +50,9 @@ def create_test_suite_results_tables(): # get sbml filename with reg ex (it should contain sbml but not sedml) sbml_file_name = [f for f in os.listdir(subfolder_path) if 'sbml' in f and 'sedml' not in f][0] - sedml_file_name = [f for f in os.listdir(subfolder_path) if 'sedml' in f][0] + # also sbml file does not end with omex + sbml_file_name = [f for f in os.listdir(subfolder_path) if 'sbml' in f and 'sedml' not in f and not f.endswith('omex')][0] + sedml_file_name = [f for f in os.listdir(subfolder_path) if 'sedml' in f and not f.endswith('omex')][0] results_table = utils.create_combined_results_table(results["remote"], results["local"], From 744a15ec9cbcd54d84d8d40507eac78561e2d59b Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Mon, 4 Nov 2024 16:46:12 +0000 Subject: [PATCH 10/22] Improve compatibility messages. When files have an .xml extension but 'sbml' or 'sbml' and 'sedml' in the filename they can be labeled as SBML and SEDML (test suite) --- .../results_compatibility_biosimulators.md | 46 +++++++------- .../results_compatibility_biosimulators.md | 46 +++++++------- .../results_compatibility_biosimulators.md | 46 +++++++------- utils/__init__.py | 63 ++++++++++++------- 4 files changed, 110 insertions(+), 91 deletions(-) diff --git a/SBML/tests/results_compatibility_biosimulators.md b/SBML/tests/results_compatibility_biosimulators.md index 1e52472d..3092d5e7 100644 --- a/SBML/tests/results_compatibility_biosimulators.md +++ b/SBML/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ -| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici.
|
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps

|
❌ FAILERROR MESSAGE:
Reached maximum number of steps

| plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy.
|
✅ PASSview
download
logs

|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell.
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici.
|
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps

|
❌ FAILERROR MESSAGE:
Reached maximum number of steps

| plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types may not be compatibe with bionetgen.

['BNGL', 'SED-ML'] are compatible with bionetgen.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types may not be compatibe with boolnet.

['SBML-qual', 'SED-ML'] are compatible with boolnet.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types may not be compatibe with brian2.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types may not be compatibe with ginsim.

['SBML-qual', 'SED-ML'] are compatible with ginsim.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy.
|
✅ PASSview
download
logs

|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types may not be compatibe with netpyne.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types may not be compatibe with neuron.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types may not be compatibe with opencor.

['CellML', 'SED-ML'] are compatible with opencor.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types may not be compatibe with pyneuroml.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types may not be compatibe with rbapy.

['RBApy', 'SED-ML'] are compatible with rbapy.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types may not be compatibe with smoldyn.

['Smoldyn', 'SED-ML'] are compatible with smoldyn.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell.
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types may not be compatibe with xpp.

['XPP', 'SED-ML'] are compatible with xpp.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file diff --git a/test_suite/test_00001/tests/results_compatibility_biosimulators.md b/test_suite/test_00001/tests/results_compatibility_biosimulators.md index 90fe7e21..60056dcf 100644 --- a/test_suite/test_00001/tests/results_compatibility_biosimulators.md +++ b/test_suite/test_00001/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ -| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with amici. ['SBML', 'SED-ML'] are compatible with amici.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cbmpy. ['SBML', 'SED-ML'] are compatible with cbmpy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cobrapy. ['SBML', 'SED-ML'] are compatible with cobrapy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with copasi. ['SBML', 'SED-ML'] are compatible with copasi.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with gillespy2. ['SBML', 'SED-ML'] are compatible with gillespy2.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:
Output start time: 0.0
Output end time: 5.0
Number of steps: 50

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:
Output start time: 0.0
Output end time: 5.0
Number of steps: 50

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with libsbmlsim. ['SBML', 'SED-ML'] are compatible with libsbmlsim.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with masspy. ['SBML', 'SED-ML'] are compatible with masspy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']
- /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']

Only following targets are supported:
- M_S1
- M_S2
- R_reaction1
- S1
- S2
- k1
- reaction1

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with opencor. ['CellML', 'SED-ML'] are compatible with opencor.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with pysces. ['SBML', 'SED-ML'] are compatible with pysces.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with tellurium. ['SBML', 'SED-ML'] are compatible with tellurium.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with vcell. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell.
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with xpp. ['XPP', 'SED-ML'] are compatible with xpp.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with amici.

['SBML', 'SED-ML'] are compatible with amici.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with bionetgen.

['BNGL', 'SED-ML'] are compatible with bionetgen.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with boolnet.

['SBML-qual', 'SED-ML'] are compatible with boolnet.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with brian2.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with cbmpy.

['SBML', 'SED-ML'] are compatible with cbmpy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with cobrapy.

['SBML', 'SED-ML'] are compatible with cobrapy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with copasi.

['SBML', 'SED-ML'] are compatible with copasi.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with gillespy2.

['SBML', 'SED-ML'] are compatible with gillespy2.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with ginsim.

['SBML-qual', 'SED-ML'] are compatible with ginsim.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:
Output start time: 0.0
Output end time: 5.0
Number of steps: 50

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:
Output start time: 0.0
Output end time: 5.0
Number of steps: 50

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with libsbmlsim.

['SBML', 'SED-ML'] are compatible with libsbmlsim.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with masspy.

['SBML', 'SED-ML'] are compatible with masspy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']
- /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']

Only following targets are supported:
- M_S1
- M_S2
- R_reaction1
- S1
- S2
- k1
- reaction1

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with netpyne.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with neuron.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with opencor.

['CellML', 'SED-ML'] are compatible with opencor.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with pyneuroml.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with pysces.

['SBML', 'SED-ML'] are compatible with pysces.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with rbapy.

['RBApy', 'SED-ML'] are compatible with rbapy.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with smoldyn.

['Smoldyn', 'SED-ML'] are compatible with smoldyn.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with tellurium.

['SBML', 'SED-ML'] are compatible with tellurium.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with vcell.

['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell.
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with xpp.

['XPP', 'SED-ML'] are compatible with xpp.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file diff --git a/test_suite/test_01186/tests/results_compatibility_biosimulators.md b/test_suite/test_01186/tests/results_compatibility_biosimulators.md index 0964ba94..b6f70c9c 100644 --- a/test_suite/test_01186/tests/results_compatibility_biosimulators.md +++ b/test_suite/test_01186/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ -| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------|:---------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with amici. ['SBML', 'SED-ML'] are compatible with amici.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp267694` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp640928` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp347049` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp46347` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp838310` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp433696` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cbmpy. ['SBML', 'SED-ML'] are compatible with cbmpy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp528257` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp385050` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with cobrapy. ['SBML', 'SED-ML'] are compatible with cobrapy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp171288` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp413781` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with copasi. ['SBML', 'SED-ML'] are compatible with copasi.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp860188` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp332181` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with gillespy2. ['SBML', 'SED-ML'] are compatible with gillespy2.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp595452` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp697896` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp956508` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp90777` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with libsbmlsim. ['SBML', 'SED-ML'] are compatible with libsbmlsim.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp385105` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp39181` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with masspy. ['SBML', 'SED-ML'] are compatible with masspy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp581425` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp205834` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with opencor. ['CellML', 'SED-ML'] are compatible with opencor.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with pysces. ['SBML', 'SED-ML'] are compatible with pysces.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp956852` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp186426` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp868261` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp37134` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with tellurium. ['SBML', 'SED-ML'] are compatible with tellurium.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp399285` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp453545` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
⚠ WARNINGThe file extensions of the input files are '('xml', 'xml')'. These may be compatible with vcell. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell.
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions of the input files are '('xml', 'xml')'. These may be compatible with xpp. ['XPP', 'SED-ML'] are compatible with xpp.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------|:---------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with amici.

['SBML', 'SED-ML'] are compatible with amici.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp267694` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp640928` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with bionetgen.

['BNGL', 'SED-ML'] are compatible with bionetgen.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp347049` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp46347` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with boolnet.

['SBML-qual', 'SED-ML'] are compatible with boolnet.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp838310` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp433696` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with brian2.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with cbmpy.

['SBML', 'SED-ML'] are compatible with cbmpy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp528257` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp385050` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with cobrapy.

['SBML', 'SED-ML'] are compatible with cobrapy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp171288` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp413781` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with copasi.

['SBML', 'SED-ML'] are compatible with copasi.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp860188` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp332181` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with gillespy2.

['SBML', 'SED-ML'] are compatible with gillespy2.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp595452` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp697896` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with ginsim.

['SBML-qual', 'SED-ML'] are compatible with ginsim.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp956508` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp90777` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with libsbmlsim.

['SBML', 'SED-ML'] are compatible with libsbmlsim.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp385105` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp39181` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with masspy.

['SBML', 'SED-ML'] are compatible with masspy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp581425` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp205834` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with netpyne.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with neuron.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with opencor.

['CellML', 'SED-ML'] are compatible with opencor.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with pyneuroml.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with pysces.

['SBML', 'SED-ML'] are compatible with pysces.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp956852` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp186426` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with rbapy.

['RBApy', 'SED-ML'] are compatible with rbapy.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp868261` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp37134` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with smoldyn.

['Smoldyn', 'SED-ML'] are compatible with smoldyn.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with tellurium.

['SBML', 'SED-ML'] are compatible with tellurium.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp399285` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp453545` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with vcell.

['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell.
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with xpp.

['XPP', 'SED-ML'] are compatible with xpp.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file diff --git a/utils/__init__.py b/utils/__init__.py index cd74f0cf..5a23c134 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -432,21 +432,27 @@ def ansi_to_html(text): def check_file_compatibility_test(engine, model_filepath, experiment_filepath): ''' Check if the file extensions suggest the file types are compatible with the engine. - This is done by comparing the file extensions of the model and experiment files with the file types supported by the engine. - For SED-ML files, the expected file extension is '.sedml'. For SBML files, the expected file extension is '.sbml'. + Only .sedml and .sbml files, and .xml files with 'sedml' and/or 'sbml' in their filename + are considered at this moment. It can be extended to other cases if needed in the future. ''' - input_filetypes_tuple = get_filetypes(model_filepath, experiment_filepath) + file_extensions = get_filetypes(model_filepath, experiment_filepath) engine_filetypes_tuple_list = ENGINES[engine]['formats'] flat_engine_filetypes_tuple_list = [item for sublist in engine_filetypes_tuple_list for item in sublist if sublist != 'unclear'] compatible_filetypes = [TYPES[i] for i in flat_engine_filetypes_tuple_list if i in list(TYPES.keys())] - if input_filetypes_tuple in engine_filetypes_tuple_list: - file_types = [TYPES[i] for i in input_filetypes_tuple] - return 'pass', (f"The file extensions {input_filetypes_tuple} suggest the input file types are '{file_types}'. {compatible_filetypes} are compatible with {engine}.") - if 'xml' in input_filetypes_tuple: - return 'unsure', (f"The file extensions of the input files are '{input_filetypes_tuple}'. These may be compatible with {engine}. {compatible_filetypes} are compatible with {engine}.") + if file_extensions in engine_filetypes_tuple_list: + file_types = [TYPES[i] for i in file_extensions] + return 'pass', (f"The file extensions {file_extensions} suggest the input file types are '{file_types}'. {compatible_filetypes} are compatible with {engine}.") + if 'xml' in file_extensions: + if 'sbml' in model_filepath and 'sedml' not in model_filepath: + if 'sbml' in experiment_filepath and 'sedml' in experiment_filepath: + file_types = ('sbml', 'sedml') + if file_types in engine_filetypes_tuple_list: + return 'pass', (f"The filenames '{model_filepath}' and '{experiment_filepath}' suggest the input files are {[TYPES[i] for i in file_types]} which is compatible with {engine}.

{compatible_filetypes} are compatible with {engine}.") + else: + return 'unsure', (f"The filenames '{model_filepath}' and '{experiment_filepath}' suggest the input files are {[TYPES[i] for i in file_types]} which is not compatible with {engine}.

{compatible_filetypes} are compatible with {engine}.") else: - return 'FAIL', (f"The file extensions {input_filetypes_tuple} suggest the input file types are not compatibe with {engine}. {compatible_filetypes} are compatible with {engine}.") + return 'unsure', (f"The file extensions {file_extensions} suggest the input file types may not be compatibe with {engine}.

{compatible_filetypes} are compatible with {engine}.") def collapsible_content(content, title='Details'): @@ -459,7 +465,7 @@ def collapsible_content(content, title='Details'): return f'
{title}{content}
' else: return f'{title}' - + def get_filetypes(model_filepath, simulation_filepath): """ Get the filetypes of the model and simulation files @@ -467,17 +473,29 @@ def get_filetypes(model_filepath, simulation_filepath): Input: model_filepath, simulation_filepath Output: tuple of filetypes """ - if model_filepath.endswith(".sbml") and simulation_filepath.endswith(".sedml"): - filetypes = ('sbml', 'sedml') - elif model_filepath.endswith(".xml") and simulation_filepath.endswith(".xml"): - filetypes = ('xml', 'xml') - elif model_filepath.endswith(".xml") and simulation_filepath.endswith(".sedml"): - filetypes = ('xml', 'sedml') - elif model_filepath.endswith(".sbml") and simulation_filepath.endswith(".xml"): - filetypes = ('sbml', 'xml') - else: - filetypes = "other" - return filetypes + model_ext = os.path.splitext(model_filepath)[-1].lstrip('.') + simulation_ext = os.path.splitext(simulation_filepath)[-1].lstrip('.') + + return (model_ext, simulation_ext) + +# def get_filetypes(model_filepath, simulation_filepath): +# """ +# Get the filetypes of the model and simulation files + +# Input: model_filepath, simulation_filepath +# Output: tuple of filetypes +# """ +# if model_filepath.endswith(".sbml") and simulation_filepath.endswith(".sedml"): +# filetypes = ('sbml', 'sedml') +# elif model_filepath.endswith(".xml") and simulation_filepath.endswith(".xml"): +# filetypes = ('xml', 'xml') +# elif model_filepath.endswith(".xml") and simulation_filepath.endswith(".sedml"): +# filetypes = ('xml', 'sedml') +# elif model_filepath.endswith(".sbml") and simulation_filepath.endswith(".xml"): +# filetypes = ('sbml', 'xml') +# else: +# filetypes = "other" +# return filetypes def delete_output_folder(output_dir): ''' @@ -1034,6 +1052,7 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): pass_html = "✅ PASS" fail_html = "❌ FAIL" warning_html = "⚠ WARNING" + unsure_html = "❓ UNSURE" xfail_html = "⚠ XFAIL" for e in results.keys(): @@ -1072,7 +1091,7 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): if compatibility_content[0] == 'pass': results_table.loc[results_table[ENGINE] == e, COMPAT] = collapsible_content(compatibility_content[1], title=f'{pass_html}') elif compatibility_content[0] == 'unsure': - results_table.loc[results_table[ENGINE] == e, COMPAT] = collapsible_content(compatibility_content[1], title=f'{warning_html}') + results_table.loc[results_table[ENGINE] == e, COMPAT] = collapsible_content(compatibility_content[1], title=f'{unsure_html}') else: results_table.loc[results_table[ENGINE] == e, COMPAT] = collapsible_content(compatibility_content[1], title=f'{fail_html}') From ccf8305284f1e67c8d2fee51e4aa9b7afe8eee40 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Tue, 5 Nov 2024 11:07:58 +0000 Subject: [PATCH 11/22] draft BioModels compatibility table --- ...t_biomodels_compatibility_biosimulators.py | 247 ++++++++++++++++++ 1 file changed, 247 insertions(+) create mode 100644 BioModels/test_biomodels_compatibility_biosimulators.py diff --git a/BioModels/test_biomodels_compatibility_biosimulators.py b/BioModels/test_biomodels_compatibility_biosimulators.py new file mode 100644 index 00000000..4f50b5bc --- /dev/null +++ b/BioModels/test_biomodels_compatibility_biosimulators.py @@ -0,0 +1,247 @@ +#!/usr/bin/env python3 + +md_description = \ +''' +Download and run validation tests on all the curated models from BioModels https://www.ebi.ac.uk/biomodels. +The final step is to run the model in tellurium, +only models specified in SBML with a matching SEDML file are run in tellurium. +Errors or validation failures are reported at each step. +Outputs to the Markdown Table below. + +'valid-sbml-units' enforces strict unit checking, 'broken-ref' indicates that the SEDML file contained +a broken source='model.xml' reference which was corrected to the name of the model's provided SBML file. +''' + +import pyneuroml.sbml #for validate_sbml_files +import pyneuroml.sedml #for validate_sedml_files + +import re +import os +import urllib +import sys + +sys.path.append("..") +import utils + +API_URL: str = "https://www.ebi.ac.uk/biomodels" + +out_format="json" +max_count = 0 #0 for unlimited + +#local temporary storage of the model files +#this is independent of caching, and still happens when caching is turned off +#this allows the model to be executed and the files manually examined etc +tmp_dir = "tmplocalfiles" + +#suppress stdout/err output from validation functions to make progress counter readable +suppress_stdout = True +suppress_stderr = True + +#whether to replace "model.xml" in the sedml file with the name of the actual sbml file +fix_broken_ref = True + +#skip tests that cause the script to be killed due to lack of RAM +#needs at least 8GB +skip = {} + +def download_file(model_id,filename,output_file,cache): + ''' + request the given file and save it to disk + ''' + + qfilename = urllib.parse.quote_plus(filename) + + response = cache.do_request(f'{API_URL}/model/download/{model_id}?filename={qfilename}').content + + with open(output_file,"wb") as fout: + fout.write(response) + +def replace_model_xml(sedml_path,sbml_filename): + ''' + if the SEDML refers to a generic "model.xml" file + and the SBML file is not called this + replace the SEDML reference with the actual SBML filename + + method used assumes 'source="model.xml"' will only + occur in the SBML file reference + which was true at time of testing on current BioModels release + + returns True if the SBML reference already seemed valid + ''' + + if sbml_filename == "model.xml": return True + + with open(sedml_path,encoding='utf-8') as f: + data = f.read() + + if not 'source="model.xml"' in data: return True + + data = data.replace('source="model.xml"',f'source="{sbml_filename}"') + + with open(f'{sedml_path}',"w",encoding="utf-8") as fout: + fout.write(data) + + return False + +def validate_sbml_file(model_id,mtab,info,cache,sup): + ''' + tasks relating to validating the SBML file + return None to indicate aborting any further tests on this model + otherwise return the SBML filename + ''' + + #handle only single SBML files + if not info['format']['name'] == "SBML": + mtab['valid_sbml'] = ['NonSBML', f"{info['format']['name']}:{info['files']['main']}"] + return None + + if len(info['files']['main']) > 1: + mtab['valid_sbml'] = ['MultipleSBMLs',f"{info['files']['main']}"] + return None + + if len(info['files']['main']) < 1: + mtab['valid_sbml'] = ['NoSBMLs',f"{info['files']['main']}"] + return None + + #download the sbml file + sbml_file = info['files']['main'][0]['name'] + try: + download_file(model_id,sbml_file,sbml_file,cache) + except Exception as e: + mtab['valid_sbml'] = ['DownloadFail',f"{sbml_file} {e}"] + return None + + #validate the sbml file + sup.suppress() #suppress validation warning/error messages + valid_sbml = pyneuroml.sbml.validate_sbml_files([sbml_file], strict_units=False) + valid_sbml_units = pyneuroml.sbml.validate_sbml_files([sbml_file], strict_units=True) + sup.restore() + + mtab['valid_sbml'] = ['pass' if valid_sbml else 'FAIL', f'[{sbml_file}]({API_URL}/{model_id}#Files)'] + mtab['valid_sbml_units'] = 'pass' if valid_sbml_units else 'FAIL' + + return sbml_file + +def validate_sedml_file(model_id,mtab,info,cache,sup,sbml_file): + ''' + tasks relating to validating the SEDML file + return None to indicate aborting any further tests on this model + otherwise return the SEDML filename + ''' + + #must have a SEDML file as well in order to be executed + if not 'additional' in info['files']: + mtab['valid_sedml'] = f"NoSEDML" + return None + + sedml_file = [] + for file_info in info['files']['additional']: + pattern = 'SED[-]?ML' + target = f"{file_info['name']}|{file_info['description']}".upper() + if re.search(pattern,target): + sedml_file.append(file_info['name']) + + #require exactly one SEDML file + if len(sedml_file) == 0: + mtab['valid_sedml'] = "NoSEDML" + return None + + if len(sedml_file) > 1: + mtab['valid_sedml'] = ["MultipleSEDMLs",f"{sedml_file}"] + return None + + #download sedml file + sedml_file = sedml_file[0] + try: + download_file(model_id,sedml_file,sedml_file,cache) + except: + mtab['valid_sedml'] = ["DownloadFail",f"{sedml_file}"] + return None + + #if the sedml file contains a generic 'source="model.xml"' replace it with the sbml filename + if fix_broken_ref: + broken_ref = replace_model_xml(sedml_file,sbml_file) + mtab['broken_ref'] = 'pass' if broken_ref else 'FAIL' + else: + mtab['broken_ref'] = 'NA' + + sup.suppress() + valid_sedml = pyneuroml.sedml.validate_sedml_files([sedml_file]) + sup.restore() + mtab['valid_sedml'] = ['pass' if valid_sedml else 'FAIL', f'[{sedml_file}]({API_URL}/{model_id}#Files)'] + + return sedml_file + +def main(): + ''' + download the BioModel model files, run various validation steps + report the results as a markdown table README file with a summary row at the top + ''' + + #caching is used to prevent the need to download the same responses from the remote server multiple times during testing + #mode="off" to disable caching, "store" to wipe and store fresh results, "reuse" to use the stored cache + cache = utils.RequestCache(mode="auto",direc="cache") + + #accumulate results in columns defined by keys which correspond to the local variable names to be used below + #to allow automated loading into the columns + column_labels = "Model |valid-sbml|valid-sbml-units|valid-sedml|broken-ref|tellurium" + column_keys = "model_desc|valid_sbml|valid_sbml_units|valid_sedml|broken_ref|tellurium_outcome" + mtab = utils.MarkdownTable(column_labels,column_keys) + + #allow stdout/stderr from validation tests to be suppressed to improve progress count visibility + sup = utils.SuppressOutput(stdout=suppress_stdout,stderr=suppress_stderr) + + #get list of all available models + model_ids = cache.do_request(f"{API_URL}/model/identifiers?format={out_format}").json()['models'] + count = 0 + starting_dir = os.getcwd() + + for model_id in model_ids[0:1]: + #allow testing on a small sample of models + if max_count > 0 and count >= max_count: break + count += 1 + print(f"\r{model_id} {count}/{len(model_ids)} ",end='') + + #only process curated models + #BIOMD ids should be the curated models + if not 'BIOMD' in model_id: + continue + + #skip if on the list to be skipped + if count in skip or model_id in skip: + continue + + #from this point the model will create an output row even if not all tests are run + mtab.new_row() #append empty placeholder row + info = cache.do_request(f"{API_URL}/{model_id}?format={out_format}").json() + + if len(info['name']) > 36: + model_summary = f"[{model_id}]({API_URL}/{model_id})
{info['name'][:30]}" + model_details = f"{info['name']}" + mtab['model_desc'] = mtab.make_fold(model_summary,model_details) + else: + mtab['model_desc'] = f"[{model_id}]({API_URL}/{model_id})
{info['name']}" + + #make temporary downloads of the sbml and sedml files + model_dir = os.path.join(starting_dir,tmp_dir,model_id) + os.makedirs(model_dir,exist_ok=True) + os.chdir(model_dir) + + #sbml file validation tasks, includes downloading a local copy + sbml_file = validate_sbml_file(model_id,mtab,info,cache,sup) + if not sbml_file: continue # no further tests possible + + sedml_file = validate_sedml_file(model_id,mtab,info,cache,sup,sbml_file) + if not sedml_file: continue # no further tests possible + + test_folder = 'tests' + engine_list = list(utils.ENGINES.keys()) + utils.run_biosimulators_remotely_and_locally(engine_list, + os.path.basename(sedml_file), + os.path.basename(sbml_file), + os.path.join(test_folder,'d1_plots_remote'), + os.path.join(test_folder,'d1_plots_local'), + test_folder=test_folder) + +if __name__ == "__main__": + main() \ No newline at end of file From 88ce0f4c44d23a575a99cfe5e4fb7db6ff0cc5d4 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Tue, 5 Nov 2024 11:49:37 +0000 Subject: [PATCH 12/22] store cache and sett Agg for matplotlib to prevent matplotlib windows opening --- BioModels/parse_biomodels.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BioModels/parse_biomodels.py b/BioModels/parse_biomodels.py index d5b0a6dd..b14bf041 100755 --- a/BioModels/parse_biomodels.py +++ b/BioModels/parse_biomodels.py @@ -24,6 +24,8 @@ sys.path.append("..") import utils +matplotlib.use('Agg') #prevent matplotlib from trying to open a window + API_URL: str = "https://www.ebi.ac.uk/biomodels" out_format="json" @@ -181,7 +183,7 @@ def main(): #caching is used to prevent the need to download the same responses from the remote server multiple times during testing #mode="off" to disable caching, "store" to wipe and store fresh results, "reuse" to use the stored cache - cache = utils.RequestCache(mode="auto",direc="cache") + cache = utils.RequestCache(mode="store",direc="cache") #accumulate results in columns defined by keys which correspond to the local variable names to be used below #to allow automated loading into the columns From dbe378b0067c107de0cfb62f15475305c23c19b1 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Wed, 6 Nov 2024 10:44:11 +0000 Subject: [PATCH 13/22] add BIOMD0000000001 results table --- .../BIOMD0000000001/BIOMD0000000001_url.omex | Bin 0 -> 8231 bytes .../BIOMD0000000001/BIOMD0000000001_url.sedml | 634 ++++ .../BIOMD0000000001/BIOMD0000000001_url.xml | 1343 +++++++++ .../amici_autogen_plot_for_task1.pdf | Bin 0 -> 11104 bytes .../copasi_autogen_plot_for_task1.pdf | Bin 0 -> 11133 bytes .../pysces_autogen_plot_for_task1.pdf | Bin 0 -> 11174 bytes .../tellurium_autogen_plot_for_task1.pdf | Bin 0 -> 11134 bytes .../vcell_autogen_plot_for_task1.pdf | Bin 0 -> 15029 bytes .../amici_autogen_plot_for_task1.pdf | Bin 0 -> 11110 bytes .../copasi_autogen_plot_for_task1.pdf | Bin 0 -> 11139 bytes .../masspy_autogen_plot_for_task1.pdf | Bin 0 -> 5954 bytes .../pysces_autogen_plot_for_task1.pdf | Bin 0 -> 11180 bytes .../tellurium_autogen_plot_for_task1.pdf | Bin 0 -> 11113 bytes .../results_compatibility_biosimulators.md | 23 + .../BIOMD0000000001/tests/results_local.json | 2167 ++++++++++++++ .../BIOMD0000000001/tests/results_remote.json | 2580 +++++++++++++++++ ...t_biomodels_compatibility_biosimulators.py | 19 +- BioModels/test_biomodels_results_table.py | 68 + 18 files changed, 6823 insertions(+), 11 deletions(-) create mode 100644 BioModels/BIOMD0000000001/BIOMD0000000001_url.omex create mode 100644 BioModels/BIOMD0000000001/BIOMD0000000001_url.sedml create mode 100644 BioModels/BIOMD0000000001/BIOMD0000000001_url.xml create mode 100644 BioModels/BIOMD0000000001/tests/d1_plots_local/amici_autogen_plot_for_task1.pdf create mode 100644 BioModels/BIOMD0000000001/tests/d1_plots_local/copasi_autogen_plot_for_task1.pdf create mode 100644 BioModels/BIOMD0000000001/tests/d1_plots_local/pysces_autogen_plot_for_task1.pdf create mode 100644 BioModels/BIOMD0000000001/tests/d1_plots_local/tellurium_autogen_plot_for_task1.pdf create mode 100644 BioModels/BIOMD0000000001/tests/d1_plots_local/vcell_autogen_plot_for_task1.pdf create mode 100644 BioModels/BIOMD0000000001/tests/d1_plots_remote/amici_autogen_plot_for_task1.pdf create mode 100644 BioModels/BIOMD0000000001/tests/d1_plots_remote/copasi_autogen_plot_for_task1.pdf create mode 100644 BioModels/BIOMD0000000001/tests/d1_plots_remote/masspy_autogen_plot_for_task1.pdf create mode 100644 BioModels/BIOMD0000000001/tests/d1_plots_remote/pysces_autogen_plot_for_task1.pdf create mode 100644 BioModels/BIOMD0000000001/tests/d1_plots_remote/tellurium_autogen_plot_for_task1.pdf create mode 100644 BioModels/BIOMD0000000001/tests/results_compatibility_biosimulators.md create mode 100644 BioModels/BIOMD0000000001/tests/results_local.json create mode 100644 BioModels/BIOMD0000000001/tests/results_remote.json create mode 100644 BioModels/test_biomodels_results_table.py diff --git a/BioModels/BIOMD0000000001/BIOMD0000000001_url.omex b/BioModels/BIOMD0000000001/BIOMD0000000001_url.omex new file mode 100644 index 0000000000000000000000000000000000000000..3c241672ff84ffedd8c59e99d3f15cd819e6bc9f GIT binary patch literal 8231 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 literal 0 HcmV?d00001 diff --git a/BioModels/BIOMD0000000001/BIOMD0000000001_url.sedml b/BioModels/BIOMD0000000001/BIOMD0000000001_url.sedml new file mode 100644 index 00000000..03dd1b45 --- /dev/null +++ b/BioModels/BIOMD0000000001/BIOMD0000000001_url.sedml @@ -0,0 +1,634 @@ + + + + + + + + + + + + + + + + + auto_time_for_task1_var + + + + + + + + auto_dg_for_task1_BLL__x + + + + + + + + auto_dg_for_task1_IL__x + + + + + + + + auto_dg_for_task1_AL__x + + + + + + + + auto_dg_for_task1_A__x + + + + + + + + auto_dg_for_task1_BL__x + + + + + + + + auto_dg_for_task1_B__x + + + + + + + + auto_dg_for_task1_DLL__x + + + + + + + + auto_dg_for_task1_D__x + + + + + + + + auto_dg_for_task1_ILL__x + + + + + + + + auto_dg_for_task1_DL__x + + + + + + + + auto_dg_for_task1_I__x + + + + + + + + auto_dg_for_task1_ALL__x + + + + + + + + auto_dg_for_task1_kf_0__x + + + + + + + + auto_dg_for_task1_kr_0__x + + + + + + + + auto_dg_for_task1_kf_1__x + + + + + + + + auto_dg_for_task1_kr_1__x + + + + + + + + auto_dg_for_task1_kf_2__x + + + + + + + + auto_dg_for_task1_kr_2__x + + + + + + + + auto_dg_for_task1_kf_3__x + + + + + + + + auto_dg_for_task1_kr_3__x + + + + + + + + auto_dg_for_task1_kf_4__x + + + + + + + + auto_dg_for_task1_kr_4__x + + + + + + + + auto_dg_for_task1_kf_5__x + + + + + + + + auto_dg_for_task1_kr_5__x + + + + + + + + auto_dg_for_task1_kf_6__x + + + + + + + + auto_dg_for_task1_kr_6__x + + + + + + + + auto_dg_for_task1_kf_7__x + + + + + + + + auto_dg_for_task1_kr_7__x + + + + + + + + auto_dg_for_task1_kf_8__x + + + + + + + + auto_dg_for_task1_kr_8__x + + + + + + + + auto_dg_for_task1_kf_9__x + + + + + + + + auto_dg_for_task1_kr_9__x + + + + + + + + auto_dg_for_task1_kf_10__x + + + + + + + + auto_dg_for_task1_kr_10__x + + + + + + + + auto_dg_for_task1_kf_11__x + + + + + + + + auto_dg_for_task1_kr_11__x + + + + + + + + auto_dg_for_task1_kf_12__x + + + + + + + + auto_dg_for_task1_kr_12__x + + + + + + + + auto_dg_for_task1_kf_13__x + + + + + + + + auto_dg_for_task1_kr_13__x + + + + + + + + auto_dg_for_task1_kf_14__x + + + + + + + + auto_dg_for_task1_kr_14__x + + + + + + + + auto_dg_for_task1_kf_15__x + + + + + + + + auto_dg_for_task1_kr_15__x + + + + + + + + auto_dg_for_task1_kf_16__x + + + + + + + + auto_dg_for_task1_kr_16__x + + + + + + + + auto_dg_for_task1_t2__x + + + + + + + + auto_dg_for_task1_comp1__x + + + + + + + + auto_dg_for_task1_React0__x + + + + + + + + auto_dg_for_task1_React1__x + + + + + + + + auto_dg_for_task1_React2__x + + + + + + + + auto_dg_for_task1_React3__x + + + + + + + + auto_dg_for_task1_React4__x + + + + + + + + auto_dg_for_task1_React5__x + + + + + + + + auto_dg_for_task1_React6__x + + + + + + + + auto_dg_for_task1_React7__x + + + + + + + + auto_dg_for_task1_React8__x + + + + + + + + auto_dg_for_task1_React9__x + + + + + + + + auto_dg_for_task1_React10__x + + + + + + + + auto_dg_for_task1_React11__x + + + + + + + + auto_dg_for_task1_React12__x + + + + + + + + auto_dg_for_task1_React13__x + + + + + + + + auto_dg_for_task1_React14__x + + + + + + + + auto_dg_for_task1_React15__x + + + + + + + + auto_dg_for_task1_React16__x + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/BioModels/BIOMD0000000001/BIOMD0000000001_url.xml b/BioModels/BIOMD0000000001/BIOMD0000000001_url.xml new file mode 100644 index 00000000..411e0c65 --- /dev/null +++ b/BioModels/BIOMD0000000001/BIOMD0000000001_url.xml @@ -0,0 +1,1343 @@ + + + + + +
Edelstein1996 - EPSP ACh event
+
+

Model of a nicotinic Excitatory Post-Synaptic Potential in a + Torpedo electric organ. Acetylcholine is not represented + explicitely, but by an event that changes the constants of + transition from unliganded to liganded.  +

+
+
+

This model has initially been encoded using StochSim.

+
+
+

This model is described in the article:

+ +
Edelstein SJ, Schaad O, Henry E, + Bertrand D, Changeux JP.
+
Biol Cybern 1996 Nov; 75(5): + 361-379
+

Abstract:

+
+

Nicotinic acetylcholine receptors are transmembrane + oligomeric proteins that mediate interconversions between open + and closed channel states under the control of + neurotransmitters. Fast in vitro chemical kinetics and in vivo + electrophysiological recordings are consistent with the + following multi-step scheme. Upon binding of agonists, receptor + molecules in the closed but activatable resting state (the + Basal state, B) undergo rapid transitions to states of higher + affinities with either open channels (the Active state, A) or + closed channels (the initial Inactivatable and fully + Desensitized states, I and D). In order to represent the + functional properties of such receptors, we have developed a + kinetic model that links conformational interconversion rates + to agonist binding and extends the general principles of the + Monod-Wyman-Changeux model of allosteric transitions. The + crucial assumption is that the linkage is controlled by the + position of the interconversion transition states on a + hypothetical linear reaction coordinate. Application of the + model to the peripheral nicotine acetylcholine receptor (nAChR) + accounts for the main properties of ligand-gating, including + single-channel events, and several new relationships are + predicted. Kinetic simulations reveal errors inherent in using + the dose-response analysis, but justify its application under + defined conditions. The model predicts that (in order to + overcome the intrinsic stability of the B state and to produce + the appropriate cooperativity) channel activation is driven by + an A state with a Kd in the 50 nM range, hence some 140-fold + stronger than the apparent affinity of the open state deduced + previously. According to the model, recovery from the + desensitized states may occur via rapid transit through the A + state with minimal channel opening, thus without necessarily + undergoing a distinct recovery pathway, as assumed in the + standard 'cycle' model. Transitions to the desensitized states + by low concentration 'pre-pulses' are predicted to occur + without significant channel opening, but equilibrium values of + IC50 can be obtained only with long pre-pulse times. + Predictions are also made concerning allosteric effectors and + their possible role in coincidence detection. In terms of + future developments, the analysis presented here provides a + physical basis for constructing more biologically realistic + models of synaptic modulation that may be applied to artificial + neural networks.

+
+
+
+

This model is hosted on + BioModels Database + and identified by: + BIOMD0000000001.

+

To cite BioModels Database, please use: + BioModels Database: + An enhanced, curated and annotated resource for published + quantitative kinetic models.

+
+
+

To the extent possible under law, all copyright and related or + neighbouring rights to this encoded model have been dedicated to + the public domain worldwide. Please refer to + CC0 + Public Domain Dedication for more information.

+
+ +
+ + + + + + + + Le Novère + Nicolas + + lenov@ebi.ac.uk + + EMBL-EBI + + + + + + 2005-02-02T14:56:11Z + + + 2017-05-19T14:33:51Z + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

biliganded basal state

+ +
+ + + + + + + + + + + + + +
+ + + +

monoliganded intermediate

+ +
+ + + + + + + + + + + + + +
+ + + +

monoliganded active state

+ +
+ + + + + + + + + + + + + +
+ + + +

unkiganded active state

+ +
+ + + + + + + + + + + + + +
+ + + +

monoliganded basal state

+ +
+ + + + + + + + + + + + + +
+ + + +

unliganded basal state

+ +
+ + + + + + + + + + + + + +
+ + + +

biliganded desensitised state

+ +
+ + + + + + + + + + + + + +
+ + + +

fully desensitised state

+ +
+ + + + + + + + + + + + + +
+ + + +

biliganded intermediate

+ +
+ + + + + + + + + + + + + +
+ + + +

monoliganded desensitised state

+ +
+ + + + + + + + + + + + + +
+ + + +

unliganted intermediate

+ +
+ + + + + + + + + + + + + +
+ + + +

biliganted active state

+ +
+ + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

first ligand on basal

+ +
+ + + + + + + + + + + + + + + + + + + + + +

kf_0 * B - kr_0 * BL

+ +
+ + + + comp1 + + + + + kf_0 + B + + + + kr_0 + BL + + + + +
+
+ + + +

second ligand on basal

+ +
+ + + + + + + + + + + + + + + + + + + + + +

kf_1 * BL - kr_1 * BLL

+ +
+ + + + comp1 + + + + + kf_1 + BL + + + + kr_1 + BLL + + + + +
+
+ + + +

opening of biliganded

+ +
+ + + + + + + + + + + + + + + + + + + + + +

kf_2 * BLL - kr_2 * ALL

+ +
+ + + + comp1 + + + + + kf_2 + BLL + + + + kr_2 + ALL + + + + +
+
+ + + +

first ligand on active

+ +
+ + + + + + + + + + + + + + + + + + + + + +

kf_3 * A - kr_3 * AL

+ +
+ + + + comp1 + + + + + kf_3 + A + + + + kr_3 + AL + + + + +
+
+ + + +

second ligand on active

+ +
+ + + + + + + + + + + + + + + + + + + + + +

kf_4 * AL - kr_4 * ALL

+ +
+ + + + comp1 + + + + + kf_4 + AL + + + + kr_4 + ALL + + + + +
+
+ + + +

opening of unliganded

+ +
+ + + + + + + + + + + + + + + + + + + + + +

kf_5 * B - kr_5 * A

+ +
+ + + + comp1 + + + + + kf_5 + B + + + + kr_5 + A + + + + +
+
+ + + +

opening of monoliganded

+ +
+ + + + + + + + + + + + + + + + + + + + + +

kf_6 * BL - kr_6 * AL

+ +
+ + + + comp1 + + + + + kf_6 + BL + + + + kr_6 + AL + + + + +
+
+ + + +

first ligand on intermediate

+ +
+ + + + + + + + + + + + + + + + + + + + + +

kf_7 * I - kr_7 * IL

+ +
+ + + + comp1 + + + + + kf_7 + I + + + + kr_7 + IL + + + + +
+
+ + + +

second ligand on intermediate

+ +
+ + + + + + + + + + + + + + + + + + + + + +

kf_8 * IL - kr_8 * ILL

+ +
+ + + + comp1 + + + + + kf_8 + IL + + + + kr_8 + ILL + + + + +
+
+ + + +

unliganded active <=> unliganded intermediate

+ +
+ + + + + + + + + + + + + + + + + + + + + +

kf_9 * A - kr_9 * I

+ +
+ + + + comp1 + + + + + kf_9 + A + + + + kr_9 + I + + + + +
+
+ + + +

monoliganded active <=> monoliganded intermediate

+ +
+ + + + + + + + + + + + + + + + + + + + + +

kf_10 * AL - kr_10 * IL

+ +
+ + + + comp1 + + + + + kf_10 + AL + + + + kr_10 + IL + + + + +
+
+ + + +

biliganded active <=> biliganded intermediate

+ +
+ + + + + + + + + + + + + + + + + + + + + +

kf_11 * ALL - kr_11 * ILL

+ +
+ + + + comp1 + + + + + kf_11 + ALL + + + + kr_11 + ILL + + + + +
+
+ + + +

first ligand on desensitised

+ +
+ + + + + + + + + + + + + + + + + + + + + +

kf_12 * D - kr_12 * DL

+ +
+ + + + comp1 + + + + + kf_12 + D + + + + kr_12 + DL + + + + +
+
+ + + +

second ligand on desensitised

+ +
+ + + + + + + + + + + + + + + + + + + + + +

kf_13 * DL - kr_13 * DLL

+ +
+ + + + comp1 + + + + + kf_13 + DL + + + + kr_13 + DLL + + + + +
+
+ + + +

unliganded intermediate <=> unliganded desensitised

+ +
+ + + + + + + + + +

kf_14 * I - kr_14 * D

+ +
+ + + + comp1 + + + + + kf_14 + I + + + + kr_14 + D + + + + +
+
+ + + +

monoliganded intermediate <=> monoliganded desensitised

+ +
+ + + + + + + + + +

kf_15 * IL - kr_15 * DL

+ +
+ + + + comp1 + + + + + kf_15 + IL + + + + kr_15 + DL + + + + +
+
+ + + +

biliganded intermediate <=> biliganded desensitised

+ +
+ + + + + + + + + +

kf_16 * ILL - kr_16 * DLL

+ +
+ + + + comp1 + + + + + kf_16 + ILL + + + + kr_16 + DLL + + + + +
+
+
+ + + + + + + + + + + + + + + + + + + time + t2 + + + + + + + 0 + + + + + 0 + + + + + 0 + + + + + 0 + + + + + 0 + + + + + 0 + + + + + 0 + + + + + 0 + + + + + +
+
\ No newline at end of file diff --git a/BioModels/BIOMD0000000001/tests/d1_plots_local/amici_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000001/tests/d1_plots_local/amici_autogen_plot_for_task1.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ce985de52d9ba2b372ee5b72755c44ffe0b8bfd2 GIT binary patch literal 11104 zcmb_?2|QKb7jH6OLxzyCV~oO`Cn9r{c?uyH*O0O6DioO#g(zc5l%z@=BqLBub zjD;c*jov<&O7efdKJW9c&$jnjXAj@C_Bv~=J;jaGCDoeJUR2<8+zol5hE@bDu7Y2`(6_xAUM2=i}g0d7`QI-X#pJc-weRGVe~XAKsN^;X-N$V2&TCKeqj7yd=sj>H$^8P z1dNCRe>eh4l>}jNcvS-E9;pi$1FeG~@*F&EfByjRgodjw6bAhIr}T`e{+@I%2t7Zd zfwwQ<7eX5N0wL&8-2&XHFzg^YjY{!Dgyb~an;hyU2;3OiGM**TMiHt#lzY6XEcIZY zcC<_RewUrSmtTKq@Nxe>J#AyL-QtDH@letUU$vju^T%EWq;I&VlIqNM+8>w7So|s_6$D^8PKiZ-1RH=lPttvEO zOHJ?9ExK)y;pNGPtIg^?a^G)|eD74&#HzLXTcCRKO}~n1J5Jkup|vefqPd?w?GZ6` z5C58=SI72deI+)om~MQo-G$;SY-{PO4V{qMdgAz=it-t;O{r^k8F!p{c=h%n{qB50S!)=o|%66eAVk4D6>~? zBM*0vm2@Z#=uPw|zirKa>r8{oAUqPDqNIB)v z1K&-?4-2qm8Ud7J;U{&DeWW>NXJ)A^&%0EqTj{BAF2mL11o2F=kAhW652R?xYt?ak z-&xrTS&`C+pyBH6!AXR!CW$%fx~C4sD}oQ69}&Nst70`6b074I?!%OE`D2YccR2*N zh>WdRIg-LBcCF5~c&k_nEraN-ETzkNuLh>XO3Eq_v|BSUb;Qfr8fNd(RyMmV)olq^TYie zdn53>W(fh*)WVJrns)?VUoN=z;l##|#h-njRHNNv`u)CbLZ>%jDtWxWWtKZVZMJ-} zv2<`~i-&zC-TpgdPB!HJ(x9NjVQIK_m1qmANUFhiD^&CXmSJuCzN@XT7JqqkC^Vz#_~pEUsF>#Cs%#~t3R`ww6I^TVsAIsEM&rHqKF1E*=sg)=w5j(Hl=Y!xwb*FN7+^`!MW#6ylI=N5@n?8^}1@NQ}e@KH3tB15$EUhy8AG+g{9WU}tE=svRk2b+VB`MghDNIAStHux4l zVjyiGGS#T_b+K{0>_@9~Qs5D7nRVNZZ@+)~{CIIJ-e(oWRh3qz87gbZEz5p0#ptQ< zgJNfYfdlF+#=0w_Vmmpnp2l6)x!zOYO5o3^^k-4LgPYlwCSR{>m>MBU=V#rr?-Z+i znYv+_OnLna#ceFdr|aFE*&|ephIZK8F21JkUS&?@NnGcZU$j+ed}DI2s9dadT7u#- zOQow(H7B_(J8g|e>6}`U6uiJ^#gCNJBJ0d2)Vktd1*lDUbS=tFyF(1Q)D=rtCzZ(R?4Ls@819BP*sY) z=bi`M*dQhe*=<%%G^VM9lH&1bt_1T3WX`PvIwkTPV;r0v=^6J6_6S*=8~53P$3?i5 zJ6DQa-xlv`46py z1g2YgW3)Q+@0<%`SzbzgG1GoMOKp?jc~f@jlnb#%RnbOI)ay!2H)>m(q)(0=9_FwO zST|VzgoDX2`ynQQDt<(aS$EtOI*m9;_G+T=raETySR)*pc=jlUM4zxoLL^q+xVe^% z|BG`9U&KnsH$z4qtlR1@>4-_s*vpwNXUDM1q=&RIkxS}jN4=P94@d+_dxWuZyVQv; z&*`tHtJa&1+i=}E!h2LxdQZ_} z7}EM#zb$R6s{X~KCvs%IJDt?E)c)!rJ4iq=+3%d&6zl26M6Vd0n5mFMmlI+i)jQeq zUe0sTtg1Wp3_Zze?ZR&`enq}TS1nC-#b?g#4<~s;O;!x1G~_ir5_o6#;y~u>!w$VN zGv*%}99bOgHE1JYYmzb@BE^fB*~w!3 zs-=BT_-YHT3K&)8jTODybKc-lDu%--L`#Hqg;4SGJj}ZLBGG!H(GF@g#?EfyThnpA zDN^p}0z65!a*s>K_f#u6Wy?n95`hhCn)SUPbG77tmDnqZx}r8wn}?%SuUT}vUV-Yx zBGyVdcOBXY$|6X@P^1)uf`1y ztzG>^sNl9);fC{uGcTGwvI{1Zb>uEfI~+iHzp#5QfA;<+b@6N)lQ5wsr9+ZYkDMOl z==k)kc()01Mj3wH?ad4s=K!3{rCa4L%uM{HQhv*RpceD~p#f(Ji53!Hkv z-1O*ifjsj{@qvTm?CDJIYgb?5`IN^}*oPYKN%d=x-!+q4A=frh{P_MxrRv&m$y4+% zl3X3Wdq1nKN7c|G5|3rpgntQhn>;0P(XLqI)&&~#CUt_1X|j!JjtI6d7T0C#wfBx7 zn~dzs=h&XO{_o7OQas&mA5jv}jB)#BdJ%K19M@-)^SR>tMQ|fCePRkd`6{$)-*J&? z=iiWA@|=hFOO8En3)$v>=5qM9~#BqjtUg{ zG%#>Zd)<(a$JagQMf>wwTP2UCw&Y1Y_2$!-_}svI!|{^mK-pd2)s<&8V#Pv4Ns^dn zm$W`TvwDzRXODj~nw|Po6TAJBVQux36TI1@Z&Po4%G0{KQu|8r9`(HhN@a(_Q4J+2 zR`dPFpC)fR?=BF&TDD=APebK1^Nv;n@r&F?c(XHJ$nMTmS*@b#+xX(y$qwQRkLz#! z2MsZf?;8@02SKZ#JvUa#U+CIJIsFm+{J7br+t>R@*{LljrJnlm4;|b=yOQgj>%`Q? zW!tA+k$ZbQ(4ITyxvSIEQ_-XfcDP30%{j_stwNlIjJ$R8Y zAK}g~7Z~9%93o?gMEuV+1S5`yiCZD3Uo?2(uqc)$qe1-qA8|B3@j6c(ibHRAVHN)j zDRMgDGn%{g3L>L! zo25q0)g3O=C#32$)Y0h8{L8eb{VmAi8~o&34}E(=^)%|wn9lQ?xOQ@w?d&lqsAWfs zkZZ<7m4KYE3RR)g^IXit4xa5oHRFO#ah`Q!4Xr{zJ!9A@W;CYo*n?s0!_v{n(;wnW9u=7Gm7J=TRc8fyATdS0k8TJH3mxGdsV2l+XL6ZP;d^w!thwzaD23Dkjrtxi99O#wonx8!>^+jh~HfvJBRae<```w|90~pqJ;hB?P+E z`stqpno`fNE6t%dW?L>F8L6ew;!c~Xo%PW=;^;2vGJRG(D#c?DWD@*{Ok^+!XvxtPvSQr%Qv*<{$9NiRK`l-qT~P5ZHTCZ5OdS=7Y&LmL|K zFHen&jY{dTmn+i!sSaG(cI$m|)Z0$A4Mmtf-=(qYeBq-KBJF9HhFa?*b7zOIvF%*q%Lyjs<*wa*B1BmE-EG3wHHS6&q1Tp{2`#5jq}|!zcP9;@=5e1z zS>S4qyPyfF^}3N|qG%dsSgLTROnAxq+o#mtxSO<>$Ywu%X!bmNMk4UawrB39>9^=o zZ8JF)?J;DbYtwxR1a_08XKzNQ1-;iIEw4*D9FGVVNPn?vXq7;w=U&lQ?z5lSf9!XV zSwe#F=F%bwV#)abo>>jc&Hl|=9M6YVI_5nXKh_ayY4f7`Yk-fg<=M5>3Fw=s@H;72 z2R1ti?AX_G#kq9r`ocY`TOG1PE3Tn*vmAAQKk`mQpbs@EDA?J~JRC7ql87NSQ5wD~DRsX|2s<|phMURk^! znZ~eg4@f-C*NtJ6CJjVneXZcmy0pg(uG z8(dA}IH@&YqCI|{x747#sR^TbJV`0+q;i?q(P{&1J%x|IbGq?1v)Ff9H6QMbk4%M~ z%(2U^dPxU-gEVfibQ+H}lRFy)8+^x(cjjNjV%JJXKf4yUeMD>LrJ9d{l_xe}-<5!bNlXPhW+Jh0y_K6!-NZp)Xp}&PS@x=w|B<&34`4-A88Oym0tPMwT7d3Uush zWsR9s=^)~F@raX8uiJ+mZh1PJH6&wYF=JVz>Z;=uFW!;QKdzDQBVb>C;{#dwRCZ7e z`|5pFEZBS|w{RoO)uO?4X+cx&U>u@IL#yTZ_m=4y$qOs) zesj!OLV`<0R{s#S=qJ_l*FhXCv)0<22*fipg(Lev%_i|-_P7l3zK><)sth$)&6=*@ zEM&*N$*tS`kk*aYG?kWa))j$k_CC93os;o!mv^d>jZ$}kK(?~&W)Ch{MNtz z$R;ZK>MVh$-JP&Av*>&5CfPy(<)M|KsPLAFyY7{5cad$?#aUPCD`vIWyeVH^tZvnm z?US&5#Esft^-!IyS-jneeAa!(sl;IG;I)Cq9qCgRFFx36k*bx#QQk zYK_6M^Y3}56CkrSRvVk&K~Klo*Cd6f7q1IE?)&NfW)v^WcOAj3{)1X0+)+30T21x~ zjP~{I9Ex%Y2<10?%6B_edX;4K&f|`=y`7(L%_C@RnRC58dAX#un?L^#(_eEDzyAKwjwQe zw4^s~glV~sn8y;(mI$E!DS#wYfG-4vL$Mz=h||hQP0%?YEn>K=scj&db1>4LO-t+~ ziM>=||GJoUJj-5J@MJA9^imNM>c6Fe#S*N*$B9}lP*@oEN60i6yD7ItDa&%DWJsv$ za=D@WTzv~%JY3n_?IARD4UQzUjtVj_fo6$72@AsO|I`UQaPzEaj^`apRa&RV&DuYn zJ9n@KxOu@FLdGbUJ|(36gUvOM++bo->g)gn_P`R+Nga3*O zg2h5m!!8>sB=e|a@{L+i;HDE%TR5()6t9jkS{Ac?hF$737BU~wx_R9dW62yX_aw-B z2S)-;Az^Ppb?&P*=L_;DHSDunUme+e`kthT=^LizJIzLUPDY>eva>en9nKsHFV~rj zt2?}2b0fMXa+HwZcal|MNb0nFThmIlvRlimJ&r!MdE?R`wO=W53)iJ0Dc^~$g6Rd4 z=levTqF%P5tX%V7m$5z?bfreWALzqhXo!Djam1-H@O{SJT^#qleuxX->2VV}9J%pK zxd4whsV=@Q*O}Dp{85n1TNm$k{HQXwo0r0wu;hfgd%2fRQ*Pdpa+vzK!usu={Yy;5 z67d%1UsO`X!idJK&2hbB-DIrCnOAO^>-P80c5&QcXX81jMR(}UOFRK7Z>b(gE%s`B zg+)idV%;CHuFKD^U&|UYax=&0@B9!pDfMJW7H8X$&N6O~k`><)mAc3!#p6|}Qx z3nZ2rBoSyUzn(@OqQ}`J6`@CiRQ$Gen2>z#joOt=^ruNV?ND7Kf-I4koFXubSa_FA zXc^Xh_g^s;bn(cmkj+Ew!Vmj)-))&_uy$!a*5$87c-;G{I==5~;)S81&)=B0xonMJ zLWWDlH|T$eS@B?RhFO|>bXw?#mRuq-#O$Qv-5<4g6Ytwf)jP&jq)BH_SRN^o9~*4@>%9XFIwp%N5XRauQZf4DBeBR;0yJFAN6=z1pIuKPt6x*}5d9-X#QEbC^` zJaEN-#S6E~QJIy}LkWh#TwRZ(nAwj_zJ zH(lfD8fFUj=|Y%C#rW1$oPzo?>pv$KJ{BBtz&*eSJi5tWvYokF{X5EZ*)qW$t;^j{ zY)ZS--xN?jd5LYymmf?gHd<%=Egv9?-|^p^^I#l1BXuZ2)cKN$g@vB&Iz8%kifynJ z#XktP1hgQ!t`~&{8Y7J<^JNSk4;%+L+ts56xzW4>=>aqdJ%2v^%Mrn20E2Hz@dKyG zI*YrWYyTf^3Le6QLZ^8%j+a$YDA=ihzh5OM1QG^k4o22yF>0qzhEgd|~9S^$I$@CShDy8<9Q2%9{>aX0wy zy%W%a01jjjbtlyyLQ=gwz331D=$AI&4nY8|^&leP*9anlPK_ZFhzzYE5?FQuD-3`m zsUQQ@y+HgV4M8c9F0+xUv<53Wign}?c zJcK2q7zqz>!tdewSg^~($gxDY{{Jl@e!j zAkER>oWTs1h=6k#1k4ni2teWBws^q!Tpyq=7?)AT;(#DXjD!dKIdGXw1b6|RfW`m@ z=f=f>aq%F$#FF85I0z4N5)c-gGZF@_M_>p6&f)PHlLiYAU;qL|z+>V;8-`GRf`fC0 z{=g&Q;0F{eA{aKz8k~c~m=AckxrD$278xyJ`Ti~dfOB170LSnf7!^PcH;2{W=XCwd z!IU9>0%4%S5kV!e{SL#2_23VvFp;55peMN1uU=qKC=`P6ZoUIDfeigjup-Rq0IUap zCWfqmUcfrBATjg-)`_2qp)2z`0qeuU1mj{ngFay0_?ckN2`D_6Lx2_5fh7`|1m*I@?!%@uJ zcFg=}-VkPfG(RBWxn5vT049pja^6h9n0Jvn7Vb1|L1ZBjWLjmdz zzxZw2f7(LWKN$dpn#1<{{lc(Z8@)YS%^BHbt;!iU|6Hs*g;1Fq+HHSGVa z2H)F)E5f;^<^r?};)dT47tGji;==tA1GLKTI6}qG+dmk1BiMN_6vV=X*qo1>yDNv> z?ClP_XP~Tb1I9(NVBnJ&yv`qp0n7S3p3w!D!Qdc75kw1tz5#S!Z&zq1R+XrVR))Oj z^uQoBB+~EKE7bs+rxF4Qq6YV1H*mLXVXHuQ56G3`<^x8V??DN8LAZPG0DnFB9-g9} z8U}>{#t(%@V?jbWD8Zh59##mA>VW{piG%=VX#NMRI38$(2lR^uhbr(7@}H*xqk;!& z@dph>CX#?kE~1g(4`30EOaPKxOarU!KWVVx0;=_AJrr2l|3w2w1&e85UHErB4C*g@ zz^wk&mV^UVYtgtQ%-_5bNx;)Bsz=5H3%7`d#lW94{QD(86c+n;e^}xY^_Gwo4h7uG zqW*9g*!cW81`Z3n@nRYt^%rIw2{s^qw#8$}f7QbiV6(QU9uUG`G&nF@RF8lG;mcwg z4z^Bz_D8@2&#;(Agb$7v)gu8Y*rD#g<5%iGXuo`0q}(>bpQYW literal 0 HcmV?d00001 diff --git a/BioModels/BIOMD0000000001/tests/d1_plots_local/copasi_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000001/tests/d1_plots_local/copasi_autogen_plot_for_task1.pdf new file mode 100644 index 0000000000000000000000000000000000000000..284f1accf62cc0731f1a1a483b9011c5acf6ba47 GIT binary patch literal 11133 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 literal 0 HcmV?d00001 diff --git a/BioModels/BIOMD0000000001/tests/d1_plots_local/pysces_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000001/tests/d1_plots_local/pysces_autogen_plot_for_task1.pdf new file mode 100644 index 0000000000000000000000000000000000000000..47c5d852e77efe8721f92e1dab0432e87cc3c268 GIT binary patch literal 11174 zcmb_?2Rzm97eCq8o@IZ`$hiBuH)JazTa?YUw@dg^Mj0WpNvVt|sidKVq9Lmy5>XKf z4UuU5pU8PZ=X1_^hK#AMz7kp)hmffngic*Spdl0#;Np!? zQ-hF}5rJd~spCv>_6_iWkfzQa=!(fY4x9zz>Wc&^IQ#c{ytb zgae8w@P{Lyl!*`)hgT+m;gLFkG0-~%A}ztw^7jt_Z)mvbN@2j&-=$|n_V=K8Lg;0R z`d+?(UkIu13xuFcb`5YN!>~gr!DMGYM0n9nTjTV>Tin;)Z-474t{Xb%F=r+$qfPJV zhUB5w;<%-6E$zuqj4Np@onWR^PuKp|J?mE4p#W$#;8xj^PB;DqC!=^ zK0EPjVR80tM8-S1ul2%DKGN=KNX0bVDBcy{+&#i|{t%x=bkQCJ+E~!!^=x-z!n3?* z3#|1sf|CyHm6{@y;LL@FmdcMW7Dit7-!!P#zL#4pHvS}PU|Li$*6QA;eg9ctvQb`d zZ{}GUtlw{eQEwJ4TEu+b-}vNXyL0jL@}fA_3xUTtEoO&Kyn7aO`KtJlZwC57BVUkX zAHHZLHl`2Py}7+7b^c7E#t>%!<9TPU3PsY>Z&ne=fj(skV*{PElXemNBKK4dT}8bR zvM@Te=y37OkZR(vo^e_53;tIlysyr0>mT{z5WQa2w78qkbweGox?VfF!BSj1-&}k4 z`N@X7=~JB7jgO7m)dYeLb1ZXKCn}n@P4w)lp__Y1_e769;+fD~&2NKfV&&T;bT=Fj)L58s(#t6^ zDjei(b-RK$k+2~%%rUOy^a}DJN_JN^uyK|!S)M=*eJ~&9rs^56` z_4=o$>wPmGw0_zaTs1UudqU~~Nu=5FL)TC^>m7zLfw@zo3a>(naEvUO8PbWbx^2Zm zN<0R6i0^Y-GFxS0K1qmw_Dkd#dv045F1D`5?dzgpx=l}pIWE{nAng7kKe^BBppQn9 z2W_jF5+lcB{izRAF9tX@zP-3qy!-3yLjTAolg4N<$FKiI=}6sf;ABpgl?;yH`TVK) z(um`2lM->q^dxQ{)!hp6KC%BtM+bcw z>ZrhNQKw7W)5IR^kF+>^d8=1aovcudj&^0WXOU5ATF&$8B+V&W?h7h>X|>p+I`8oIWuoG#IK z#_!DIIWag?_?BC8aWl=~7wXfFPWz1Pdu$&a$i6Kjmy#TwwDa-nq<|U84zHNKVbjv> zku|9cyeU^-^swFytFTHlHx;q#gg6_liuMQCk`=srDgnuLnsj1c$1??gADu`Uz7rXl|1U z2cH2_vr~SQvimJjvs6#bBX(Pqu$a57?jZN8dzfK54s3%fiSdGm6yIk?Hn#=M+;m}F zlG8RrNo%|{(GnHslF-dAvd+^eMc@uUhZ`q-V+*?oLjHuc>VAHX7{QJ5+wU@ROxSUK z;d#!;Vf*LaNu6FQpl-#RN#{iau=MH+N`H#0|z4s3kqH&xf9=s;1C)x+9WkBhopIddV0 z6{;>>m|PMywW+Vly0yZ_H2d-exdd~`VJ8|Fk0|ww^mzlWEqQ#8w9Q3mGD_9VZRooX_dkoh zRiVG7S5%Hpk90|QfQuBxa-z0QjX5RDP?m}7pwUBbm!`-wvzyg2c|!{AQ4Bg)o$d<0 zTYD<{oHu(>?A~?$cd+)EQPw*nx<}5ZjN1?B@8;dq`_*?!3q?b3;`;QsTraEKuIGn* zH?WExhz@nT&e^tS_<=?Ze`eD8n=frMt5E_Of{_{-W951?93;nn1^>ukhgi47nG1 zdW&@ahEIN8qmbO_$(|(6_vfEXlbZz8(~Q>?MwnzM-ILL}Ql>L1ZDYPuIQ(QuwzsaP zQ7R?JXfQ-OltK0(!G%wYNzfz6%Px(rI7XJFTC> ztG}~{F?CDE`7=p!e6_+PS~<&rmY%52P`T*YoE#KTeRFBP;L_Y%pBG= zhPlvtYmE3ddtVmba@nqrfT`k|va7Xyj zvVgnwjLjFREV+UA(qc!j_eBW4XoL`*+TeI3tf>@#l;WA zj2>-=MPsgJ!O^F(Jo9R;)-O|aj<+A)Bkt~$* zScWXc_WnlVv8)>AlBQ1=eb!fth@u424lB>vzkl9YW%co1l_P^VQ|jZPbtkjdJgnP} z(wMx$%CJ5}qqA#$aj&{bLqN%gCeA~<+7gXj#hjii@NIl;A*ZTy@hOT&39ssKi1mtx zk2;}?=;`59WD@@M$YcBU+f%IEWFMAHPFxk=J%KEpPok*FK5*Z2wjg!;vlOONZtsre z*-h#tl@>&WpZ+>7suFgF>GsIv^)c>6i&PGB=!CS*=a=+-SETZ%rgNeL9Ht`AheW7| zIS%0iL@u9ZoF255Nzu4Ax+AeknPk-bNPW`^&F!f^3pC2k;nV`yDy21yi?j7 zlJrFXerIu(Q_u-syGdjBk&?vD`oWT#C&!{L2D9P5z+F#bTTUBu%o)R;m(tjXTx|Dzf$6So&-%eP36SXEneH8UQXtoMzn6oSD#?m z9(hzGYgWO^jrE*L^EaB(u1O`f?U-T%rjbAKep%qJh``|#B-Nonn%`pe|^zD{n36QycL1Zv6y zEsV^!RqSH(E>jUzosjAHf@_Ub7MkS@n&ZECh%VDi`e34NUR#dG3&*HUYyl!JtMIaN z1+~0rzz}eM$Ea>zcaRRv)^-Vz+vI4j-cT3hG+!*%q^^oa8*kUhmw*nm!Jv)-x*KRzWv@kk&|2obpLP)aNd|&*udI{ccLWsw(dBNZo z{aEAM#i~1gd%n>GdU{-0MWCy#!v0C18P~aWB$##ISf7)LiP2PVbqoI3_{~Q%%g#;I zX}(f5Hp46t+wAeYHNN{CE--*U)ra|v)GV{{nyjXl>xJQLth6Vb54tK3Tjg4v$f+(& zJJNT}RqLTw9-iIraqP_Lbd4MMp^~>kQ)1do=j15<{4HM zy1b`KCAhy&ePdgXsl$#>dpkXAzpU>=UPU{I@8cse|H&){UV{Fn;P`(~aBL0E3T1k> zmWC%GcMLJ6pNo)Bu+!X>l+(t*+eUkyEe2=f#bKn!v7K?d5KUt$yY(uhS1z@e6_@ZY zr1ALeOQg%o^?xBv_VnU#e-UFVa7&YMi(rv6P3iT*5U0rC%b3d#XxjL>+E)PqFRy>& zpFsHg$AiVQs69r})xttLmo|fd!N+%V2_B^lWYpaQi^JT9 zuW1z|@W#h)NK{DwjD&&PJ>k|bK**j>YusN13JT}T=f~KVGme>}^Er-IRaVBGOD1KL zX-dH%E|wn@@HZ8yzbMxfZvf}K!8h&@P5gXm_(<}1SJ$2(XCbnHQFi#cC#=H_M50i|pQoB>Kal*~G zvr4L;G;<3CCA5Z+j4GG#M(a=)po{{_^-^5Bomm7(;iPu&GUL~K$>3_-Enw# zC{NClb>r)J@;vqk4!eC@VEUT4Lvj@f!dq0oNf1lI|9xiF%?XXs8P|RuSy^91c{z2s26Q>{EodFPITh@`72X)>EG4(7d< zxM)vNK1USYJj04Pyg|33CuJC7gauP8Mww!JZI_Ih$2!{8l|TE^-sGRsoSpzXJ%Wz8#18r`XE%hMSL zJfwLW`JZ^Wh&YYkuc56LwA9W0Z|ZhZWoJcdy>81U6XQj>Tq7mxTmBY;j-Rtrd!i@| z8!B-#*)#X7&fjCTNsi$8K>EDp<9M&HM8Zb@-kIbV;@F!Qo=zu2lGCxgkTTw|;rr%r@39&z zc7sIR<0}c?lbT`Y8{P+AEY`qI9QRvgPT_sV-{$n6z6xVAgZ*?UwyWd(i<%M+S@kD$ z3UtQ5_1)#zN1|srlbMy9Z^O!o-Yc%C{_&thh{_k?-N*Z{+D2x!_J7MCm$WeZXkMZ0 zqHUif+;xomt@<$^9@}%*-jNhb3PKu~#P?mM#~!0~jW)p4RgC3G@NQ!Z72()XdgHQ> zOY`#`_tnw{{XglulV$g^r@Ltnu8T>6CfC%gQ_Ln1crmt}bkppu>^q$LDuvBb;uNxb zSt!S?TTZq=JwMhPrlO-X^Ry!R-J+*;p3}bjhI2OIj{7#{R~Cf5&eV>4W~?gNE`}(@ zs46L3_^;)af9#@0oB7)>t@9s6&v15pwkujif~!SV{}8q4rCsN4f|%*QS!%H$5RXk{ zvl2giOXI>sIgN9?-pjyxF+yLQAxGAM--c!4}6=Cx!5*^{9q|h#5WEP*^G*a`>u!QSzSL#sjY%?mEcMR^Y>2|i@9V9d=!qBCqV$X2X{uQ zdu*souG3atyM?XgF6<&}Ws2gGJYw=8KdzgQfbO}1WIlFHv)U78zC&O;>+HxQsq2~<9rdQ=+>DI zw~H@#k*rmP8Tj<%@>{JY&aFA6YSB{Qlk7d|N*=x3t;%>)xYM3g=@wLy8fqE3A<(ER zXU^=&LYQrK^kxn+;!#zIi0{+8e$DIF>mNG(nqxj0GFfl2`Q|j#|CVWeT6E4Sg}}qU zAMP8XIOxA<^X8AHXil=l-s-TJ9p#xC83`MYbqa{!-qO!?=b*$o(YUa~cHf@&E?oN- zl%U#mL9kln>LPy$+eB?BQ9U2zaYIFEA>EHRpqy6s1C>AXe!VCoMNDh*J39BcfKp zx=N@-#Qwvq|5%1N(eIZ1u*od@#!w?WmyG}A^-t98L|F>t{jtqDj7QiM6YPUxXLC`k zcAHHP9G)t1e%SDeK5eet{QVow>?2cE&l4tT*Jum5uL5nA0P3FtNJ1_6LQpsqQ>K1` zX70gc?fnvKx6rh-zldWQi?Ls@oJG`6YY0W+ygQ1a2*k-OhZ8Pq;qbfF|Di zBa>Je7BU^zymi$DV@?+*{V2pMh&ee}HhE8J{gL7Ir%R8`s@oQ{4QCma-4iw5HbHyy z?oETE_67?_3-Y(>X68*spVOXAXv$REv>DwRGet=DJI)|GE>?Cmx6?u8Gn zCY)}FCCaC6XFXpb<~y^KH>Xte^oU?TYN!om;d1QRS%#i57joR|7bEyHHvW5^^`pkc_6vz z-jVZV&bMxh?U;MdY56iLag~W!CEmjPi%Ke)83fa5F<gW&Qcy68U+~T+7NXWXk6bW z&pE^2S_sQ?0Jm?8#J-b2&i@pT8#I z;q&48q>)dlXU4}DKGQim?MzxlhO5Ol=zoY=@n$3rItjL^dH%1O(y7RBljCw7UmH78 z?^}yqw@awamMEAp&#I7kVX-N)K)LA3U|+j8ZalYEDJ16d#d_rF%%)`br13ZZJ_z3l4!t2{AUW78zzxEIkR*~E z8~`B$`~hIft^f!R!X|fcXb%2+g@LjVfCCvq4kPm*;D+ErRfd3&~Fmb-l9w87G^G|Zt3UP&R3Xm`W7)$|vQNmyWA3Dx~Tb5WwA&@rT z9|4!(hJ=@^mcNHD8P*I73fa#ZelT_pr*Z@s!eLfkQuyxpc0vRc>iLQxYQ;Dqbp_E@mXL(Q=&aQpvTLVT~sg0^si z$M~M`STvY^SO7ph2t+Uti3q8vfOjkg!UN(eZ~}UVA>k1q0RxV&fYsE} z8}JN(OX@T1IRJ;?8L{M0fV#sKKW+PWTL}9neV|ZF*nZZp49m69E8WEifq3 z)fq(iup80B{Lf~<_55sx{h!U?+h1@)IN!8s1=Gz{bIUv|W9)Sc=gIlO8xS_VPSD>3aACJiJ$czb<^6Pfm9u2898}4~0i#QNX0^kcU0_GOX}mvO5A8Cn5rvq2(X2 z;&`AD?$D1iI8=dukpFTSh!9}a{iO^=B7%LAKgxia`?U-hBv>nd=?lv6zmEsXfEE9> z9e4vV%5e?R1cA`xIC@M{?s zwt&Bv;r<*CtMX?%+@G>S;n4U$#=~KVf6&F@V9W6<793vX56n0s2^f%H+u^Zv$?y*fjlCM!^1# z8R#z9+4<3q671~dOAe;qr?v2k1Qrw+7W04r`16IoW~70?JFt)d)sig;p*ROqsGkiQ O1r!eZ_?sp`~#M(ZT_!;3fhMp&)mg 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 z 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 literal 0 HcmV?d00001 diff --git a/BioModels/BIOMD0000000001/tests/d1_plots_remote/amici_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000001/tests/d1_plots_remote/amici_autogen_plot_for_task1.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f19938a3135ec812af056470e69154b4698c5fdb GIT binary patch literal 11110 zcmb_?2|Sh07k9E>OO}we#~OvZZ$$Pe`xZhjt|e>NRVcD03Q^XQC`pkhNhP~VL@O;S zSqnuXTD|jJD#`!-^?5(<^%*nIdCtsy=gfJ|IkU){>lvt^RdERUl5VK@8UhWWpa9qH zi1q6sq;+T@6+-G#=oH@oPY7vF@uUVp7{Fi&X=);<{_Zd%X+Z^p0Dn4!WiTM^%v`rq z-RKZ;?omI4zR`+Kp;IB;9KoDIr&DSE5FUO+Ag#P8?%w{M5Mll;Ex^r+N{6(7y@Q-J7Bl z5CVEcfj=AprAmUZIJ_zWG>_B;0|T{#Ao3hMZGZm&@Pvk07YYM@{Zo3zRDVyp7lfYg z(ZJgmj2A*0_yQs5QQZREsW9vyI*m&4Lxkis+nXHfCJ5XZ*)pCb(MA!fJ(PRAsVwzi zpLVoM`F@w3y_a8qXz+3WK0R$?vEAZ@%H=|S7fEC2Muws7hsVWhhX>z(s9h~3wKpQz z=f@}is_ZeT8eVtJ-mx1y24#QLh+-~`Pe%k+?H1FaRrU-&3>na^;N0~-aOwhO#;qze zVM|T#)h)Vhk>TaZhpWx%J#yb~kbLh{*2Jo{`&*!T@=d>rX**8aeWA52PolY>KJO(5 z<*s>~=W?nY+ucwU&?xflRkjFkpS!2kWP6wLii=mGvQLGEi20B0KeoCh1v|aB=;`#V z#1H?PpjXHCW_=|#u9$9ouHA*=D{O1&s|}ry+Ir&no{I7ru}!IKb{Th^d3fm~;W3|X z&Y7|Dskcwb--I`{+2nSk!%5iiwFLCbu`^?3NpGzxq?>Xs9sw0jn4Xz_`Fz#u8z{3^ zZX*wOkCk*N4d_kuC%{-PKRymrJ@uY1`3}^ z9PilL*S$BO>Y4TUy?ZHWet|o~&>bj>6#Vdjjo*xmvo2z0q7;_)AitfXdartA7J9jw* zw}_0bSUHlyWp&1dYr^`OjHu+h$xLmwQ0c}fixQ>-$M>1K*GekXo{#;Kwd#_>&7^(C z78EG!Z5i1TwbnEo2Vk;_O&-TTa>0s z-3RP4C6-}r`@XBKuNHrKbSN~V>G-D;7rc;CU z!#Bzgo-*Gw+<*!b-|$g1z#>Dm^Iq{Dn>1YfCS*PB!=! zKVl$lATrgc^L4RtyzED-bW-3EZJBl3jc>ny`uuotEZ%1o#8s76rWq=0$t}x%GsWns z@PlG!e}Mz)EXKMkqGCHaub#$T*16tO;7Z`nsPt!1yn~zBmL^}XYnU1#O6OUHTnyZ((npVoC8t>l!=1^6N zzUQ6?-Pj-|3E6E{PBf;egp%U%Xs!hF2V~Bz13D%09Ag}u9qAeO3-$3N!u>|!LOr4k&PM8btDwDs6pPH-CWZnl2L za*Pkl6WlBIAhte!Tc^GrcaD$J9R)c$;;7&0aF!$+9mn#-8nYfKF!9!%UVhHN$2%h4 z_Ke_yT68nxMOD#8Pt@y5OgCyoYRjoWbDIl_BXQ+iYM^ut=uR3XPGXb|(bE6T!`ojF_^9pg;1=gkj}iMKe_ z;uzBUS-&l9tE&FRq$hG@zB`@NwbcIVAv;JwG1>2&+Z5~R#ze0eo|vhSLzfd`AJseA z^Ipz#(X6UF^$b19YVE>rFn&e8MOQ6Nb;W1S?GGn;Lrqo;rZnU=JQ8?k_u@e2>%$Jc zGBf5M8XQ?1?c~g&@=Ns_uUX$WJ3L@STy^pGMS?)KPN#N3=&H>D{rPEj6N$V!HQC8x z{HmpWPxxvJt_m1c<&71++jHLFQ7VSRC`3zyb%jvz@;uDC`y$bLqR|d&HO9_v;#<>k zz9~}f=mI=RwsMb4#`jb!Ic3X6<`RJoYnt`FAak|kewElOiMpaTQJaUORj*leyIz6n z#Uj>9Id>h}2+7i_WL`V@wj5PA|L~+guUPEnMae8K#kBP?o*xwBrA_h;G>y&1d$u z;yLT6qvQTrcBBhBGgkJ+ccXly&4TOFJAudB3oGE`Rp^CUx;_8$Ufe zAe)Tr%jejhxc=|Vu~IzUZXZz+(2Q~WW_l5GtQ^;8lk>Ua`$cdgGkszTJ^3oMYu|B^ zY3JXNT=JZU_e+jFZwuMxf97)d_A4KUhh7_S?LM*o_L`>WZv{`@VXyoa&2coCKW(`w zZ!Dgu^SR$p$f04gUd#+fy}ueYXHRoZ?Y5m8t2xxFIL`?_Q~#(GU@tZC^2emr-c8jC z2Ryc}JSM6v`KlpNG`sCh>J1MR4)1&HLs;{H$EVaUh10vZqqT+xYT9nQn;#m*-;N3t z`7|(aPJ7*ukH^@XlVNT3lM}qzqi<7he9F_hx>EZ}@gDWP1WILx!ch$+ zDOU6S#-Ao{JMS(KzFM|nmrq0GGxLsC1M!R8M|iU{UdZmwR9UT}>f89@*~t##3y z{Ra&(j_(^1jR!%kpglKM$zSN&MLGQu{rtGurQ6s0NZF|^C#9bH@DCl_LA#Rco$JKZ z#%4k0O%u)L9!|Z%W>LLL@xtu6Z^&&!$qgO`3bJAD7x-!Sb}3y~4*j%qX0=kx13h?= zFdyO0FBcf$FdQOdh(!F)H3TD$hKXAtr(ZO9;jk!{CZj?8{2y^NKJhwF9g0J5cVQL( z3@LIt;pECsKm6iVM7lNJCVcdDaX-FawxUn?Vqu__v88FzF7EB8iIVDXVCb<)^yK-ZF@Ai10-CR7|X)7&wRL#A>jTSqlV?xRAw}H>lH*s z-8M^&nyWiprcX%KX{e*ooB5Y%Py1Vt#W(oLw;uZTgz9P3pD~^1H*xLcFx%N~&#u{3MfO^KTQ_N^g;jst9*oUQ~k*7bzl{_ji-77g&E34d4@X}D9U0S&I zVXNdtzjk^TZD)3V{V1RJOWUx`LT!U>EXJaK>Lrnv?cExzImdZ%fR>a$I15 zP@)gV1=&dsljTS1n(B{+aC0%8p`^O0zOu=%Ig?&`G%2_1hMV?d?@T<8-?ONR^M^Jx z;9s5^7aNt*VJ}yt`%@jbvhCLU@R6M1Zx=z8HId0ue||I#%czh$oL!a{>Tx~6)0^Lh+K z+6&**Vlx!Yp)4z?KN{o`MytY9Jy_N%#Mib22zX(HL$@p#$PLFN7*W4^^cp==g z1T1)`WDzV3?jLYzn5!r2Npp{o_aVpSCS(Jp42o4e#$J^&A5}6pj;O@S-Q$ni$c;|B z&?kRBuQaOmpw0*X-jSFFs94t$Y7bixPaiELqzbA@=3qBah;GSs`e?SCxAZ~{b_Md+ z21IO-ICa$4a81HFndD(?vQqBa-6ukXmEYYaY+Z9$qaS*0X_?S+`b65D4Ssjh5NaOx zS(F8?_P7h0kXo-BStg36VTPp&cglp9tiOFq?Tx!hdx>oJ(}!lyvu7j%uWWnfZkm3J zF4Z=ZQ_&tn7P>awmq1`QNqY8XbXw4REzXAu-xq5ti|zsXr*J`gYjb>p_Vo;s=o&K=vtm#Tb+Qui3-1y za&=&{lfaIBEmxdNx2`YTqq@~0J2d|K!6bRj%I?hf(v?nh)pC;L#tAOW@wIwIchB9= zpV7(K$DU$3p3l_~PX5t{jI8e}2D!=R6v`bGL$M*RA7F>zTuU{ z`;lo3>-K=e(_C&6lbjW-I(~*t%ZIg=>5ZmYpHE5lloPBKdg19R;WBjpB2%fTwO+>V z(OdCn+lvyb^_n!zOui^)7^~Rc^tTe-_AM>((H=VM+OxQcw26B*m+o=dC4>rmB7ZZS z8S3(&6118$z*Lh0~%A1-nn#Yrr!cHoei5;yrz}8dv_&cW?Z!?R1r&aUe&iKew z*vTBb?5dY^z&A+a21}>$STnh^QLw>x?09GXMJ#r$bo8@paob0nf7O~d|CUpBN_j(=~No{_w; z;_f%coFyc)W%@1kacuiAj>1JIKxMuIOd)7G_4|jQ|8rdjy7YKyT@_H(y6ouY*J3h_j z_EmQM5-67lu85fb{&caJE9SsQ;g|&Cgn@hTU}Lz)nzIR4byP(Rxts35F0w*CCpz9U zG7IwKYlejN%Ci$h^(1qcQd@gAF)x#UF5I#No+V-v44(Agfb>&0(^w!5z3JR&*~oAG z>yK=rqOZ;pc-q|wJ2Q*E$8M4>6i^;o8Hx&TnYim-`F0oCR$ZKRrM_ZTi_M$z<;Ch& zP1!yP+eh4}{Z$Xu*_y@Moyce1cbrNLwhmq!Xxx!LW%1(kPW!a*jl5LElae3_-<~^u zjjPre96SG>cRB$wTVu7c`5p9hoPAAFczW@=z~jE3?r%o%vV7MO%<4a=HNqWr^RCro zzrbi;-_D^Zmw-@y!>4?=Q>9l)M(;fCINRI#`Nr&yIQ5RpqNNgJy}PnHci!6OdRQok z>0q}~(U6a-Lzk%9%OluZ{e@rS+ON7~UXL*z`@EsEVgF&)e=S2?SRxcYXk~3S$AKR$QmdmXi=d>egG6TisxY0cM_~xg+Q0d0u@>YoBgLIwCjP&gF(VS_lWjMN031JWXf%bMB-qB#d6?b)=% zPLkM5751--S;w>Nbp=n>5?wD9F`@ojDp)MR3VfWXaaS4xJ2 zsxFrs%Forez{SIr&D|bCL)YL)GV7=y^Ac#52$ZlOy#7y}zymkWispFUp;V=Hdfcr2 zr>Bj!8tEc75bzUBNceKs2d0P0=$_|wa8$0-~ zs32G@1U2lkkwP+$Iws$!6$NfO5w(Tm%1ZI-7^7t|+h^FNPGceSA+4L&T``u-(Q;3M zymxRU&=eB(7F6fHT64Z2e^SFfyYphIWIeFliuOXk??Yz z$+)`1>oqr`TOvmZ34SM86^5iv%eOVHR4co+yxQaFW1BZF4O07+61Q+&Dw6V@*eaM_ zAbGw|^eO6PE6U0>|8*Jbqd`|{^!tH6{Dp@2cNRyS8Ux>F+}*`--|L6C@SPqvp~I0I z&y)-Bc$4bl>vEk*&CVYM$-H&(ZpV)*bGvydoC!-#sJoYY=``i$Eh&eok1MR-?%BV@ zL@W_+Vg5xWRV<8X%-S5+JJwCcdYpOXmbq?!|7;h>9dLb2Urwba{+ASrHP4a>w#*Znop1d2fF{%|o8boNwz%G-L;%_U46-dVIGnC$U?pQ%P zi?%>wsX-Efw({#~LQ$ZJxyb9So)Gqw6Z};7ni3V$z=3`y{T7<{Fud3twz9wE68v6W=d7I1D z_$6exRD6T}hnN))_GXx+xksmkerU-hB16nhD&GB3dpGgEtyH~ZTt%96_Jrk;BIyAu z&9H3MoNL`(ZQF4}85Jr)kyVw|$n%Hm5bE5)*I z7R>`!{8zkiyBw8SDLs?`xhje(Yu`PqFDUHSv8DiD>wHlBW#+pVx2;a!%vcr0#$-#9 z=z7yNo~~i0aGx%Oc~p#VUBxM=FSGu0a^Yja5eM7@jKHIt{3Y9&tJS}wOqVSa+|jz+ z{luoUOZ`m&<&&4#wtV@)bYi1*#^3S*qWB&E%{dRou`^PK5=5OZnOIop*{;*0Zl~A= zTT%RjU`s#?qU(B5XrMCEm@;3+;PJq5fU{jaYLFYvJCGhggV6Km)4v=M+y^lDrW8ML zimbD^>ACv<;ilj&Oel1kH{*C&6@`MG3i$g~azY?saOU9D8=NXL&cG2!eSdIB44;Yr zK8ycJLLl|LJv^x3L>oTB-U^PZA!Hzx<{jV;;Xp_dMx_Nn$N+x;n7%6j!h^8M0~~jQ z|K2+REePO122poX{UIdP+tZ5<5rBSagV7-fptc@F1miV=h@eqphy)@-YlsAvoxlnM z;7BUS0J}HH0MQTZ*nwkgK2{fD=Dhh$L`&k5|1a}*}-L(BZeW|c!Skb9| zws66O62ce}7!VG#@Or^d$F~(Cpiuum65{{09W0sz;lPA|s|pYaOM(bk0)mW3K|~S? z!VvKgmW*N~JirORhxxH!mxqyKi7@~FEg^os#{ynB!EO9Zcq|%BKP&*C9t09-h)jZr zMDUEoKzPtO*xZGPK<_YQJOU)3U<3${2aSLTjtEqgNCE&*pbY2mdn`!c?gkOmhub6r zg(HyWXmHLL43>z1a~K3XC^!*-!ohX%VBm9Y0AA29qm0D?L68^;5B785GMNbQ0y+VW z0Rx=t7YF*qgYXhdhU?)VJjh8vSa8lr7?_X15CWXT{WB&F79hX?1d4$B#Dh8vq5K2~ z=M4RUd&0pFC|E==Y!L@$10)s-K5R7;84Uh?B=x2fzVNM5N zJ@_**WDWEJ)`Re{_AhvA41t+tytRffa6}Ji_7Iq4P(lD>i<$RFbJhz?I)j5@$T18@ zF>l*3^SyaPnEBrPfQ08-fjt43C`QeBHvweHc${+sU^O-O1Uv&6C8G>`4lqJcM$9=B zpziRC-?sgyErk7(0Z^zpY`@f-w+qf*l*&({SgDS%I`Qr#n0P67i!iCtJkDI$I zhurM#4!dWdtZ)U!MY3SvlNe*2KM(_!^>;j@3oe7fL5L!V76N?(=)T^r&`zu>Q5CHW zdC}>CL25{(->+Ay0W?n~1QJ9I?!j*0ZrQ?Gf$koVE5*$R^fKQ9;AAxK9pJAA-@{YX zQ^TMz!1$r?C=yr=5>!yQH7L{?r3Eqzp;0{$z(kP{z!=T{fGx)Zz3_m3(cpju{z3lp zG+G%N=GsNvr)`Ju4bzuUtSm*87M zRyY)JE{od3VPF&VXCF8$@X3p5c+_8*aU|G`{8<-|A^*jPC&0#S5g!o3Uo<#8Tf|4e zfFNcu4F}t(KiebVfqz&`Bf`hWi}*;uA1|U2F}T055b?m5{mBPnTsVmR*&dxn@%E+C z824eVyu*MU1?I&vAOQY|;cpsgkPN<=BkkI-V7eavKEBV24l-QGboiTWeJsiuM|R-h@wadWlxEx zC#{4+N=k})?{BD7{_oT0{k-FI-TOOt`<`>pz31FT%2-QB4lR#ENRpK}hrceiR6)Nv4y%eBB_VG1-kmgD{|gDWsx;p!m4J1&K>4==l23AuOW+($dJu zlj2N=6c#?U_tAHl(aCfQgj*mOlj(E{)d#}Ep9rLxJK4p<#|20Y1`{Lh}uvIs<-S{GfkBii-zX z!*?I(5e5Em1e81x!s77q1kgNE6EFs9(;(6UJar!*U+{&7i!K!goc&#T1{5DRx;unk z>`}+V3-Ajeb-aKOv?$KLE)*CxjZUSIy%GDen=@=q^xat#IXN$Lu=arZ{gGQzN7&dW zc(``1)vmQPv}9qC2q(Bj-1SBjr_s)l?VZkY6WGB-E( zYA$Ne{lSSh!|g-EGjsJh6LY5;$}eS|em@gfIdCZ3>2d+}1GyG~&gjUgx1Hac8ImKa z`aA`xG;?q#yMJNJRoTgF?#CP^Rc+sRh{lKXqf!AZouWj%Z;W?;6F_+D+vsOIL-!|2VfBksX0cU8x5Sx^S zih@}p&r7eIe$}q)8MgaJqk_bq4g~DHgtQvWzMZ2bSQa$n69Qxy_ zwWjg-tfqpzx^0iyMuIOWNV)8JTx5TG)%5mBo|UM5in?8R#r`<`<|u0Mc9Gg~Q`QKz zJbQEBMBl<)y~j-tah)%2&+V7XxK}yz?rd<u7e*_|SWHWt%xDJm)5YQsJg(<6F<`z71Mwv?}I>oVQElW3IG zAd>g_-uhTV3%_Px$&--jrre{+XQjV>e#TqWU1ctF%&WoAK2!7f?)fY3SymH0mlP%s z&$j!Phs;jD?71CuI^+vR^~=nhX?wOg}??{nH0{*N$b;JRDF4QfIQ4p@*($)W2ACfr09h$@A`wVL#CzW_hz#r zJUB(&`%UtD_DxPzPV!bjsJ$9ogM8j0A7`}M1$z7>4;hyfhezgd^AV?vcuyrY6`%Js zcyraVCn4)R?Y#EdF}vhV1qq_ifa&vrFAH5|C6pH%hHbFFFOCYoHi zWZDasa49z``how;pqJ8`Z|FI$-0_i`C?qpb0_|dN_#p9t#j5Zb@li* zY|tp%H7m;v^;=)X;iPt!=Jpq}-zkZBq(6LXN|Vy!DG}Hg`0PYh*Rb}U6Zxw(8%;kJ zwltBZU1pfbVF9uumaezsc@9YGnw;;8x~v&aips1{`Gu3da2UQtpvPE$7I1Y6O1 z_Tpo}4!9;DuJx~M_r{}k4t6qFz zWpz;mt4)NLoQ;DB=c5Q#XOWji;t^=Hq?LHqaArA|%P8;e&@lap5b_uc&72wKDn`jF+hJ^VprWO_bSUq8g(Z+$_=gV4tf>f=)sK{aOiIrJ6*5 zY>4GeTXDfjzx62`w;lbw`yUWkl*o}A9v#}~Pbg57OZ)6x&BgPDH}B>25y{<@4(GOB zgk;aUElgt0WJ|*ns)^GXHLK-|`B~|GT|A=h7A$6EeyuWH^&BGdy~EP=r>j!yZv@}J zd+Xn4r!g&0j#&nxFJOs{u{YG{!TwR=!a>H+q+Z#) zxf%HG@~C-5wPAvV$17`{thGj)TUv$J>&Lcpo7l=;jqKo&vi8pwOum#RdM>u+S%CMb zII~atzsc9L4}2*#5H1xfsn%-o>`d-Gv*nl)A&#m?DoE;$H8G8IDmiDbpZU+YSzmH4 zK3cBKjj&(f>`WzzdQfYJS7u}H0B`kRt34*m##`RrTCi4btcFGGV%~d|>fCCtl!M$OEYIL13ChlUJJpA`e z?2s=MF!ZTX*Kk{Xr4{!{tMD{4+O-(oFB0=QwN5Fs+daCapKtq6`q8@oNW!&@XsrUR zhD|fQ@|fCJxz7W25@sJumy7JaO03=Dyu$mGUfqe)>nzfa<~+#!=%t~vwz3L)qBu@J z(sWz=kxd`lj;e0&=bG;}Znv*Fb13*z5BDpt>f>ft{B8zqCEwj9e~{^V)=_UKuB5)w z+%OH#SF?t%SYB>;E%7N#;G$Y>JV7{o{_3Mr8ZXkFU-n^pP@b~mM~4eOhvHt$&(B;q z5!B%Du48sxc{^*n%uM;aPkN)L>+J8`R`{Asmp}bNnjmtrHQhzexi}{2^1!s#!IVJ0 zEnB3}@}_OQFZHhG%kgEHtWRCxTcEyeB6(`;OL0VvNsW-%_B}TA1j+VW5ms4m3v3!z zsu&oXmutJ941cDy&GOCIqs zsXHQ%B}|+9$>h5RmCHH>b?ex$4_4l4-`x4U_lif!SxG}hMSRHT`$mJc?@Vg5yW1&O z#8@oI!y)e-lS)+L68F}JMn-+@st`M@;y3t~=&PdIH70snp6UP&y$iJ0Yq5U{+-7d=7uq zDstdAbo0RwgB}q+*PGGRv$QoOZ@9zv*0(nLzb?XdAK&@#xo!PJVG3UxSwCLA(pq_E z8Q$i)?@Z9Hah1x?U!NaP5xag(RbAI(pw4P?kHh6JdzHz3ZBs2)D^=pY-JHXo?pA#) zfMlB1+#@7;LGj#>brd98+Cbwdx>Yvy_)y6EJ8e5?ijEVDY&(-tpW9kF=IwLrk5Af) zY-p9XR9erzC-??u!WS90L;hF9k>|fL_vv@Pf_D&$?(gDWg5fK}{xgP%!hPRhFq~|d zXam{(puxL}-yCfc8aUVg;bi0EuJPPJacUhXs9E!g7&;SkcJ0Tn-qCXF29#gLy!Uc+ z$%)!jH7HnF;AduFx~njV+cRH5L~&HAa~{_kEWcrTwf_f!%UP_6CXxwJT50VmZZ91U zs&M-XJ1xV@(v8vLUI0VD{WnHs)7k`9G6@g(;G^iIpaNb_3UeoqAZBk>fb8hlsZ+zCn+dLk?wOVj+pZ2@f5iJ zmLJQ1UtF(=k7{~CqU1z*ME?ij0SARwa~p)j=w8Ob`iU3LnBTfit>RNmeQg&p9#N2W z?=|***?4IFyU3E>yj_PyJ~V8SZOnV3tGz;8u;G5YNTqC^aPOnq5Z32*6XBLdrAp(x z9#1TS^#wYHJJ<|_ycJ7AtF4?H%~!q^>=f^{j_z2uy)=4uXrSjNZukBT61Pl`MocK5 z!`qH-;M2b~tJlId-0=2u$sO;*-muSfQ=}Mn(j*Fd%k4#L#Qh4KpRYjNUe5AO)0~DZNjI8qX71zWVm?n! zaF&0%J9YQ@l(NkDQ~mYM>JL29@I2oChE0{8P;JCNIrnzMxTwa8iY;^>iZxe;rPAJP z#g20wBO$vU1u3sDE$A&#pg!zZ-rnA8Y;XPLNSAxn{N{e-HMG6h(X}MbKbghAJImh` z9RC*zj;+M)Mj2nMV&aQT9Yzf6q$0LP+N!BUr?j*4w=-Yj4#in|tTNDEwTENR2BwBM z9*bqVUb=%`R9wQ}bdAUFS?Ic;KVU$!K3qD&07JQ8I8!Qa&FK{UvD<0Pp=N=;+ zMZT4s+TdujmEJE2K$Z8WBfm8!6)!x|?H)C62$w9^ZOu z+kw;j1Z5}g5NtLlDi1-=O-*B3^G_$Ysd~31BeuKtu*ve(K6BwWB(`7EGmR5U#=I6S z2$VQfqIBon_E8tZu98g|5APd2%J?Mgcg5jfmt85h>7pHTzFzBISPLQh@3&93+wWi7Fc1mTmX-z117;s1MNl}+`1 zn$q_o0pzE?k36KAn@4DN!W3ur;@o$$XqM+!1(RxqOQWYI;|!ZBg4;IQVrxR zT71le9OjbadJodsw-w>0lBe$OzI2z%GG;&DN79_`r;$D{@yP8yeN!)O?X^{9Iu%V# z7?qs(t-)tyFK)=J)4|>(^RDTexpjwi!#uT)7k7TIM3tpPR<)B>{4p<@ay?t0!DKV3 z?-qZf*JMs#ZY37GO+5VHtC5~#YJr!ozxTU*S`|Bb)_a*Tg^v$^8`Hm<6^15y$5>I^ z*G2?BtBKnu)t%SO&>Z>J-?r)~iEU+hVp3|lCD&^75iwciPYL2Qh53ykXCGd(3QlZ& z_$_@z!p!88X`#H6hF$c=?%XwRm2>y~Ko6GEcNDot6IGiHR zzl%FSc$IZtW6fTtTQ978l;Q_`zUa78q>u2NaM2i89~upfu~e>?O(qcdF;-oy6FjXv z){gx}8%<)vWs>_=($88n6?Z(lG~5@cpeZ-?tnkpg&+Zm!jz@d+KUnT_II5Cflo9wQ zQ6u=dp`t{GC?XG|C?`{Wpy{vXxB+F%n|C6yf>?G~C2dGj_yf?5?BF+y4**~|&; z&vvphNj(y5T?WrGz6l0T{BJ(F&Feie^n2dt*GuoGC*!_Z2ysH+I>P zid_89#RZrLZ1XedPWfQ+cs9@~`OuD46vRIzG-0o2ZQi%mZ`R2weY0vN1~S@gwxf9h zdiZw5=J-P?7i9c$ygv5mqgJuaYw)KJ#j1^QhqZK?O%L&n4-N*7ggN@|U!(hw_fCTN zdXezJ9NTX%`ey6D`9~^tR|}O1Pre9B?+d)`;FKspV~!ozS~#*--nw6C`;#Q>?V*A% zkzKWpY1bkQCTCUqx<7wq72WFk`A<<|mwG-6HxS>i5|CyAPIShdgpM!O8$xOotGE|0?Q@p4cSe!O%Ru4 ztfRUM7I-NF?-2)=!McpAM8y8ZsQ=i8II@LEe^fC^ZhX?f!z<-ev-z>It;ouZtv=XW znjELNWh3qU!=_VFT(&!mkLQe^BR{zQnl1iAf$96n)yb#EOI}2dF|%lFa9sx4G7i*V zIgo@ZFhfu{)QUu%NVU|27>#4%>vWl#I$nma91gYOP}^{pxS~utN+v>vhv|70Px>-l zFXu6#{#z}NG|M-WfZ+*)tjGJGBzi#tv0zOh?{GR8rZ2ZVeqL#CV@&mmU$# zm+EL*yZz#AmO9tW2fIfd8%3kG#_i#{R4D2-Wy7D6CsH~n^bqx=9cAW}`}`t%@30dk z{LRZje0gK^gh`U!Ex$LZok5&E?q4?wwmoweNDSR^zJia(gLotQ#wmMZv;BL1(yANL z&N-Q~+|KUO=Yx;O+_-z{Qa-umwy5=o_p8lc9gJFLAeQmBFn^o;Azo+{L@!0_}0%Xb`iR9F0HaaLXzn>t@ynNB=`y7o&x@&r9{cYGmw zoF?b(&}~TEdw1NjWNIi`)Xrai^EzaS@bm`)>pByUk|{Oa8}mM^KhP?Zp6=5h=@Ps@ zc%ZX&s?prBIji4Cjqu>b)4J%vFLC7~BeQd?4vsd_%gAs!{|5aRJ}cgYw2D=ndwfRV ztD0mSa-Y%JEuCK*I^%jQL~q(gRwavPOqnJXioY~d3C@tuzB5*Q;oT%%yhEr`PXqy2AFl#Qf&=mMDD3;6c+EBUo0 zlxB|?Jm4R*#@)m4^|q`j@no%2oJZ|qV&eC2XK^{bGx^d`lW)cJC5}CxzcQcRVV?S@ ze1Ir^`hN??gK;N~)F9I+iz!1B6D8iU6J z!vQXSwJ0=as)rxlmkOa5FRyVP{00o2xl6ac?^kOFAb03rg<&>SLyZ6{cT0dOP*M4-3_hyc+WoY;XoZsZ;h7rHyZ zzVI~Q=i32>IKR8=KZk3Hz!?MZKcou=&Wr3ugRq#tlCwI^8GZmj!T?}!5AcT^1`GJm zB>U+uu!=$;Ex#uLm*C-phqJnmn->Mv3^O{#+X7A)lJ_w<0u13WOWz)RH+(h_0fqYi z5fJ~c?O@SF2nPlPykmffSRzEg5)dRj3Q{1VAdCVY!je#ofCo6?e7HOooboVYtO8vA z{}vG6^Rb{T9N;#-2Rs%Hh94FHP!9qTG(;jo3JTyGi-GW@`R2@K#E&Vf+@43<`xpF!B}~AQ4E=_W&!xf)2oX@M~bm8t4VA6H5X^A7GvM9vHf^s1vY0 zEDbO&#y4mK){XB0=A3}SgE0hHVI5c|kcePRV7&k)V`=!V6W?Q4C}7+Xj2KQY35>B` z$cM}P2(VtjqYB4AuPm0DZgsFz0V|0qSXCh)L`F&rLNC59(t{YszaZBD0wc@FHHR>Z z4~eWGFvx(00E;bV(HeYFBQbnjo5;XTX;x^)c0_K%`;F|xB}yqSpcv}3|<#6#K6k> z)1T1X{JebWULH2yEZb|ljKN0z)V)om*R3A_fE0B7*< zY-ue&7gxxM?7SEBve*JB$!Olg*GCI}q_;(DI|hXTiysP)BBHQ(lpG4T8HL)sb&1UO zQ7NtnutX6NU@=S+ey0)s&@~i60sCiN zBJq#93K(Gfe``+x5A4&gG~nX`kM9SKP9=MIQK*c^vSuE^U>ya^i>a?KJc;2sjnwmT f1?wa{i5V*bjZUW08Pf(FS&>KxDJg9u9mM|u_@if_ literal 0 HcmV?d00001 diff --git a/BioModels/BIOMD0000000001/tests/d1_plots_remote/masspy_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000001/tests/d1_plots_remote/masspy_autogen_plot_for_task1.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d388d97bc77677a7142d069637e8d6d78a45d7ad GIT binary patch literal 5954 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 literal 0 HcmV?d00001 diff --git a/BioModels/BIOMD0000000001/tests/d1_plots_remote/pysces_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000001/tests/d1_plots_remote/pysces_autogen_plot_for_task1.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c9d39f4738e57be4d0ae6fb7f972a7f7c849e5bb GIT binary patch literal 11180 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 R*`QHa910;NrE9E*_&@jqOk4l} literal 0 HcmV?d00001 diff --git a/BioModels/BIOMD0000000001/tests/d1_plots_remote/tellurium_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000001/tests/d1_plots_remote/tellurium_autogen_plot_for_task1.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0259ef1481c9e19600852443f27aac7a73556349 GIT binary patch literal 11113 zcmb_?2{={V7dMf(rXtGNQ6YspPle18%9JU}bj>cVn+zqAsi+K@hZItgu~McK%A8CU zr3~qfB9YSc?Q`i(^8enR@AOzowe2;B=yxb<#a_hA(}W5#5GPfpGH#eH%KRLZd=>_z{6LahJ0l7m+7E_R z*91@~zH|tw?G7NQF63$pxi)0A2oCyB24LJUdKv|wn}?4yq<0LSkeY5l2+nY|K*tjEn)9RD;&h$Uv4x5-0*#1u3^4i3ii_&rH z2_FZq7ptruE=uwh6S={1|M91ZQ3)LvZN*K80*aI?lS1nfPHIez=#)%Pe|&pvV4&*T z=g+O5F7@8)9C`O{>_r3b*D8^>pMq;VE{bG+n57o=9~HK}kxQHL0yCZ5lCEg=&2@dC zNQTnTxk826BU&rH@)~Z-PEcVcGBaBssVfV7%s^q z;Un)U1|@tNamMYQAqE3s$gcyZ_sWi~b)_K)WgB_ttS`(eMIX)#OC{dxtSRq!^1ju> zQi>dNf+vG*r10ZY=v!BtoQw|5+&_TpJg4$^qJm1!Oc-r;v-4!8MnmB3v6i0dQ;|DqQlL#BF5ja zN=rU(kLRw-)uC$Ll-@T9y3S9&_%f)}wz3{ow_Q%pc*}U7`l;m5=+&qVqove|#H$@Yv^XGliKo zN}s2{f0#IUzwg+YLi@O(+YRBH_t&|a`wi{%xL$P;& zsFt79yFPdJh{&-(CF+;hefxH?t@kHhAmLZ$eD=z&oS>F;jmGT3-e?Q}mmevPufa9SFt@1DDP zQ&W!mv%@lFPWZ?~ueh$(g2Xg0GU{GsmXMoikbzRm#7eXgU+78s~P#|TVqEw z^r#t6)1?gZXAMp#8I~Xe<2jsF1F5mAdtdn`-N_|_I3!F+D$9t z5MwoJ8@9btN_OLr?tDJ7;wv$^Zc_bF?LX;ZC(mX0=_c(yzRxOAGn$G0y1gYU*Hgk< zJ~`7(D(Y{74#&IYl)d!GMa0Mlv%kJBIVbmKg=sfIvPwPrl-|b|w_HqY_P^hyJt(ww zMIQ~JAKz_p8;5%vZ=qJu%?*{xYx)gzyb4b_;kIUnYpK7DnD-k8IzE&C?(VOoExMJf z#D-o!EPWPof}^)sG$i?~h{z57)h6NNA$`isnJ)soKC^Lhi)$6kXk`>Z2Y8A%*VG>O z)YMiHyJell-f@D%PFgkyz0OI0jE$4NrKk7GgZ)Kk#q_KOkosB$n!)MYuE+OpOPMZI z-K{qln_wBfDuA2M>cYYFo6elP1f5GyGbvc~W^;+uSHiF8UHY4@SgTZgdSknbTSzD; z(BWj-nWud>oiH+;IY}$R%4~h7ddH;rI1_WTneNA08(b}DIb%4?O1vT5{z7_i%iz0o zeAHe$_O!@L z>__mYovXhG>_hD|e(w1GBEi^!PqcSLzbPQ;$I*4h!6#!%OM5uv{Vm>-RORWINuxd} zsg`>Mi*0J|ejcP@@GHAZ8+Y}#?#Dyp@sPw&}Uw1A0RewUUdlp3dUmfLv{t@==Gt(96s*x;e|wdd2SjMrP; zi&~*v-|LD53xs%BO1Vv*iEI`;3mL9Yqxm6^O5|uomb_E`o+n%4+K~B* zW3{|Ax6$sLZM#fWZBj(HIi-#lXQi3S{o@oo`0d^2&4K;K)8Wwr;y>cTs&$Sx&t9^u z>&YM<-S++mrOC=-dsc|W+$Hu1Zjtq~S;t7BTLsjliH_I9N8HJM)a_>lBrZ$6(tpF} zH<4?S;ixT6u9aPT!Fb0_WCD=B_)3OjPc1z8!ovRdcKzV6+~w@lBd2?ye;PUyGi zvPEaFe~pXyhim-vdnze%GFdeKwW0JH0m1LBRp(L@);V{~TvBW~UQyln z`Qs4N)_@wX*x;(l13tGWQv425N2`vG-)w%DI3mT_t8^>wOgQnweYFu@)xhAD_m2w3 zKi4~b{5nDPC@l$*{HZ`a?vt)6u3+Py>VxtJLLLc5~)Y@G^$!v_xJi<>TO9LZPmSE|8HbnGWD7#``spDuocuO$~5S5!Gc$vgD zW<(EL1h`ah^zz~MpUihsP}=t9r3?F&e=czXhC~>W5l~Y6xILEeeR`SfI`O2 z3bG;BO#`#drDWH}>#t7upmh$6@3L{67CN&llWI^j>Q|!Wa0>J&H#K6L(f`ggW#S!^ zV2GvS-uQV2T+iyP;~%Ntuw;)_(l%9wE1`U-6&F4{p}>>EWBoh6GD;J&kk?_v9Vsa>*fz?RYKO`VH6UFE2dJ z>op^ABb6oAU~^2kdSdfA$B~0al(;-ZZI|I?@$zRO;>Qqh|BX@6@Ky{9nydLHBH_+K zL&fS_Ue>dj;&&8xpwT*Om{ew|24s<)?vl-CzCNZnY7ZyOo_C+Rec=t;5{)5DSz6uL%pu6e& z>%?9?Z+x$sR>rp@;f+1*bgR8C&$~%2z0q6 z)L#koZ0#B~33l}flVZuBAZ5iyd)lX(AFj%AmiA)SvzK=SpEU@_-g6vm4CyS!d3p#$ zxw02-nr7Eq5qGDqHpQ2VllhWOjGg?zzJz_3&Rt81&giYOQ|We2#B;kp4W24Ev-2+g z`Nc`$adFjE#arl9iUnt~nSyKDj+Topqk((+4lAxN$nDA}(w_7xZg1|=KVb3YM4MCD zH|btv1^U2-(6watKbghA>&GPuj{ge<$Clvsq4bN&nE1jHULjs-CLm&EJNmI63n;j0Bkr zHYl@c38mREW!I*7Tl>?>G3Ae#ngv$3ECT{w8!zFXK=|*E2aClSqx2u*SMWK6N&N;EQEo z!J8#ZU}127flE<;$7yv5t}${ba&q(3CQotAt8xw#1J_tmWb}0dZ(uh+Tob&D3msoL zBw29&T5!!N)%VoFv5>paRW(DX&7U`dKAua6;omNnhTUmHv^#xA1I?E94?S0Ll@$5Q zUBn4*5z4rUmUQHmji=vWPs?O%4aoErlzsbvuwOb>aTt1OXc*a;lNsN%)4eGkvE8AA zRhIA83wwS&Qgem2VU$oj=8br+&&H$q3J)%Be{HYVmcJ?aN$1|aX2UP$XfMUi8z~=vvG3k0w*w{S5a#tNh~Os%Ch3Yh@(50d=(L z?5zBER1v*)O8vRJ5ehjsC=U5;v^q^2H>vT~nNx^sVZ7tyem- zKB*>zt~$GCGK=%>QS$d8WKeBy5qJ4ZMT|<(=2tSR4O9c66h4(THlr~DdD;4z=644S z-i^&-R=RjZ<#5`GPIHv4RCU*?Tk%GjNqs!txZvz*$IbjT0?!<6MXg6WN|>(+8LKA* zjNgyA+?E$rsa~hFS8r}hg07rN1Jy|A;Me%5t|Ro7TQB3L;-?<&D}Bgm7U{?Lk^EKb z(`b*IMA&v}&s5~d25dcsugzMAY@L-jwChEm`Jpw}#BP+#er8w-3ev-dl_ z&!Y8EC5`=p@`#?wWChPP&EmQ`j8b~EjQ<7MBH@%uO>C{r>NP#H_a3kaf1_2d#$9sV zSZ1~{^}4Nk^hq~w#VXbw-HCc~&prOTZWHM}StVHPR*BzDf^UGfAGAKxfA>P zg8MRa3U3lFnbW`eD)bDrPqLu6DnYN1s98JQmq^%Ux~n4O(<4ME6s_XgW}&PH>;GSM6UP z6akH`C|NHXPayDP%-dMrayN2YSodBQF*tR6TYL`({enr|m6jK!uX=olYI0LA@{Ycr zb23S^4(-sHG4nkbs+4p&+2>uXs{c#99UEK35!sj>a@(#4)V-kw&+TkBocz`}`$?>j zxAm)K+A(@V{T=kMB*Vw<3*Hik~(}%`s37v0l^k?(={orwwI-BR$VV6G3 zY4>H5!ZIkA39g8k|NeBbn49{*N8yrvx!7j2)GVOST zV^9+0zPcU~R4-1B6jB#UV~%Nlv73cSvQMya89d9xCKx>FzX55)=+IapcJAAaJ+YgPn!EZzpzd%H@+CUF(NB+Bnr}f8(FSWRo2tE7xjlNow5px_HIa z9Y%G@u8}Tdc9h}r&K+#^B5hXW%l2LuqYfD#+Ulv>es0F#*=HZ~_@ldcD2T`T-lA?V zn%wWLm)1-zc*ipv3GJ0O+ExD+dNR36I{N6jtJ^%&-9C2cpm+WtHadw)3hOIX`2>%@u>-HFdTd)nu|vxv($%>5}!?Bd90{+!|G zfdSI!kS(2Y@}TKKbBB9iC2u&p8z`i;b3vbOY#4cDe;y>2~Ll_*& z2t~l}doY3_5>}Mb?#OQP-UM-OK4q<9j|EYRzz4*UWw0(2Dv_{%G3);>L#$Z?r9LVd z#NT~h!@XLPS}y%e(Nc^fS%!+er^c4SB^zet6+E4Q;#2qqD^=88`kKVT*D6& zyzv?1`Ga9&%qvud9hQN%OaS#)0VJUed?6?tYE`Uem~ui)r0PkDby`eyEhEP{UIm%6 zDGOg9t-2-^zAa=MH`B{9?xbagUM^xn{kK%GSb`DwI8iJ3a&yCe3z_C)H`$h8*-e~h z6GY|JIPFmGwr<(h4z_Ie<`5dX4M&nmDf}$UpjjqR!h-PnKXn2R-26&3dtbXuxpL0r z-nI`{uAHg{Zl1qNKo?~_B!e`6q*L7`*_U%~c>ji3$zs*#XWpi?7}n1Umac7=E8Nw- z=B6Bi)qr2oEEy@Vv8#Rh_4Yi^-I>9r>^IknREB6Xg}8iLC7y$Y^hcE&Dr_-^EXOxL z_ICDSkEBUO9?P!G7?3W=&YD&Wq4h9(htqcv!KN2>0XQHI$U6@+N^@))?u%Q@eBd?y=ScW6 z6R}LZh4~wmlrzw#v8b?Dv~Qa};c#idE^%A<@Q+^hrd4d*r9P)X;M#=QQu78OZa=h6~ z=~_K*Rj8P((wJ{qC&|A~x7%iuBhSucjC`55A`u$ZG)uHOOEnS3@}0(oYDt7%NzHC! zRpE=erWsA3t^JaNJVOuL7oCS5_m*=%*se!%eK>BGKQ$aLZsjE}y$+c#Iz2;RS!dv! zKc%d7=NpxG#=9hLz*lFqO|Ww)ptW)8uCaA}YA;op&^PUj4f-!)R=fe3hed*Gd{*GQ^5!U{@7@brTEEw{Ms=8o*II^^#Y-el8OG&Fj2J2T zC(EbZ?(c1J!Hp)A$$1Br->5_u#NLT?hzO~5PAX?kQD9c|6TesU3j566 z@ukCc9>vq8Y^HPHnKO48C;TZNAc|k{-@Nl+oIE2{ZM-Q9B|QTJb(3xC6c-zlLq;}K zZ`cyhyyN7Vm1B6tj7@b}obgM(z% zrCrar{|`3>520s6r#UlDnB`F@*r|ZOe@j*fBn(a;9DIX=WyUc$0;xd-=fv=__^;#m zpCklQ-Pyr`0uHs|Q|$fV#2P|+QfST|_7Dz)B>ohd2ZZ#X0>Jdc9uOXcO%CA18~k_n z0W@!b1L;lip->?t#o5t`4iSKUsQ~T}1khR?A_9K3AtLBh7b1bk&=?|tWhb!0063BY zGEm(aWPs=ncI?1OHqzADp6&#&&tCxebwhw5&Y$7>ujyJOaK;4u59xx5bF*>uhOn5w zlCz4p9em7B#sFaO2=Id(1`GI5v+>lLXBCA&n*A&SF2VH%XFCLp?D8;jED^5%e@lp;@3EjRoZvowCOj4mrXLmnP!9qLbVMdWL?U>` zVjw&ioCqhNcNj7r0TNI!0))qdPCx`l1S(1-0RSjahI9Bm79?k$}2fOB|!#-zal1Q>uo5%8FJ(1szDpWxt}p+E3Q zIQRhtiwK4dvj*oNG3EmvZayLKfJH`2SiZjs0N{KV7{D?721W&t!_8qe_&Hrab1-Fy zpFkL>a70iEY`??sVLkW_DokW36X*$U^=~gQC=?38c(>32nLvhqCRh>XbpY0b-xEXD zKrdjOSd%cOJOagNP>jiKb zi_=e?_?g2(0rQSv*jOs|o=jGD_+Y z8eT;Lnl{AP{skpn2+S;lW(;BAh#t_)Au!3HgaF1Cv*3^BtrwVdMh%7`$1ohlf^Ekv zjOGks7DjUi5}xk`_5@&}7%dmv1dt`;ao!Dp)zthG@C<-UMj7@TfJ0D5%sUjI?(mCW zw*99qg#D8yP^fuqzuqqn%T>^e-PphP!H{Yypi`us4T$hzH==_1pVfft`Be@3KdZr4 zx8RC!uB5aG?V`Bh7sN#~_KUc9e?${4_bZN&b9bg50^SIA-irmXcp*0Lh+|OLhqOBnGbw2V%go{)%VRz8{_iV!51OM40tuo9`$Kl%dfDPup7suqt&N>47-gXcP?OQUvj+6T$J_QW^;%%8jwNx(5LsYk|x)zA_e76X5<@b4ENSnQwuVTsGsTSitm z6zPxta2VLg{5}Q_iwEXm2@MY)#V(yA`J literal 0 HcmV?d00001 diff --git a/BioModels/BIOMD0000000001/tests/results_compatibility_biosimulators.md b/BioModels/BIOMD0000000001/tests/results_compatibility_biosimulators.md new file mode 100644 index 00000000..4ece4606 --- /dev/null +++ b/BioModels/BIOMD0000000001/tests/results_compatibility_biosimulators.md @@ -0,0 +1,23 @@ +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------|:-----------------------------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with amici.

['SBML', 'SED-ML'] are compatible with amici.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with bionetgen.

['BNGL', 'SED-ML'] are compatible with bionetgen.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with boolnet.

['SBML-qual', 'SED-ML'] are compatible with boolnet.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with brian2.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with cbmpy.

['SBML', 'SED-ML'] are compatible with cbmpy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with cobrapy.

['SBML', 'SED-ML'] are compatible with cobrapy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with copasi.

['SBML', 'SED-ML'] are compatible with copasi.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with gillespy2.

['SBML', 'SED-ML'] are compatible with gillespy2.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with ginsim.

['SBML-qual', 'SED-ML'] are compatible with ginsim.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with libsbmlsim.

['SBML', 'SED-ML'] are compatible with libsbmlsim.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with masspy.

['SBML', 'SED-ML'] are compatible with masspy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Could not load MassModel 'BIOMD0000000001'

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| plot | | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with netpyne.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with neuron.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with opencor.

['CellML', 'SED-ML'] are compatible with opencor.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with pyneuroml.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with pysces.

['SBML', 'SED-ML'] are compatible with pysces.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with rbapy.

['RBApy', 'SED-ML'] are compatible with rbapy.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with smoldyn.

['Smoldyn', 'SED-ML'] are compatible with smoldyn.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with tellurium.

['SBML', 'SED-ML'] are compatible with tellurium.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with vcell.

['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell.
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

| ✅ PASS | | plot | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with xpp.

['XPP', 'SED-ML'] are compatible with xpp.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file diff --git a/BioModels/BIOMD0000000001/tests/results_local.json b/BioModels/BIOMD0000000001/tests/results_local.json new file mode 100644 index 00000000..0dfb32c8 --- /dev/null +++ b/BioModels/BIOMD0000000001/tests/results_local.json @@ -0,0 +1,2167 @@ +{ + "amici": { + "exception_message": "", + "log_yml": { + "duration": 16.878883, + "exception": null, + "output": "", + "sedDocuments": [ + { + "duration": 16.395254, + "exception": null, + "location": "BIOMD0000000001_url.sedml", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n BIOMD0000000001_url.sedml:\r\n Tasks (1):\r\n task1\r\n Reports (1):\r\n autogen_report_for_task1: 66 data sets\r\n Plots (1):\r\n autogen_plot_for_task1: 12 curves\r\n\r\nExecuting SED-ML file 1: BIOMD0000000001_url.sedml ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task1`\r\n Outputs:\r\n `autogen_plot_for_task1`\r\n `autogen_report_for_task1`\r\n Executing task 1: `task1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `autogen_report_for_task1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `autogen_plot_for_task1` ...", + "outputs": [ + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_BLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_IL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_AL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_A", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_BL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_B", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_DLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_D", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ILL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_DL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_I", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ALL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_16", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_16", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_t2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_comp1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React16", + "status": "SUCCEEDED" + } + ], + "duration": 0.267185, + "exception": null, + "id": "autogen_report_for_task1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "curves": [ + { + "id": "autogen_curve_task1_BLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_IL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_AL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_A", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_BL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_B", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_DLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_D", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_ILL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_DL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_I", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_ALL", + "status": "SUCCEEDED" + } + ], + "duration": 0.432204, + "exception": null, + "id": "autogen_plot_for_task1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000496", + "duration": 15.522015, + "exception": null, + "id": "task1", + "output": "", + "simulatorDetails": [ + { + "key": "solver", + "value": "amici.amici.CVodeSolver" + }, + { + "key": "method", + "value": "amici.swig_wrappers.runAmiciSimulation" + }, + { + "key": "arguments", + "value": {} + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + }, + "detailed_error_log": {} + }, + "brian2": { + "exception_message": "Command '-i /root/in/BIOMD0000000001_url.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1", + "log_yml": { + "duration": 0.081759, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "WARNING /usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpzxessd2h/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n [py.warnings]\r\npyNeuroML >>> WARNING - /usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpzxessd2h/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "bionetgen": { + "exception_message": "Command '-i /root/in/BIOMD0000000001_url.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1", + "log_yml": { + "duration": 0.160269, + "exception": { + "message": "`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmp64y_xz8l/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000001_url` has warnings.\r\n - The model file `BIOMD0000000001_url.xml` has warnings.\r\n - 26 warnings of type SBML unit consistency (99505). The following is the first warning at line 467, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 35 warnings of type Modeling practice (80701). The following is the first warning at line 406, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` has warnings.\r\n - Model `BIOMD0000000001_url` has warnings.\r\n - The model file `BIOMD0000000001_url.xml` has warnings.\r\n - 26 warnings of type SBML unit consistency (99505). The following is the first warning at line 467, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 35 warnings of type Modeling practice (80701). The following is the first warning at line 406, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "boolnet": { + "exception_message": "Command '-i /root/in/BIOMD0000000001_url.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1", + "log_yml": { + "duration": 0.144054, + "exception": { + "message": "`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmp5f1k93po/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only features available in L1V3 are supported. Newer features such as simple repeated tasks are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000001_url` may be invalid.\r\n - The model file `BIOMD0000000001_url.xml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_1 * BL - kr_1 * BLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_2 * BLL - kr_2 * ALL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_3 * A - kr_3 * AL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_4 * AL - kr_4 * ALL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_5 * B - kr_5 * A)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_6 * BL - kr_6 * AL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_7 * I - kr_7 * IL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_8 * IL - kr_8 * ILL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_9 * A - kr_9 * I)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_10 * AL - kr_10 * IL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_11 * ALL - kr_11 * ILL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_12 * D - kr_12 * DL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_13 * DL - kr_13 * DLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_14 * I - kr_14 * D)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_15 * IL - kr_15 * DL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_16 * ILL - kr_16 * DLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gt(time, t2)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_0' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_1' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_1' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_2' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_2' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_3' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_3' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_4' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_4' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_5' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_5' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_6' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_6' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_7' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_7' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_8' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_8' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_9' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_9' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_10' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_10' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_11' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_11' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_12' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_12' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_13' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_13' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_14' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_14' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_15' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_15' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_16' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_16' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 't2' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` may be invalid.\r\n - Model `BIOMD0000000001_url` may be invalid.\r\n - The model file `BIOMD0000000001_url.xml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_1 * BL - kr_1 * BLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_2 * BLL - kr_2 * ALL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_3 * A - kr_3 * AL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_4 * AL - kr_4 * ALL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_5 * B - kr_5 * A)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_6 * BL - kr_6 * AL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_7 * I - kr_7 * IL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_8 * IL - kr_8 * ILL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_9 * A - kr_9 * I)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_10 * AL - kr_10 * IL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_11 * ALL - kr_11 * ILL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_12 * D - kr_12 * DL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_13 * DL - kr_13 * DLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_14 * I - kr_14 * D)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_15 * IL - kr_15 * DL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_16 * ILL - kr_16 * DLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gt(time, t2)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_0' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_1' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_1' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_2' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_2' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_3' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_3' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_4' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_4' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_5' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_5' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_6' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_6' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_7' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_7' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_8' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_8' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_9' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_9' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_10' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_10' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_11' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_11' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_12' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_12' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_13' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_13' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_14' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_14' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_15' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_15' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_16' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_16' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 't2' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "cbmpy": { + "exception_message": "Command '-i /root/in/BIOMD0000000001_url.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1", + "log_yml": { + "duration": 0.233937, + "exception": { + "message": "`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpllsy0tzm/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000001_url` has warnings.\r\n - The model file `BIOMD0000000001_url.xml` has warnings.\r\n - 26 warnings of type SBML unit consistency (99505). The following is the first warning at line 467, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 35 warnings of type Modeling practice (80701). The following is the first warning at line 406, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` has warnings.\r\n - Model `BIOMD0000000001_url` has warnings.\r\n - The model file `BIOMD0000000001_url.xml` has warnings.\r\n - 26 warnings of type SBML unit consistency (99505). The following is the first warning at line 467, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 35 warnings of type Modeling practice (80701). The following is the first warning at line 406, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "cobrapy": { + "exception_message": "Command '-i /root/in/BIOMD0000000001_url.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1", + "log_yml": { + "duration": 0.145853, + "exception": { + "message": "`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpcnif1fxb/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000001_url` has warnings.\r\n - The model file `BIOMD0000000001_url.xml` has warnings.\r\n - 26 warnings of type SBML unit consistency (99505). The following is the first warning at line 467, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 35 warnings of type Modeling practice (80701). The following is the first warning at line 406, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` has warnings.\r\n - Model `BIOMD0000000001_url` has warnings.\r\n - The model file `BIOMD0000000001_url.xml` has warnings.\r\n - 26 warnings of type SBML unit consistency (99505). The following is the first warning at line 467, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 35 warnings of type Modeling practice (80701). The following is the first warning at line 406, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "copasi": { + "exception_message": "", + "log_yml": { + "duration": 1.406639, + "exception": null, + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmplq5f15uj/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000001_url` has warnings.\r\n - The model file `BIOMD0000000001_url.xml` has warnings.\r\n - 26 warnings of type SBML unit consistency (99505). The following is the first warning at line 467, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 35 warnings of type Modeling practice (80701). The following is the first warning at line 406, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` has warnings.\r\n - Model `BIOMD0000000001_url` has warnings.\r\n - The model file `BIOMD0000000001_url.xml` has warnings.\r\n - 26 warnings of type SBML unit consistency (99505). The following is the first warning at line 467, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 35 warnings of type Modeling practice (80701). The following is the first warning at line 406, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmplq5f15uj/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 1.081246, + "exception": null, + "location": "BIOMD0000000001_url.sedml", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n BIOMD0000000001_url.sedml:\r\n Tasks (1):\r\n task1\r\n Reports (1):\r\n autogen_report_for_task1: 66 data sets\r\n Plots (1):\r\n autogen_plot_for_task1: 12 curves\r\n\r\nExecuting SED-ML file 1: BIOMD0000000001_url.sedml ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task1`\r\n Outputs:\r\n `autogen_plot_for_task1`\r\n `autogen_report_for_task1`\r\n Executing task 1: `task1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `autogen_report_for_task1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `autogen_plot_for_task1` ...", + "outputs": [ + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_BLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_IL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_AL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_A", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_BL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_B", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_DLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_D", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ILL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_DL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_I", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ALL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_16", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_16", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_t2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_comp1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React16", + "status": "SUCCEEDED" + } + ], + "duration": 0.257525, + "exception": null, + "id": "autogen_report_for_task1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "curves": [ + { + "id": "autogen_curve_task1_BLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_IL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_AL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_A", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_BL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_B", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_DLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_D", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_ILL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_DL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_I", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_ALL", + "status": "SUCCEEDED" + } + ], + "duration": 0.499548, + "exception": null, + "id": "autogen_plot_for_task1", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000560", + "duration": 0.146259, + "exception": null, + "id": "task1", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `auto_dg_for_task1_React9__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_16__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_DL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React14__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_D__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_11__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_15__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_10__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React11__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_14__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_7__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React12__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_12__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_7__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_BL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_13__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_4__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_11__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React13__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_8__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_9__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_AL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_2__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_DLL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_13__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_16__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_1__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React15__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_B__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React16__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_6__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_3__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_I__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_BLL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_2__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_t2__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_IL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_3__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React6__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_14__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_9__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_0__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_6__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React3__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React0__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_15__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_8__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_1__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_A__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_5__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React5__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React8__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React1__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_4__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React2__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React7__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_comp1__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_10__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ILL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_0__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ALL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_5__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_12__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React4__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React10__x` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mModel `BIOMD0000000001_url` may be invalid.\r\n - The model file `/tmp/tmplq5f15uj/./BIOMD0000000001_url.xml` has warnings.\r\n - 26 warnings of type SBML unit consistency (99505). The following is the first warning at line 467, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 35 warnings of type Modeling practice (80701). The following is the first warning at line 406, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/kisao/utils.py:518: AlgorithmSubstitutedWarning: \u001b[33m'LSODA/LSODAR hybrid method' (KISAO_0000560) will be substituted for 'ODE solver' (KISAO_0000694) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", + "simulatorDetails": [ + { + "key": "methodName", + "value": "lsoda" + }, + { + "key": "parameters", + "value": null + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + }, + "detailed_error_log": {} + }, + "gillespy2": { + "exception_message": "Command '-i /root/in/BIOMD0000000001_url.omex -o /root/out' in image 'ghcr.io/biosimulators/gillespy2' returned non-zero exit status 1", + "log_yml": { + "duration": 0.14306, + "exception": { + "message": "`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmp1cm368ul/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000001_url` has warnings.\r\n - The model file `BIOMD0000000001_url.xml` has warnings.\r\n - 26 warnings of type SBML unit consistency (99505). The following is the first warning at line 467, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 35 warnings of type Modeling practice (80701). The following is the first warning at line 406, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` has warnings.\r\n - Model `BIOMD0000000001_url` has warnings.\r\n - The model file `BIOMD0000000001_url.xml` has warnings.\r\n - 26 warnings of type SBML unit consistency (99505). The following is the first warning at line 467, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 35 warnings of type Modeling practice (80701). The following is the first warning at line 406, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "ginsim": { + "exception_message": "Command '-i /root/in/BIOMD0000000001_url.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1", + "log_yml": { + "duration": 0.156454, + "exception": { + "message": "`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmppsbjd98y/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only features available in L1V3 are supported. Newer features such as simple repeated tasks are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000001_url` may be invalid.\r\n - The model file `BIOMD0000000001_url.xml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_1 * BL - kr_1 * BLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_2 * BLL - kr_2 * ALL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_3 * A - kr_3 * AL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_4 * AL - kr_4 * ALL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_5 * B - kr_5 * A)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_6 * BL - kr_6 * AL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_7 * I - kr_7 * IL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_8 * IL - kr_8 * ILL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_9 * A - kr_9 * I)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_10 * AL - kr_10 * IL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_11 * ALL - kr_11 * ILL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_12 * D - kr_12 * DL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_13 * DL - kr_13 * DLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_14 * I - kr_14 * D)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_15 * IL - kr_15 * DL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_16 * ILL - kr_16 * DLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gt(time, t2)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_0' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_1' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_1' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_2' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_2' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_3' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_3' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_4' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_4' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_5' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_5' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_6' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_6' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_7' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_7' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_8' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_8' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_9' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_9' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_10' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_10' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_11' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_11' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_12' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_12' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_13' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_13' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_14' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_14' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_15' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_15' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_16' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_16' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 't2' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` may be invalid.\r\n - Model `BIOMD0000000001_url` may be invalid.\r\n - The model file `BIOMD0000000001_url.xml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_1 * BL - kr_1 * BLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_2 * BLL - kr_2 * ALL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_3 * A - kr_3 * AL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_4 * AL - kr_4 * ALL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_5 * B - kr_5 * A)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_6 * BL - kr_6 * AL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_7 * I - kr_7 * IL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_8 * IL - kr_8 * ILL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_9 * A - kr_9 * I)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_10 * AL - kr_10 * IL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_11 * ALL - kr_11 * ILL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_12 * D - kr_12 * DL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_13 * DL - kr_13 * DLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_14 * I - kr_14 * D)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_15 * IL - kr_15 * DL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_16 * ILL - kr_16 * DLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gt(time, t2)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_0' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_1' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_1' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_2' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_2' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_3' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_3' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_4' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_4' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_5' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_5' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_6' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_6' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_7' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_7' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_8' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_8' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_9' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_9' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_10' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_10' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_11' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_11' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_12' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_12' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_13' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_13' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_14' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_14' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_15' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_15' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_16' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_16' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 't2' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "libsbmlsim": { + "exception_message": "Command '-i /root/in/BIOMD0000000001_url.omex -o /root/out' in image 'ghcr.io/biosimulators/libsbmlsim' returned non-zero exit status 1", + "log_yml": { + "duration": 0.158375, + "exception": { + "message": "`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpev59pj1u/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only features available in L1V3 are supported. Newer features such as simple repeated tasks are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000001_url` may be invalid.\r\n - The model file `BIOMD0000000001_url.xml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_1 * BL - kr_1 * BLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_2 * BLL - kr_2 * ALL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_3 * A - kr_3 * AL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_4 * AL - kr_4 * ALL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_5 * B - kr_5 * A)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_6 * BL - kr_6 * AL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_7 * I - kr_7 * IL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_8 * IL - kr_8 * ILL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_9 * A - kr_9 * I)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_10 * AL - kr_10 * IL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_11 * ALL - kr_11 * ILL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_12 * D - kr_12 * DL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_13 * DL - kr_13 * DLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_14 * I - kr_14 * D)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_15 * IL - kr_15 * DL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_16 * ILL - kr_16 * DLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gt(time, t2)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_0' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_1' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_1' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_2' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_2' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_3' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_3' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_4' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_4' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_5' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_5' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_6' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_6' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_7' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_7' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_8' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_8' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_9' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_9' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_10' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_10' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_11' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_11' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_12' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_12' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_13' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_13' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_14' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_14' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_15' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_15' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_16' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_16' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 't2' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` may be invalid.\r\n - Model `BIOMD0000000001_url` may be invalid.\r\n - The model file `BIOMD0000000001_url.xml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_1 * BL - kr_1 * BLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_2 * BLL - kr_2 * ALL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_3 * A - kr_3 * AL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_4 * AL - kr_4 * ALL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_5 * B - kr_5 * A)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_6 * BL - kr_6 * AL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_7 * I - kr_7 * IL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_8 * IL - kr_8 * ILL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_9 * A - kr_9 * I)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_10 * AL - kr_10 * IL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_11 * ALL - kr_11 * ILL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_12 * D - kr_12 * DL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_13 * DL - kr_13 * DLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_14 * I - kr_14 * D)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_15 * IL - kr_15 * DL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_16 * ILL - kr_16 * DLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gt(time, t2)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_0' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_1' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_1' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_2' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_2' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_3' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_3' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_4' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_4' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_5' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_5' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_6' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_6' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_7' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_7' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_8' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_8' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_9' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_9' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_10' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_10' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_11' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_11' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_12' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_12' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_13' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_13' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_14' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_14' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_15' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_15' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_16' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_16' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 't2' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "masspy": { + "exception_message": "Command '-i /root/in/BIOMD0000000001_url.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1", + "log_yml": { + "duration": 0.165867, + "exception": { + "message": "`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mSedmlFeatureNotSupportedWarning\u001b[0m: \u001b[33m`/tmp/tmpv87m0uvc/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000001_url` has warnings.\r\n - The model file `BIOMD0000000001_url.xml` has warnings.\r\n - 26 warnings of type SBML unit consistency (99505). The following is the first warning at line 467, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 35 warnings of type Modeling practice (80701). The following is the first warning at line 406, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` has warnings.\r\n - Model `BIOMD0000000001_url` has warnings.\r\n - The model file `BIOMD0000000001_url.xml` has warnings.\r\n - 26 warnings of type SBML unit consistency (99505). The following is the first warning at line 467, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 35 warnings of type Modeling practice (80701). The following is the first warning at line 406, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\u001b[0m\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "netpyne": { + "exception_message": "Command '-i /root/in/BIOMD0000000001_url.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1", + "log_yml": { + "duration": 0.051762, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "neuron": { + "exception_message": "Command '-i /root/in/BIOMD0000000001_url.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1", + "log_yml": { + "duration": 0.12182, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpcvkt9vjo/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "opencor": { + "exception_message": "Command '-i /root/in/BIOMD0000000001_url.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1", + "log_yml": { + "duration": 0.083156, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "/home/opencor/OpenCOR/python/lib/python3.7/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmphs4vnr76/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only features available in L1V3 are supported. Newer features such as simple repeated tasks are not yet supported.\u001b[0m\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "pyneuroml": { + "exception_message": "Command '-i /root/in/BIOMD0000000001_url.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1", + "log_yml": { + "duration": 0.047416, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmp_rolss6v/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "pysces": { + "exception_message": "", + "log_yml": { + "duration": 1.484589, + "exception": null, + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpbh50myyf/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000001_url` has warnings.\r\n - The model file `BIOMD0000000001_url.xml` has warnings.\r\n - 26 warnings of type SBML unit consistency (99505). The following is the first warning at line 467, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 35 warnings of type Modeling practice (80701). The following is the first warning at line 406, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` has warnings.\r\n - Model `BIOMD0000000001_url` has warnings.\r\n - The model file `BIOMD0000000001_url.xml` has warnings.\r\n - 26 warnings of type SBML unit consistency (99505). The following is the first warning at line 467, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 35 warnings of type Modeling practice (80701). The following is the first warning at line 406, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpbh50myyf/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 1.14505, + "exception": null, + "location": "BIOMD0000000001_url.sedml", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n BIOMD0000000001_url.sedml:\r\n Tasks (1):\r\n task1\r\n Reports (1):\r\n autogen_report_for_task1: 66 data sets\r\n Plots (1):\r\n autogen_plot_for_task1: 12 curves\r\n\r\nExecuting SED-ML file 1: BIOMD0000000001_url.sedml ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task1`\r\n Outputs:\r\n `autogen_plot_for_task1`\r\n `autogen_report_for_task1`\r\n Executing task 1: `task1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V4\r\nINFO: Rescaling compartment with size 1e-16 to 1.0\r\ncsymbol time defined as \"time\" in event \r\nInfo: single compartment model: locating \"React0\" in default compartment\r\nInfo: single compartment model: locating \"React1\" in default compartment\r\nInfo: single compartment model: locating \"React2\" in default compartment\r\nInfo: single compartment model: locating \"React3\" in default compartment\r\nInfo: single compartment model: locating \"React4\" in default compartment\r\nInfo: single compartment model: locating \"React5\" in default compartment\r\nInfo: single compartment model: locating \"React6\" in default compartment\r\nInfo: single compartment model: locating \"React7\" in default compartment\r\nInfo: single compartment model: locating \"React8\" in default compartment\r\nInfo: single compartment model: locating \"React9\" in default compartment\r\nInfo: single compartment model: locating \"React10\" in default compartment\r\nInfo: single compartment model: locating \"React11\" in default compartment\r\nInfo: single compartment model: locating \"React12\" in default compartment\r\nInfo: single compartment model: locating \"React13\" in default compartment\r\nInfo: single compartment model: locating \"React14\" in default compartment\r\nInfo: single compartment model: locating \"React15\" in default compartment\r\nInfo: single compartment model: locating \"React16\" in default compartment\r\nWriting file: /tmp/tmpc7l_eyuc.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmpn2ifuf74.xml\r\nout: /tmp/tmpc7l_eyuc.psc\r\nUsing model directory: /Pysces/psc\r\n/tmp/tmpc7l_eyuc.psc loading ..... \r\nParsing file: /tmp/tmpc7l_eyuc.psc\r\nInfo: No reagents have been fixed\r\nInfo: \"t2\" has been initialised but does not occur in a rate equation\r\n \r\nCalculating L matrix . . . . . . . done.\r\nCalculating K matrix . . . . . . . done.\r\n \r\nEvent(s) detected.\r\n\r\nINFO: events detected and we have Assimulo installed,\r\nswitching to CVODE (mod.mode_integrator='CVODE').\r\nCVODE time for 1001 points: 0.045973777770996094\r\n \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `autogen_report_for_task1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `autogen_plot_for_task1` ...", + "outputs": [ + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_BLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_IL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_AL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_A", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_BL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_B", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_DLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_D", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ILL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_DL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_I", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ALL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_16", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_16", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_t2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_comp1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React16", + "status": "SUCCEEDED" + } + ], + "duration": 0.298217, + "exception": null, + "id": "autogen_report_for_task1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "curves": [ + { + "id": "autogen_curve_task1_BLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_IL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_AL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_A", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_BL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_B", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_DLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_D", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_ILL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_DL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_I", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_ALL", + "status": "SUCCEEDED" + } + ], + "duration": 0.473628, + "exception": null, + "id": "autogen_plot_for_task1", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000019", + "duration": 0.178782, + "exception": null, + "id": "task1", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `auto_dg_for_task1_React3__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_4__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_2__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React6__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_11__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_16__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_1__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_8__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_14__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_2__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_12__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React5__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React9__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_10__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_13__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React4__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_1__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ALL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_11__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React12__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_7__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_0__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_15__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_15__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_0__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React10__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ILL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React0__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React1__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React16__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_t2__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_13__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_9__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_DL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React13__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React7__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_I__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_IL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React8__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_D__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React15__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_10__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_9__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_8__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_DLL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_7__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_16__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_4__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_6__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_comp1__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_AL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React14__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_3__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React11__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_5__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_14__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_A__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React2__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_BL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_6__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_B__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_12__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_BLL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_5__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_3__x` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/kisao/utils.py:518: AlgorithmSubstitutedWarning: \u001b[33m'CVODE' (KISAO_0000019) will be substituted for 'ODE solver' (KISAO_0000694) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", + "simulatorDetails": [ + { + "key": "method", + "value": "pysces.PyscesModel.Simulate" + }, + { + "key": "arguments", + "value": { + "cvode_abstol": 1e-09, + "cvode_access_solver": true, + "cvode_h0": 0.0, + "cvode_hmax": 0.0, + "cvode_hmin": 0.0, + "cvode_mxord": 5, + "cvode_mxstep": 5000, + "cvode_reltol": 1e-09, + "cvode_return_event_timepoints": false, + "cvode_stats": false, + "cvode_track_assignment_rules": true + } + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + }, + "detailed_error_log": {} + }, + "rbapy": { + "exception_message": "Command '-i /root/in/BIOMD0000000001_url.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1", + "log_yml": { + "duration": 0.141643, + "exception": { + "message": "`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpqlaao665/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only features available in L1V3 are supported. Newer features such as simple repeated tasks are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000001_url` may be invalid.\r\n - The model file `BIOMD0000000001_url.xml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_1 * BL - kr_1 * BLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_2 * BLL - kr_2 * ALL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_3 * A - kr_3 * AL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_4 * AL - kr_4 * ALL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_5 * B - kr_5 * A)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_6 * BL - kr_6 * AL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_7 * I - kr_7 * IL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_8 * IL - kr_8 * ILL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_9 * A - kr_9 * I)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_10 * AL - kr_10 * IL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_11 * ALL - kr_11 * ILL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_12 * D - kr_12 * DL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_13 * DL - kr_13 * DLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_14 * I - kr_14 * D)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_15 * IL - kr_15 * DL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_16 * ILL - kr_16 * DLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gt(time, t2)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_0' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_1' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_1' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_2' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_2' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_3' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_3' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_4' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_4' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_5' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_5' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_6' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_6' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_7' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_7' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_8' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_8' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_9' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_9' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_10' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_10' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_11' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_11' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_12' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_12' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_13' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_13' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_14' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_14' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_15' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_15' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_16' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_16' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 't2' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` may be invalid.\r\n - Model `BIOMD0000000001_url` may be invalid.\r\n - The model file `BIOMD0000000001_url.xml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_1 * BL - kr_1 * BLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_2 * BLL - kr_2 * ALL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_3 * A - kr_3 * AL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_4 * AL - kr_4 * ALL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_5 * B - kr_5 * A)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_6 * BL - kr_6 * AL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_7 * I - kr_7 * IL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_8 * IL - kr_8 * ILL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_9 * A - kr_9 * I)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_10 * AL - kr_10 * IL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_11 * ALL - kr_11 * ILL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_12 * D - kr_12 * DL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_13 * DL - kr_13 * DLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_14 * I - kr_14 * D)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_15 * IL - kr_15 * DL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_16 * ILL - kr_16 * DLL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gt(time, t2)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_0' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_1' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_1' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_2' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_2' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_3' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_3' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_4' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_4' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_5' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_5' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_6' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_6' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_7' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_7' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_8' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_8' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_9' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_9' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_10' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_10' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_11' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_11' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_12' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_12' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_13' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_13' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_14' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_14' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_15' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_15' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_16' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kr_16' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 't2' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "smoldyn": { + "exception_message": "Command '-i /root/in/BIOMD0000000001_url.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1", + "log_yml": {}, + "detailed_error_log": {} + }, + "tellurium": { + "exception_message": "", + "log_yml": { + "duration": 1.493313, + "exception": null, + "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning:\r\n\r\n\u001b[33m`/tmp/tmpygc_3b8y/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000001_url` has warnings.\r\n - The model file `BIOMD0000000001_url.xml` has warnings.\r\n - 26 warnings of type SBML unit consistency (99505). The following is the first warning at line 467, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 35 warnings of type Modeling practice (80701). The following is the first warning at line 406, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` has warnings.\r\n - Model `BIOMD0000000001_url` has warnings.\r\n - The model file `BIOMD0000000001_url.xml` has warnings.\r\n - 26 warnings of type SBML unit consistency (99505). The following is the first warning at line 467, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 35 warnings of type Modeling practice (80701). The following is the first warning at line 406, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning:\r\n\r\n\u001b[33m`/tmp/tmpygc_3b8y/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n\r\n", + "sedDocuments": [ + { + "duration": 1.032751, + "exception": null, + "location": "BIOMD0000000001_url.sedml", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n BIOMD0000000001_url.sedml:\r\n Tasks (1):\r\n task1\r\n Reports (1):\r\n autogen_report_for_task1: 66 data sets\r\n Plots (1):\r\n autogen_plot_for_task1: 12 curves\r\n\r\nExecuting SED-ML file 1: BIOMD0000000001_url.sedml ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task1`\r\n Outputs:\r\n `autogen_plot_for_task1`\r\n `autogen_report_for_task1`\r\n Executing task 1: `task1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `autogen_report_for_task1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `autogen_plot_for_task1` ...", + "outputs": [ + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_BLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_IL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_AL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_A", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_BL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_B", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_DLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_D", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ILL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_DL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_I", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ALL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_16", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_16", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_t2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_comp1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React16", + "status": "SUCCEEDED" + } + ], + "duration": 0.261701, + "exception": null, + "id": "autogen_report_for_task1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "curves": [ + { + "id": "autogen_curve_task1_BLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_IL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_AL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_A", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_BL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_B", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_DLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_D", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_ILL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_DL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_I", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_ALL", + "status": "SUCCEEDED" + } + ], + "duration": 0.453212, + "exception": null, + "id": "autogen_plot_for_task1", + "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning:\r\n\r\n\u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n\r\n", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000019", + "duration": 0.134319, + "exception": null, + "id": "task1", + "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33m- Variable `auto_dg_for_task1_React13__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_15__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_7__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_BLL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React8__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_9__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React5__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_t2__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_16__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React11__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_D__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_8__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_I__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_7__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_4__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React14__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_IL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_2__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_13__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_BL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_DL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React4__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_12__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_11__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_16__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React6__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React10__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ALL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React7__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_3__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ILL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_AL__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React1__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_B__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React0__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React9__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React15__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React12__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_0__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_1__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_A__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React3__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React16__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_10__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_6__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_12__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_5__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_9__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_5__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_comp1__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_3__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_8__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_13__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_15__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_2__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_11__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_1__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_4__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_14__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_14__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_React2__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kf_0__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_10__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kr_6__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_DLL__x` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mModel `BIOMD0000000001_url` may be invalid.\r\n - The model file `/tmp/tmpygc_3b8y/./BIOMD0000000001_url.xml` has warnings.\r\n - 26 warnings of type SBML unit consistency (99505). The following is the first warning at line 467, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'comp1 * (kf_0 * B - kr_0 * BL)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 35 warnings of type Modeling practice (80701). The following is the first warning at line 406, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kf_0' does not have a 'units' attribute.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/kisao/utils.py:518: AlgorithmSubstitutedWarning:\r\n\r\n\u001b[33m'CVODE' (KISAO_0000019) will be substituted for 'ODE solver' (KISAO_0000694) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n\r\n", + "simulatorDetails": [ + { + "key": "method", + "value": "simulate" + }, + { + "key": "solver", + "value": "cvode" + }, + { + "key": "relative_tolerance", + "value": 1e-06 + }, + { + "key": "absolute_tolerance", + "value": 1e-12 + }, + { + "key": "stiff", + "value": true + }, + { + "key": "maximum_bdf_order", + "value": 5 + }, + { + "key": "maximum_adams_order", + "value": 12 + }, + { + "key": "maximum_num_steps", + "value": 20000 + }, + { + "key": "maximum_time_step", + "value": 0.0 + }, + { + "key": "minimum_time_step", + "value": 0.0 + }, + { + "key": "initial_time_step", + "value": 0.0 + }, + { + "key": "multiple_steps", + "value": false + }, + { + "key": "variable_step_size", + "value": false + }, + { + "key": "max_output_rows", + "value": 100000 + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + }, + "detailed_error_log": {} + }, + "vcell": { + "exception_message": "", + "log_yml": { + "duration": 13, + "exception": null, + "output": "Processing BIOMD0000000001_url.sedml. Done", + "sedDocuments": [ + { + "duration": null, + "exception": null, + "location": "BIOMD0000000001_url.sedml", + "output": "Initializing SED-ML document... done. Successful translation of SED-ML file. Building solvers and starting simulation of all tasks... Generating outputs... Generating CSV file... Done. Generating HDF5 file...", + "outputs": [ + { + "curves": [ + { + "id": "autogen_curve_task1_BLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_IL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_AL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_A", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_BL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_B", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_DLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_D", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_ILL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_DL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_I", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_ALL", + "status": "SUCCEEDED" + } + ], + "duration": null, + "exception": null, + "id": "autogen_plot_for_task1", + "output": null, + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_BLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_IL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_AL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_A", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_BL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_B", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_DLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_D", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ILL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_DL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_I", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ALL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_16", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_16", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_t2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_comp1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React16", + "status": "SUCCEEDED" + } + ], + "duration": null, + "exception": null, + "id": "autogen_report_for_task1", + "output": null, + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000019", + "duration": 1, + "exception": null, + "id": "task1", + "output": "Initializing simulation job 0 ... done. Starting simulation... done.", + "simulatorDetails": null, + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + }, + "detailed_error_log": {} + }, + "xpp": { + "exception_message": "Command '-i /root/in/BIOMD0000000001_url.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1", + "log_yml": { + "duration": 0.056813, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmphu0i03yf/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + } +} \ No newline at end of file diff --git a/BioModels/BIOMD0000000001/tests/results_remote.json b/BioModels/BIOMD0000000001/tests/results_remote.json new file mode 100644 index 00000000..6f4be9b3 --- /dev/null +++ b/BioModels/BIOMD0000000001/tests/results_remote.json @@ -0,0 +1,2580 @@ +{ + "amici": { + "response": 201, + "view": "https://api.biosimulations.org/runs/672a17a10d09353e8f0fc0b3", + "download": "https://api.biosimulations.org/results/672a17a10d09353e8f0fc0b3/download", + "logs": "https://api.biosimulations.org/logs/672a17a10d09353e8f0fc0b3?includeOutput=true", + "log_yml": { + "duration": 31.095497, + "exception": null, + "output": "", + "sedDocuments": [ + { + "duration": 30.69659, + "exception": null, + "location": "BIOMD0000000001_url.sedml", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n BIOMD0000000001_url.sedml:\r\n Tasks (1):\r\n task1\r\n Reports (1):\r\n autogen_report_for_task1: 66 data sets\r\n Plots (1):\r\n autogen_plot_for_task1: 12 curves\r\n\r\nExecuting SED-ML file 1: BIOMD0000000001_url.sedml ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task1`\r\n Outputs:\r\n `autogen_plot_for_task1`\r\n `autogen_report_for_task1`\r\n Executing task 1: `task1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `autogen_report_for_task1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `autogen_plot_for_task1` ...", + "outputs": [ + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_BLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_IL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_AL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_A", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_BL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_B", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_DLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_D", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ILL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_DL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_I", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ALL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_16", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_16", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_t2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_comp1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React16", + "status": "SUCCEEDED" + } + ], + "duration": 0.491604, + "exception": null, + "id": "autogen_report_for_task1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "curves": [ + { + "id": "autogen_curve_task1_BLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_IL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_AL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_A", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_BL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_B", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_DLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_D", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_ILL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_DL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_I", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_ALL", + "status": "SUCCEEDED" + } + ], + "duration": 0.563387, + "exception": null, + "id": "autogen_plot_for_task1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000496", + "duration": 29.481219, + "exception": null, + "id": "task1", + "output": "", + "simulatorDetails": [ + { + "key": "solver", + "value": "amici.amici.CVodeSolver" + }, + { + "key": "method", + "value": "amici.swig_wrappers.runAmiciSimulation" + }, + { + "key": "arguments", + "value": {} + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + }, + "brian2": { + "response": 201, + "view": "https://api.biosimulations.org/runs/672a17a35a60072d20f4c1fd", + "download": "https://api.biosimulations.org/results/672a17a35a60072d20f4c1fd/download", + "logs": "https://api.biosimulations.org/logs/672a17a35a60072d20f4c1fd?includeOutput=true", + "log_yml": { + "duration": 0.051355, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "bionetgen": { + "response": 201, + "view": "https://api.biosimulations.org/runs/672a17a5b678b3883bb6152f", + "download": "https://api.biosimulations.org/results/672a17a5b678b3883bb6152f/download", + "logs": "https://api.biosimulations.org/logs/672a17a5b678b3883bb6152f?includeOutput=true", + "log_yml": { + "duration": 0.19347, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "boolnet": { + "response": 201, + "view": "https://api.biosimulations.org/runs/672a17a75a60072d20f4c202", + "download": "https://api.biosimulations.org/results/672a17a75a60072d20f4c202/download", + "logs": "https://api.biosimulations.org/logs/672a17a75a60072d20f4c202?includeOutput=true", + "log_yml": { + "duration": 0.190837, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "cbmpy": { + "response": 201, + "view": "https://api.biosimulations.org/runs/672a17a95a60072d20f4c205", + "download": "https://api.biosimulations.org/results/672a17a95a60072d20f4c205/download", + "logs": "https://api.biosimulations.org/logs/672a17a95a60072d20f4c205?includeOutput=true", + "log_yml": { + "duration": 0.28332, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "cobrapy": { + "response": 201, + "view": "https://api.biosimulations.org/runs/672a17ab0d09353e8f0fc0b9", + "download": "https://api.biosimulations.org/results/672a17ab0d09353e8f0fc0b9/download", + "logs": "https://api.biosimulations.org/logs/672a17ab0d09353e8f0fc0b9?includeOutput=true", + "log_yml": { + "duration": 0.18803, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "copasi": { + "response": 201, + "view": "https://api.biosimulations.org/runs/672a17ad0d09353e8f0fc0bc", + "download": "https://api.biosimulations.org/results/672a17ad0d09353e8f0fc0bc/download", + "logs": "https://api.biosimulations.org/logs/672a17ad0d09353e8f0fc0bc?includeOutput=true", + "log_yml": { + "duration": 1.726035, + "exception": null, + "output": "", + "sedDocuments": [ + { + "duration": 1.387954, + "exception": null, + "location": "BIOMD0000000001_url.sedml", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n BIOMD0000000001_url.sedml:\r\n Tasks (1):\r\n task1\r\n Reports (1):\r\n autogen_report_for_task1: 66 data sets\r\n Plots (1):\r\n autogen_plot_for_task1: 12 curves\r\n\r\nExecuting SED-ML file 1: BIOMD0000000001_url.sedml ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task1`\r\n Outputs:\r\n `autogen_plot_for_task1`\r\n `autogen_report_for_task1`\r\n Executing task 1: `task1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `autogen_report_for_task1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `autogen_plot_for_task1` ...", + "outputs": [ + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_BLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_IL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_AL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_A", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_BL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_B", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_DLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_D", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ILL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_DL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_I", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ALL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_16", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_16", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_t2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_comp1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React16", + "status": "SUCCEEDED" + } + ], + "duration": 0.373563, + "exception": null, + "id": "autogen_report_for_task1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "curves": [ + { + "id": "autogen_curve_task1_BLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_IL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_AL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_A", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_BL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_B", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_DLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_D", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_ILL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_DL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_I", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_ALL", + "status": "SUCCEEDED" + } + ], + "duration": 0.596057, + "exception": null, + "id": "autogen_plot_for_task1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000560", + "duration": 0.250485, + "exception": null, + "id": "task1", + "output": "", + "simulatorDetails": [ + { + "key": "methodName", + "value": "lsoda" + }, + { + "key": "parameters", + "value": null + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + }, + "gillespy2": { + "response": 201, + "view": "https://api.biosimulations.org/runs/672a17b05a60072d20f4c211", + "download": "https://api.biosimulations.org/results/672a17b05a60072d20f4c211/download", + "logs": "https://api.biosimulations.org/logs/672a17b05a60072d20f4c211?includeOutput=true", + "log_yml": { + "duration": 0.198661, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "ginsim": { + "response": 201, + "view": "https://api.biosimulations.org/runs/672a17b2b678b3883bb61539", + "download": "https://api.biosimulations.org/results/672a17b2b678b3883bb61539/download", + "logs": "https://api.biosimulations.org/logs/672a17b2b678b3883bb61539?includeOutput=true", + "log_yml": { + "duration": 0.184712, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "libsbmlsim": { + "response": 201, + "view": "https://api.biosimulations.org/runs/672a17b35a60072d20f4c218", + "download": "https://api.biosimulations.org/results/672a17b35a60072d20f4c218/download", + "logs": "https://api.biosimulations.org/logs/672a17b35a60072d20f4c218?includeOutput=true", + "log_yml": { + "duration": 0.188246, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "masspy": { + "response": 201, + "view": "https://api.biosimulations.org/runs/672a17b5b678b3883bb6154b", + "download": "https://api.biosimulations.org/results/672a17b5b678b3883bb6154b/download", + "logs": "https://api.biosimulations.org/logs/672a17b5b678b3883bb6154b?includeOutput=true", + "log_yml": { + "duration": 1.428032, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Could not load MassModel 'BIOMD0000000001'", + "type": "CombineArchiveExecutionError" + }, + "output": "", + "sedDocuments": [ + { + "duration": 0.89302, + "exception": { + "message": "The SED document did not execute successfully:\n\n Could not load MassModel 'BIOMD0000000001'", + "type": "SedmlExecutionError" + }, + "location": "BIOMD0000000001_url.sedml", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n BIOMD0000000001_url.sedml:\r\n Tasks (1):\r\n task1\r\n Reports (1):\r\n autogen_report_for_task1: 66 data sets\r\n Plots (1):\r\n autogen_plot_for_task1: 12 curves\r\n\r\nExecuting SED-ML file 1: BIOMD0000000001_url.sedml ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task1`\r\n Outputs:\r\n `autogen_plot_for_task1`\r\n `autogen_report_for_task1`\r\n Executing task 1: `task1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `autogen_report_for_task1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `autogen_plot_for_task1` ...", + "outputs": [ + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_BLL", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_IL", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_AL", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_A", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_BL", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_B", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_DLL", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_D", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ILL", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_DL", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_I", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ALL", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kf_0", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kr_0", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kf_1", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kr_1", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kf_2", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kr_2", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kf_3", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kr_3", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kf_4", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kr_4", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kf_5", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kr_5", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kf_6", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kr_6", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kf_7", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kr_7", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kf_8", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kr_8", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kf_9", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kr_9", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kf_10", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kr_10", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kf_11", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kr_11", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kf_12", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kr_12", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kf_13", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kr_13", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kf_14", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kr_14", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kf_15", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kr_15", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kf_16", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kr_16", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_t2", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_comp1", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_React0", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_React1", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_React2", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_React3", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_React4", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_React5", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_React6", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_React7", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_React8", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_React9", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_React10", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_React11", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_React12", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_React13", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_React14", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_React15", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_React16", + "status": "SKIPPED" + } + ], + "duration": 0.056867, + "exception": null, + "id": "autogen_report_for_task1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + }, + { + "curves": [ + { + "id": "autogen_curve_task1_BLL", + "status": "SKIPPED" + }, + { + "id": "autogen_curve_task1_IL", + "status": "SKIPPED" + }, + { + "id": "autogen_curve_task1_AL", + "status": "SKIPPED" + }, + { + "id": "autogen_curve_task1_A", + "status": "SKIPPED" + }, + { + "id": "autogen_curve_task1_BL", + "status": "SKIPPED" + }, + { + "id": "autogen_curve_task1_B", + "status": "SKIPPED" + }, + { + "id": "autogen_curve_task1_DLL", + "status": "SKIPPED" + }, + { + "id": "autogen_curve_task1_D", + "status": "SKIPPED" + }, + { + "id": "autogen_curve_task1_ILL", + "status": "SKIPPED" + }, + { + "id": "autogen_curve_task1_DL", + "status": "SKIPPED" + }, + { + "id": "autogen_curve_task1_I", + "status": "SKIPPED" + }, + { + "id": "autogen_curve_task1_ALL", + "status": "SKIPPED" + } + ], + "duration": 0.293776, + "exception": null, + "id": "autogen_plot_for_task1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.322784, + "exception": { + "message": "Could not load MassModel 'BIOMD0000000001'", + "type": "MassSimulationError" + }, + "id": "task1", + "output": "\u001b[93mWARNING:\u001b[0m \u001b[93mModel does not contain SBML fbc package\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mModel does not contain SBML groups package\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Model 'BIOMD0000000001'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Model 'BIOMD0000000001'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Model 'BIOMD0000000001'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Model 'BIOMD0000000001'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Model 'BIOMD0000000001'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mRate expressions are set to exclude compartments, but the initial condition is an InitialAmount for 'BLL' in the SBML model specie. \u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Species 'BLL'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mRate expressions are set to exclude compartments, but the initial condition is an InitialAmount for 'IL' in the SBML model specie. \u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Species 'IL'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mRate expressions are set to exclude compartments, but the initial condition is an InitialAmount for 'AL' in the SBML model specie. \u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Species 'AL'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mRate expressions are set to exclude compartments, but the initial condition is an InitialAmount for 'A' in the SBML model specie. \u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Species 'A'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mRate expressions are set to exclude compartments, but the initial condition is an InitialAmount for 'BL' in the SBML model specie. \u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Species 'BL'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mRate expressions are set to exclude compartments, but the initial condition is an InitialAmount for 'B' in the SBML model specie. \u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Species 'B'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mRate expressions are set to exclude compartments, but the initial condition is an InitialAmount for 'DLL' in the SBML model specie. \u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Species 'DLL'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mRate expressions are set to exclude compartments, but the initial condition is an InitialAmount for 'D' in the SBML model specie. \u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Species 'D'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mRate expressions are set to exclude compartments, but the initial condition is an InitialAmount for 'ILL' in the SBML model specie. \u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Species 'ILL'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mRate expressions are set to exclude compartments, but the initial condition is an InitialAmount for 'DL' in the SBML model specie. \u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Species 'DL'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mRate expressions are set to exclude compartments, but the initial condition is an InitialAmount for 'I' in the SBML model specie. \u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Species 'I'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mRate expressions are set to exclude compartments, but the initial condition is an InitialAmount for 'ALL' in the SBML model specie. \u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Species 'ALL'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React0'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React1'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React2'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React3'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React4'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React5'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React6'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React7'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React8'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React9'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React10'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React11'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React12'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React13'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React14'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React15'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React16'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React0'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React1'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React2'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React3'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React4'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React5'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React6'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React7'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React8'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React9'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React10'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React11'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React12'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React13'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React14'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React15'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Reaction 'React16'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } + }, + "netpyne": { + "response": 201, + "view": "https://api.biosimulations.org/runs/672a17b70d09353e8f0fc0d6", + "download": "https://api.biosimulations.org/results/672a17b70d09353e8f0fc0d6/download", + "logs": "https://api.biosimulations.org/logs/672a17b70d09353e8f0fc0d6?includeOutput=true", + "log_yml": { + "duration": 0.069968, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "neuron": { + "response": 201, + "view": "https://api.biosimulations.org/runs/672a17b95a60072d20f4c227", + "download": "https://api.biosimulations.org/results/672a17b95a60072d20f4c227/download", + "logs": "https://api.biosimulations.org/logs/672a17b95a60072d20f4c227?includeOutput=true", + "log_yml": { + "duration": 0.047913, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "opencor": { + "response": 201, + "view": "https://api.biosimulations.org/runs/672a17ba5a60072d20f4c231", + "download": "https://api.biosimulations.org/results/672a17ba5a60072d20f4c231/download", + "logs": "https://api.biosimulations.org/logs/672a17ba5a60072d20f4c231?includeOutput=true", + "log_yml": { + "duration": 0.039026, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "/home/opencor/OpenCOR/python/lib/python3.7/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpzlgtc159/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only features available in L1V3 are supported. Newer features such as simple repeated tasks are not yet supported.\u001b[0m\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "pyneuroml": { + "response": 201, + "view": "https://api.biosimulations.org/runs/672a17bc0d09353e8f0fc0e5", + "download": "https://api.biosimulations.org/results/672a17bc0d09353e8f0fc0e5/download", + "logs": "https://api.biosimulations.org/logs/672a17bc0d09353e8f0fc0e5?includeOutput=true", + "log_yml": { + "duration": 0.065451, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "pysces": { + "response": 201, + "view": "https://api.biosimulations.org/runs/672a17be0d09353e8f0fc0ea", + "download": "https://api.biosimulations.org/results/672a17be0d09353e8f0fc0ea/download", + "logs": "https://api.biosimulations.org/logs/672a17be0d09353e8f0fc0ea?includeOutput=true", + "log_yml": { + "duration": 1.795554, + "exception": null, + "output": "libtk8.6.so: cannot open shared object file: No such file or directory\r\n\r\nPySCeS defaults to matplotlib's TKagg backend if not specified in the user configuration file, set \"matplotlib_backend = \" \r\nMatplotlib interface loaded (pysces.plt.m)\r\nPitcon routines available\r\nNLEQ2 routines available\r\nSBML support available\r\nYou are using NumPy (2.1.2) with SciPy (1.14.1)\r\nAssimulo CVode available\r\nRateChar is available\r\nParallel scanner is available\r\n\r\nPySCeS environment\r\n******************\r\npysces.model_dir = /home/FCAM/crbmapi/Pysces/psc\r\npysces.output_dir = /home/FCAM/crbmapi/Pysces\r\n\r\n\r\n***********************************************************************\r\n* Welcome to PySCeS (1.2.2) - Python Simulator for Cellular Systems *\r\n* http://pysces.sourceforge.net *\r\n* Copyright(C) B.G. Olivier, J.M. Rohwer, J.-H.S. Hofmeyr, 2004-2024 *\r\n* Triple-J Group for Molecular Cell Physiology *\r\n* Stellenbosch University, ZA and VU University Amsterdam, NL *\r\n* PySCeS is distributed under the PySCeS (BSD style) licence, see *\r\n* LICENCE.txt (supplied with this release) for details *\r\n* Please cite PySCeS with: doi:10.1093/bioinformatics/bti046 *\r\n***********************************************************************\r\n", + "sedDocuments": [ + { + "duration": 1.425644, + "exception": null, + "location": "BIOMD0000000001_url.sedml", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n BIOMD0000000001_url.sedml:\r\n Tasks (1):\r\n task1\r\n Reports (1):\r\n autogen_report_for_task1: 66 data sets\r\n Plots (1):\r\n autogen_plot_for_task1: 12 curves\r\n\r\nExecuting SED-ML file 1: BIOMD0000000001_url.sedml ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task1`\r\n Outputs:\r\n `autogen_plot_for_task1`\r\n `autogen_report_for_task1`\r\n Executing task 1: `task1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V4\r\nINFO: Rescaling compartment with size 1e-16 to 1.0\r\ncsymbol time defined as \"time\" in event \r\nInfo: single compartment model: locating \"React0\" in default compartment\r\nInfo: single compartment model: locating \"React1\" in default compartment\r\nInfo: single compartment model: locating \"React2\" in default compartment\r\nInfo: single compartment model: locating \"React3\" in default compartment\r\nInfo: single compartment model: locating \"React4\" in default compartment\r\nInfo: single compartment model: locating \"React5\" in default compartment\r\nInfo: single compartment model: locating \"React6\" in default compartment\r\nInfo: single compartment model: locating \"React7\" in default compartment\r\nInfo: single compartment model: locating \"React8\" in default compartment\r\nInfo: single compartment model: locating \"React9\" in default compartment\r\nInfo: single compartment model: locating \"React10\" in default compartment\r\nInfo: single compartment model: locating \"React11\" in default compartment\r\nInfo: single compartment model: locating \"React12\" in default compartment\r\nInfo: single compartment model: locating \"React13\" in default compartment\r\nInfo: single compartment model: locating \"React14\" in default compartment\r\nInfo: single compartment model: locating \"React15\" in default compartment\r\nInfo: single compartment model: locating \"React16\" in default compartment\r\nWriting file: /tmp/tmpusbz_uk4.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmprqun8mcy.xml\r\nout: /tmp/tmpusbz_uk4.psc\r\nUsing model directory: /home/FCAM/crbmapi/Pysces/psc\r\n/tmp/tmpusbz_uk4.psc loading ..... \r\nParsing file: /tmp/tmpusbz_uk4.psc\r\nInfo: No reagents have been fixed\r\nInfo: \"t2\" has been initialised but does not occur in a rate equation\r\n \r\nCalculating L matrix . . . . . . . done.\r\nCalculating K matrix . . . . . . . done.\r\n \r\nEvent(s) detected.\r\n\r\nINFO: events detected and we have Assimulo installed,\r\nswitching to CVODE (mod.mode_integrator='CVODE').\r\nCVODE time for 1001 points: 0.06746697425842285\r\n \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `autogen_report_for_task1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `autogen_plot_for_task1` ...", + "outputs": [ + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_BLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_IL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_AL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_A", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_BL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_B", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_DLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_D", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ILL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_DL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_I", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ALL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_16", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_16", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_t2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_comp1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React16", + "status": "SUCCEEDED" + } + ], + "duration": 0.40713, + "exception": null, + "id": "autogen_report_for_task1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "curves": [ + { + "id": "autogen_curve_task1_BLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_IL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_AL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_A", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_BL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_B", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_DLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_D", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_ILL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_DL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_I", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_ALL", + "status": "SUCCEEDED" + } + ], + "duration": 0.50147, + "exception": null, + "id": "autogen_plot_for_task1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000019", + "duration": 0.337132, + "exception": null, + "id": "task1", + "output": "", + "simulatorDetails": [ + { + "key": "method", + "value": "pysces.PyscesModel.Simulate" + }, + { + "key": "arguments", + "value": { + "cvode_abstol": 1e-09, + "cvode_access_solver": true, + "cvode_h0": 0.0, + "cvode_hmax": 0.0, + "cvode_hmin": 0.0, + "cvode_mxord": 5, + "cvode_mxstep": 5000, + "cvode_reltol": 1e-09, + "cvode_return_event_timepoints": false, + "cvode_stats": false, + "cvode_track_assignment_rules": true + } + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + }, + "rbapy": { + "response": 201, + "view": "https://api.biosimulations.org/runs/672a17bf5a60072d20f4c245", + "download": "https://api.biosimulations.org/results/672a17bf5a60072d20f4c245/download", + "logs": "https://api.biosimulations.org/logs/672a17bf5a60072d20f4c245?includeOutput=true", + "log_yml": { + "duration": 0.189542, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "smoldyn": { + "response": 201, + "view": "https://api.biosimulations.org/runs/672a17c15a60072d20f4c24d", + "download": "https://api.biosimulations.org/results/672a17c15a60072d20f4c24d/download", + "logs": "https://api.biosimulations.org/logs/672a17c15a60072d20f4c24d?includeOutput=true", + "log_yml": { + "duration": 0.053493, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "tellurium": { + "response": 201, + "view": "https://api.biosimulations.org/runs/672a17c35a60072d20f4c25e", + "download": "https://api.biosimulations.org/results/672a17c35a60072d20f4c25e/download", + "logs": "https://api.biosimulations.org/logs/672a17c35a60072d20f4c25e?includeOutput=true", + "log_yml": { + "duration": 1.982397, + "exception": null, + "output": "", + "sedDocuments": [ + { + "duration": 1.537546, + "exception": null, + "location": "BIOMD0000000001_url.sedml", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n BIOMD0000000001_url.sedml:\r\n Tasks (1):\r\n task1\r\n Reports (1):\r\n autogen_report_for_task1: 66 data sets\r\n Plots (1):\r\n autogen_plot_for_task1: 12 curves\r\n\r\nExecuting SED-ML file 1: BIOMD0000000001_url.sedml ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task1`\r\n Outputs:\r\n `autogen_plot_for_task1`\r\n `autogen_report_for_task1`\r\n Executing task 1: `task1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `autogen_report_for_task1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `autogen_plot_for_task1` ...", + "outputs": [ + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_BLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_IL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_AL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_A", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_BL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_B", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_DLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_D", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ILL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_DL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_I", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ALL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kf_16", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kr_16", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_t2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_comp1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React0", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React2", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React3", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React4", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React5", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React6", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React7", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React8", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React9", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React10", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React11", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React12", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React13", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React14", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React15", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_React16", + "status": "SUCCEEDED" + } + ], + "duration": 0.375738, + "exception": null, + "id": "autogen_report_for_task1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "curves": [ + { + "id": "autogen_curve_task1_BLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_IL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_AL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_A", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_BL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_B", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_DLL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_D", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_ILL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_DL", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_I", + "status": "SUCCEEDED" + }, + { + "id": "autogen_curve_task1_ALL", + "status": "SUCCEEDED" + } + ], + "duration": 0.508967, + "exception": null, + "id": "autogen_plot_for_task1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000019", + "duration": 0.249887, + "exception": null, + "id": "task1", + "output": "", + "simulatorDetails": [ + { + "key": "method", + "value": "simulate" + }, + { + "key": "solver", + "value": "cvode" + }, + { + "key": "relative_tolerance", + "value": 1e-06 + }, + { + "key": "absolute_tolerance", + "value": 1e-12 + }, + { + "key": "stiff", + "value": true + }, + { + "key": "maximum_bdf_order", + "value": 5 + }, + { + "key": "maximum_adams_order", + "value": 12 + }, + { + "key": "maximum_num_steps", + "value": 20000 + }, + { + "key": "maximum_time_step", + "value": 0.0 + }, + { + "key": "minimum_time_step", + "value": 0.0 + }, + { + "key": "initial_time_step", + "value": 0.0 + }, + { + "key": "multiple_steps", + "value": false + }, + { + "key": "variable_step_size", + "value": false + }, + { + "key": "max_output_rows", + "value": 100000 + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + }, + "vcell": { + "response": 201, + "view": "https://api.biosimulations.org/runs/672a17c6b678b3883bb6158f", + "download": "https://api.biosimulations.org/results/672a17c6b678b3883bb6158f/download", + "logs": "https://api.biosimulations.org/logs/672a17c6b678b3883bb6158f?includeOutput=true", + "log_yml": { + "duration": null, + "exception": null, + "output": null, + "sedDocuments": [ + { + "duration": null, + "exception": null, + "location": "BIOMD0000000001_url.sedml", + "output": null, + "outputs": [ + { + "curves": [ + { + "id": "autogen_curve_task1_BLL", + "status": "QUEUED" + }, + { + "id": "autogen_curve_task1_IL", + "status": "QUEUED" + }, + { + "id": "autogen_curve_task1_AL", + "status": "QUEUED" + }, + { + "id": "autogen_curve_task1_A", + "status": "QUEUED" + }, + { + "id": "autogen_curve_task1_BL", + "status": "QUEUED" + }, + { + "id": "autogen_curve_task1_B", + "status": "QUEUED" + }, + { + "id": "autogen_curve_task1_DLL", + "status": "QUEUED" + }, + { + "id": "autogen_curve_task1_D", + "status": "QUEUED" + }, + { + "id": "autogen_curve_task1_ILL", + "status": "QUEUED" + }, + { + "id": "autogen_curve_task1_DL", + "status": "QUEUED" + }, + { + "id": "autogen_curve_task1_I", + "status": "QUEUED" + }, + { + "id": "autogen_curve_task1_ALL", + "status": "QUEUED" + } + ], + "duration": null, + "exception": null, + "id": "autogen_plot_for_task1", + "output": null, + "skipReason": null, + "status": "QUEUED" + }, + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "QUEUED" + }, + { + "id": "autogen_task1_BLL", + "status": "QUEUED" + }, + { + "id": "autogen_task1_IL", + "status": "QUEUED" + }, + { + "id": "autogen_task1_AL", + "status": "QUEUED" + }, + { + "id": "autogen_task1_A", + "status": "QUEUED" + }, + { + "id": "autogen_task1_BL", + "status": "QUEUED" + }, + { + "id": "autogen_task1_B", + "status": "QUEUED" + }, + { + "id": "autogen_task1_DLL", + "status": "QUEUED" + }, + { + "id": "autogen_task1_D", + "status": "QUEUED" + }, + { + "id": "autogen_task1_ILL", + "status": "QUEUED" + }, + { + "id": "autogen_task1_DL", + "status": "QUEUED" + }, + { + "id": "autogen_task1_I", + "status": "QUEUED" + }, + { + "id": "autogen_task1_ALL", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kf_0", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kr_0", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kf_1", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kr_1", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kf_2", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kr_2", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kf_3", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kr_3", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kf_4", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kr_4", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kf_5", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kr_5", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kf_6", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kr_6", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kf_7", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kr_7", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kf_8", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kr_8", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kf_9", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kr_9", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kf_10", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kr_10", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kf_11", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kr_11", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kf_12", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kr_12", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kf_13", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kr_13", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kf_14", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kr_14", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kf_15", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kr_15", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kf_16", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kr_16", + "status": "QUEUED" + }, + { + "id": "autogen_task1_t2", + "status": "QUEUED" + }, + { + "id": "autogen_task1_comp1", + "status": "QUEUED" + }, + { + "id": "autogen_task1_React0", + "status": "QUEUED" + }, + { + "id": "autogen_task1_React1", + "status": "QUEUED" + }, + { + "id": "autogen_task1_React2", + "status": "QUEUED" + }, + { + "id": "autogen_task1_React3", + "status": "QUEUED" + }, + { + "id": "autogen_task1_React4", + "status": "QUEUED" + }, + { + "id": "autogen_task1_React5", + "status": "QUEUED" + }, + { + "id": "autogen_task1_React6", + "status": "QUEUED" + }, + { + "id": "autogen_task1_React7", + "status": "QUEUED" + }, + { + "id": "autogen_task1_React8", + "status": "QUEUED" + }, + { + "id": "autogen_task1_React9", + "status": "QUEUED" + }, + { + "id": "autogen_task1_React10", + "status": "QUEUED" + }, + { + "id": "autogen_task1_React11", + "status": "QUEUED" + }, + { + "id": "autogen_task1_React12", + "status": "QUEUED" + }, + { + "id": "autogen_task1_React13", + "status": "QUEUED" + }, + { + "id": "autogen_task1_React14", + "status": "QUEUED" + }, + { + "id": "autogen_task1_React15", + "status": "QUEUED" + }, + { + "id": "autogen_task1_React16", + "status": "QUEUED" + } + ], + "duration": null, + "exception": null, + "id": "autogen_report_for_task1", + "output": null, + "skipReason": null, + "status": "QUEUED" + } + ], + "skipReason": null, + "status": "QUEUED", + "tasks": [ + { + "algorithm": null, + "duration": null, + "exception": null, + "id": "task1", + "output": null, + "simulatorDetails": null, + "skipReason": null, + "status": "QUEUED" + } + ] + } + ], + "skipReason": null, + "status": "QUEUED" + } + }, + "xpp": { + "response": 201, + "view": "https://api.biosimulations.org/runs/672a17c80d09353e8f0fc122", + "download": "https://api.biosimulations.org/results/672a17c80d09353e8f0fc122/download", + "logs": "https://api.biosimulations.org/logs/672a17c80d09353e8f0fc122?includeOutput=true", + "log_yml": { + "duration": 0.047101, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + } +} \ No newline at end of file diff --git a/BioModels/test_biomodels_compatibility_biosimulators.py b/BioModels/test_biomodels_compatibility_biosimulators.py index 4f50b5bc..bd914f08 100644 --- a/BioModels/test_biomodels_compatibility_biosimulators.py +++ b/BioModels/test_biomodels_compatibility_biosimulators.py @@ -2,14 +2,8 @@ md_description = \ ''' -Download and run validation tests on all the curated models from BioModels https://www.ebi.ac.uk/biomodels. -The final step is to run the model in tellurium, -only models specified in SBML with a matching SEDML file are run in tellurium. -Errors or validation failures are reported at each step. -Outputs to the Markdown Table below. - -'valid-sbml-units' enforces strict unit checking, 'broken-ref' indicates that the SEDML file contained -a broken source='model.xml' reference which was corrected to the name of the model's provided SBML file. +Download and and create results table for curated models from BioModels https://www.ebi.ac.uk/biomodels. + ''' import pyneuroml.sbml #for validate_sbml_files @@ -19,10 +13,13 @@ import os import urllib import sys +import matplotlib sys.path.append("..") import utils +matplotlib.use('Agg') #prevent plotting from trying to open a window + API_URL: str = "https://www.ebi.ac.uk/biomodels" out_format="json" @@ -180,7 +177,7 @@ def main(): #caching is used to prevent the need to download the same responses from the remote server multiple times during testing #mode="off" to disable caching, "store" to wipe and store fresh results, "reuse" to use the stored cache - cache = utils.RequestCache(mode="auto",direc="cache") + cache = utils.RequestCache(mode="store",direc="cache") #accumulate results in columns defined by keys which correspond to the local variable names to be used below #to allow automated loading into the columns @@ -198,7 +195,7 @@ def main(): for model_id in model_ids[0:1]: #allow testing on a small sample of models - if max_count > 0 and count >= max_count: break + if max_count > 0 and count >= max_count:reak count += 1 print(f"\r{model_id} {count}/{len(model_ids)} ",end='') @@ -223,7 +220,7 @@ def main(): mtab['model_desc'] = f"[{model_id}]({API_URL}/{model_id})
{info['name']}" #make temporary downloads of the sbml and sedml files - model_dir = os.path.join(starting_dir,tmp_dir,model_id) + model_dir = os.path.join(starting_dir,model_id) os.makedirs(model_dir,exist_ok=True) os.chdir(model_dir) diff --git a/BioModels/test_biomodels_results_table.py b/BioModels/test_biomodels_results_table.py new file mode 100644 index 00000000..ad9d814d --- /dev/null +++ b/BioModels/test_biomodels_results_table.py @@ -0,0 +1,68 @@ +#!/usr/bin/env python3 + +""" +produce a markdown table of the results of running various tests on the SBML Test Suite + +get this version of the test suite that includes sedml versions or the sedml validation will fail: +https://github.com/sbmlteam/sbml-test-suite/releases/download/3.4.0/semantic_tests_with_sedml_and_graphs.v3.4.0.zip +""" + +import os +import sys +import json +sys.path.append("..") +import utils +engines = utils.ENGINES + + +def create_test_suite_results_tables(): + """ + Create a table of results for each test case in the test suite + + """ + starting_dir = os.getcwd() + print('Current working directory:', starting_dir) + subfolders = [f for f in os.listdir(starting_dir) if os.path.isdir(f) and f.startswith('BIOMD')] + + print(subfolders) + + for subfolder in subfolders: + subfolder_path = os.path.join(starting_dir, subfolder) + os.chdir(subfolder_path) + print(f"Changed to {os.getcwd()}") + + test_folder = 'tests' + + results_paths = { + "local": os.path.join(subfolder_path, test_folder, 'results_local.json'), + "remote": os.path.join(subfolder_path, test_folder, 'results_remote.json') + } + + results = {} + for key, path in results_paths.items(): + with open(path, 'r') as f: + results[key] = json.load(f) + + d1_plot_paths = { + "local": os.path.join(subfolder_path, test_folder, 'd1_plots_local'), + "remote": os.path.join(subfolder_path, test_folder, 'd1_plots_remote') + } + + # get sbml filename ends with .xml + sbml_file_name = [f for f in os.listdir(subfolder_path) if f.endswith('.xml')][0] + sedml_file_name = [f for f in os.listdir(subfolder_path) if 'sedml' in f and not f.endswith('omex')][0] + + results_table = utils.create_combined_results_table(results["remote"], + results["local"], + sedml_file_name, + sbml_file_name, + d1_plot_paths["local"], + d1_plot_paths["remote"], + test_folder='tests') + + + print(results_table) + + +if __name__ == "__main__": + create_test_suite_results_tables() From 5acc4e0304ef4a14c6c190eb8a14dbc9ec3ebaad Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Wed, 6 Nov 2024 10:44:25 +0000 Subject: [PATCH 14/22] simplify check_file_compatibility --- utils/__init__.py | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/utils/__init__.py b/utils/__init__.py index 5a23c134..e0463bf2 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -443,14 +443,18 @@ def check_file_compatibility_test(engine, model_filepath, experiment_filepath): if file_extensions in engine_filetypes_tuple_list: file_types = [TYPES[i] for i in file_extensions] return 'pass', (f"The file extensions {file_extensions} suggest the input file types are '{file_types}'. {compatible_filetypes} are compatible with {engine}.") + if 'xml' in file_extensions: - if 'sbml' in model_filepath and 'sedml' not in model_filepath: - if 'sbml' in experiment_filepath and 'sedml' in experiment_filepath: - file_types = ('sbml', 'sedml') - if file_types in engine_filetypes_tuple_list: - return 'pass', (f"The filenames '{model_filepath}' and '{experiment_filepath}' suggest the input files are {[TYPES[i] for i in file_types]} which is compatible with {engine}.

{compatible_filetypes} are compatible with {engine}.") - else: - return 'unsure', (f"The filenames '{model_filepath}' and '{experiment_filepath}' suggest the input files are {[TYPES[i] for i in file_types]} which is not compatible with {engine}.

{compatible_filetypes} are compatible with {engine}.") + model_sbml = 'sbml' in model_filepath + model_sedml = 'sedml' in model_filepath + experiment_sbml = 'sbml' in experiment_filepath + experiment_sedml = 'sedml' in experiment_filepath + + if model_sbml and experiment_sbml and experiment_sedml and not model_sedml: + file_types = [TYPES[i] for i in ('sbml', 'sedml') ] + return 'pass', (f"The filenames '{model_filepath}' and '{experiment_filepath}' suggest the input files are {file_types} which is compatible with {engine}.

{compatible_filetypes} are compatible with {engine}.") + else: + return 'unsure', (f"The file extensions {file_extensions} suggest the input file types may be compatibe with {engine}.

{compatible_filetypes} are compatible with {engine}.") else: return 'unsure', (f"The file extensions {file_extensions} suggest the input file types may not be compatibe with {engine}.

{compatible_filetypes} are compatible with {engine}.") From c4f8a6bea1c11cbaadccf0321814cd5c04bf499a Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Wed, 6 Nov 2024 11:12:41 +0000 Subject: [PATCH 15/22] fix broken plot links --- .../results_compatibility_biosimulators.md | 46 +++++++++---------- .../results_compatibility_biosimulators.md | 42 ++++++++--------- 2 files changed, 44 insertions(+), 44 deletions(-) diff --git a/test_suite/test_00001/tests/results_compatibility_biosimulators.md b/test_suite/test_00001/tests/results_compatibility_biosimulators.md index 60056dcf..0cf5a26e 100644 --- a/test_suite/test_00001/tests/results_compatibility_biosimulators.md +++ b/test_suite/test_00001/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ -| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with amici.

['SBML', 'SED-ML'] are compatible with amici.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with bionetgen.

['BNGL', 'SED-ML'] are compatible with bionetgen.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with boolnet.

['SBML-qual', 'SED-ML'] are compatible with boolnet.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with brian2.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with cbmpy.

['SBML', 'SED-ML'] are compatible with cbmpy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with cobrapy.

['SBML', 'SED-ML'] are compatible with cobrapy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with copasi.

['SBML', 'SED-ML'] are compatible with copasi.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with gillespy2.

['SBML', 'SED-ML'] are compatible with gillespy2.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with ginsim.

['SBML-qual', 'SED-ML'] are compatible with ginsim.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:
Output start time: 0.0
Output end time: 5.0
Number of steps: 50

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:
Output start time: 0.0
Output end time: 5.0
Number of steps: 50

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with libsbmlsim.

['SBML', 'SED-ML'] are compatible with libsbmlsim.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with masspy.

['SBML', 'SED-ML'] are compatible with masspy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']
- /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']

Only following targets are supported:
- M_S1
- M_S2
- R_reaction1
- S1
- S2
- k1
- reaction1

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with netpyne.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with neuron.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with opencor.

['CellML', 'SED-ML'] are compatible with opencor.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with pyneuroml.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with pysces.

['SBML', 'SED-ML'] are compatible with pysces.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with rbapy.

['RBApy', 'SED-ML'] are compatible with rbapy.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with smoldyn.

['Smoldyn', 'SED-ML'] are compatible with smoldyn.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with tellurium.

['SBML', 'SED-ML'] are compatible with tellurium.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with vcell.

['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell.
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with xpp.

['XPP', 'SED-ML'] are compatible with xpp.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------|:--------------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with amici.

['SBML', 'SED-ML'] are compatible with amici.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with bionetgen.

['BNGL', 'SED-ML'] are compatible with bionetgen.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with boolnet.

['SBML-qual', 'SED-ML'] are compatible with boolnet.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- Number of points (50) must be equal to the difference between the output end (5.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with brian2.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with cbmpy.

['SBML', 'SED-ML'] are compatible with cbmpy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with cobrapy.

['SBML', 'SED-ML'] are compatible with cobrapy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `simulation_1` is not supported.
- Simulation simulation_1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with copasi.

['SBML', 'SED-ML'] are compatible with copasi.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with gillespy2.

['SBML', 'SED-ML'] are compatible with gillespy2.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with ginsim.

['SBML-qual', 'SED-ML'] are compatible with ginsim.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:
Output start time: 0.0
Output end time: 5.0
Number of steps: 50

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `simulation_1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.1`:
Output start time: 0.0
Output end time: 5.0
Number of steps: 50

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with libsbmlsim.

['SBML', 'SED-ML'] are compatible with libsbmlsim.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with masspy.

['SBML', 'SED-ML'] are compatible with masspy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']
- /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='compartment']

Only following targets are supported:
- M_S1
- M_S2
- R_reaction1
- S1
- S2
- k1
- reaction1

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with netpyne.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with neuron.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with opencor.

['CellML', 'SED-ML'] are compatible with opencor.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with pyneuroml.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with pysces.

['SBML', 'SED-ML'] are compatible with pysces.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with rbapy.

['RBApy', 'SED-ML'] are compatible with rbapy.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `model_1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with smoldyn.

['Smoldyn', 'SED-ML'] are compatible with smoldyn.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with tellurium.

['SBML', 'SED-ML'] are compatible with tellurium.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with vcell.

['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell.
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The filenames '00001-sbml-l3v2.xml' and '00001-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with xpp.

['XPP', 'SED-ML'] are compatible with xpp.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file diff --git a/test_suite/test_01186/tests/results_compatibility_biosimulators.md b/test_suite/test_01186/tests/results_compatibility_biosimulators.md index b6f70c9c..449ed4a6 100644 --- a/test_suite/test_01186/tests/results_compatibility_biosimulators.md +++ b/test_suite/test_01186/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ | | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | |---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------|:---------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with amici.

['SBML', 'SED-ML'] are compatible with amici.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp267694` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp640928` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with bionetgen.

['BNGL', 'SED-ML'] are compatible with bionetgen.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp347049` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp46347` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with boolnet.

['SBML-qual', 'SED-ML'] are compatible with boolnet.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp838310` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp433696` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with brian2.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with cbmpy.

['SBML', 'SED-ML'] are compatible with cbmpy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp528257` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp385050` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with cobrapy.

['SBML', 'SED-ML'] are compatible with cobrapy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp171288` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp413781` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with copasi.

['SBML', 'SED-ML'] are compatible with copasi.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp860188` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp332181` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with gillespy2.

['SBML', 'SED-ML'] are compatible with gillespy2.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp595452` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp697896` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with ginsim.

['SBML-qual', 'SED-ML'] are compatible with ginsim.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp956508` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp90777` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with libsbmlsim.

['SBML', 'SED-ML'] are compatible with libsbmlsim.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp385105` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp39181` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with masspy.

['SBML', 'SED-ML'] are compatible with masspy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp581425` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp205834` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with netpyne.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with neuron.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with opencor.

['CellML', 'SED-ML'] are compatible with opencor.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with pyneuroml.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with pysces.

['SBML', 'SED-ML'] are compatible with pysces.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp956852` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp186426` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with rbapy.

['RBApy', 'SED-ML'] are compatible with rbapy.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp868261` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp37134` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with smoldyn.

['Smoldyn', 'SED-ML'] are compatible with smoldyn.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with tellurium.

['SBML', 'SED-ML'] are compatible with tellurium.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp399285` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp453545` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with vcell.

['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell.
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with xpp.

['XPP', 'SED-ML'] are compatible with xpp.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with amici.

['SBML', 'SED-ML'] are compatible with amici.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp393956` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp974378` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with bionetgen.

['BNGL', 'SED-ML'] are compatible with bionetgen.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp202273` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp828624` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with boolnet.

['SBML-qual', 'SED-ML'] are compatible with boolnet.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp319206` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp366959` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with brian2.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with cbmpy.

['SBML', 'SED-ML'] are compatible with cbmpy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp770846` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp65202` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with cobrapy.

['SBML', 'SED-ML'] are compatible with cobrapy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp714067` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp139256` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with copasi.

['SBML', 'SED-ML'] are compatible with copasi.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp639165` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp11739` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with gillespy2.

['SBML', 'SED-ML'] are compatible with gillespy2.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp554887` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp616620` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with ginsim.

['SBML-qual', 'SED-ML'] are compatible with ginsim.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp462163` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp738082` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with libsbmlsim.

['SBML', 'SED-ML'] are compatible with libsbmlsim.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp814016` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp562557` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with masspy.

['SBML', 'SED-ML'] are compatible with masspy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp15290` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp597394` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with netpyne.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with neuron.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with opencor.

['CellML', 'SED-ML'] are compatible with opencor.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with pyneuroml.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with pysces.

['SBML', 'SED-ML'] are compatible with pysces.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp40497` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp858457` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with rbapy.

['RBApy', 'SED-ML'] are compatible with rbapy.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp958607` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp300081` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with smoldyn.

['Smoldyn', 'SED-ML'] are compatible with smoldyn.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with tellurium.

['SBML', 'SED-ML'] are compatible with tellurium.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp60106` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/01186-sbml-l3v2-sedml.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./tmp366317` is invalid.
- Data generator `OBJF_1` is invalid.
- Variable `OBJF` is invalid.
- One or more namespaces required for target `/sbml:sbml/sbml:model/fbc:listOfObjectives/fbc:objective[@fbc:id='OBJF']` are not defined. Only the following namespaces are defined for the target: `sbml`.

ERROR TYPE:
ValueError
| | | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is compatible with vcell.

['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell.
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The filenames '01186-sbml-l3v2.xml' and '01186-sbml-l3v2-sedml.xml' suggest the input files are ['SBML', 'SED-ML'] which is not compatible with xpp.

['XPP', 'SED-ML'] are compatible with xpp.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file From a3aa8886e8c31d77afacba4c6123667b6ff35744 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Wed, 6 Nov 2024 11:24:33 +0000 Subject: [PATCH 16/22] Add usage instructions for specific test cases in compatibility test script --- test_suite/test_test_suite_compatibility_biosimulators.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test_suite/test_test_suite_compatibility_biosimulators.py b/test_suite/test_test_suite_compatibility_biosimulators.py index f7221b39..6bbfd5da 100644 --- a/test_suite/test_test_suite_compatibility_biosimulators.py +++ b/test_suite/test_test_suite_compatibility_biosimulators.py @@ -95,6 +95,9 @@ def process_cases(args): To test the highest level and version of SBML of the first 5 cases in the test suite: python test_test_suite_compatibility_biosimulators.py --limit 5 --suite-path /path/to/sbml-test-suite/cases/semantic --sbml-level_version highest + + To test cases 00001 and 01186 in the test suite: + python test_test_suite_compatibility_biosimulators.py --cases 00001 01186 --suite-path /path/to/sbml-test-suite/cases/semantic --sbml-level_version highest """ starting_dir = os.getcwd() # where results will be written From a7d2de062d3860f79e681ca986d33f948c500144 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Wed, 6 Nov 2024 11:25:31 +0000 Subject: [PATCH 17/22] Remove obsolete test suite results table script --- test_suite/test_test_suite_results_table.py | 70 --------------------- 1 file changed, 70 deletions(-) delete mode 100644 test_suite/test_test_suite_results_table.py diff --git a/test_suite/test_test_suite_results_table.py b/test_suite/test_test_suite_results_table.py deleted file mode 100644 index b849257e..00000000 --- a/test_suite/test_test_suite_results_table.py +++ /dev/null @@ -1,70 +0,0 @@ -#!/usr/bin/env python3 - -""" -produce a markdown table of the results of running various tests on the SBML Test Suite - -get this version of the test suite that includes sedml versions or the sedml validation will fail: -https://github.com/sbmlteam/sbml-test-suite/releases/download/3.4.0/semantic_tests_with_sedml_and_graphs.v3.4.0.zip -""" - -import os -import sys -import json -sys.path.append("..") -import utils -engines = utils.ENGINES - - -def create_test_suite_results_tables(): - """ - Create a table of results for each test case in the test suite - - """ - starting_dir = os.getcwd() - print('Current working directory:', starting_dir) - subfolders = [f for f in os.listdir(starting_dir) if os.path.isdir(f) and f.startswith('test_')] - - print(subfolders) - - for subfolder in subfolders: - subfolder_path = os.path.join(starting_dir, subfolder) - os.chdir(subfolder_path) - print(f"Changed to {os.getcwd()}") - - test_folder = 'tests' - - results_paths = { - "local": os.path.join(subfolder_path, test_folder, 'results_local.json'), - "remote": os.path.join(subfolder_path, test_folder, 'results_remote.json') - } - - results = {} - for key, path in results_paths.items(): - with open(path, 'r') as f: - results[key] = json.load(f) - - d1_plot_paths = { - "local": os.path.join(subfolder_path, test_folder, 'd1_plots_local'), - "remote": os.path.join(subfolder_path, test_folder, 'd1_plots_remote') - } - - # get sbml filename with reg ex (it should contain sbml but not sedml) - sbml_file_name = [f for f in os.listdir(subfolder_path) if 'sbml' in f and 'sedml' not in f][0] - # also sbml file does not end with omex - sbml_file_name = [f for f in os.listdir(subfolder_path) if 'sbml' in f and 'sedml' not in f and not f.endswith('omex')][0] - sedml_file_name = [f for f in os.listdir(subfolder_path) if 'sedml' in f and not f.endswith('omex')][0] - - results_table = utils.create_combined_results_table(results["remote"], - results["local"], - sedml_file_name, - sbml_file_name, - d1_plot_paths["local"], - d1_plot_paths["remote"], - test_folder='tests') - - - print(results_table) - - -if __name__ == "__main__": - create_test_suite_results_tables() From c1aa779206258ced0afe06de175c0744da1a1f0b Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Wed, 6 Nov 2024 11:36:35 +0000 Subject: [PATCH 18/22] Remove test results table script --- BioModels/test_biomodels_results_table.py | 68 ----------------------- 1 file changed, 68 deletions(-) delete mode 100644 BioModels/test_biomodels_results_table.py diff --git a/BioModels/test_biomodels_results_table.py b/BioModels/test_biomodels_results_table.py deleted file mode 100644 index ad9d814d..00000000 --- a/BioModels/test_biomodels_results_table.py +++ /dev/null @@ -1,68 +0,0 @@ -#!/usr/bin/env python3 - -""" -produce a markdown table of the results of running various tests on the SBML Test Suite - -get this version of the test suite that includes sedml versions or the sedml validation will fail: -https://github.com/sbmlteam/sbml-test-suite/releases/download/3.4.0/semantic_tests_with_sedml_and_graphs.v3.4.0.zip -""" - -import os -import sys -import json -sys.path.append("..") -import utils -engines = utils.ENGINES - - -def create_test_suite_results_tables(): - """ - Create a table of results for each test case in the test suite - - """ - starting_dir = os.getcwd() - print('Current working directory:', starting_dir) - subfolders = [f for f in os.listdir(starting_dir) if os.path.isdir(f) and f.startswith('BIOMD')] - - print(subfolders) - - for subfolder in subfolders: - subfolder_path = os.path.join(starting_dir, subfolder) - os.chdir(subfolder_path) - print(f"Changed to {os.getcwd()}") - - test_folder = 'tests' - - results_paths = { - "local": os.path.join(subfolder_path, test_folder, 'results_local.json'), - "remote": os.path.join(subfolder_path, test_folder, 'results_remote.json') - } - - results = {} - for key, path in results_paths.items(): - with open(path, 'r') as f: - results[key] = json.load(f) - - d1_plot_paths = { - "local": os.path.join(subfolder_path, test_folder, 'd1_plots_local'), - "remote": os.path.join(subfolder_path, test_folder, 'd1_plots_remote') - } - - # get sbml filename ends with .xml - sbml_file_name = [f for f in os.listdir(subfolder_path) if f.endswith('.xml')][0] - sedml_file_name = [f for f in os.listdir(subfolder_path) if 'sedml' in f and not f.endswith('omex')][0] - - results_table = utils.create_combined_results_table(results["remote"], - results["local"], - sedml_file_name, - sbml_file_name, - d1_plot_paths["local"], - d1_plot_paths["remote"], - test_folder='tests') - - - print(results_table) - - -if __name__ == "__main__": - create_test_suite_results_tables() From 934a69a0b7667a4ed16dacbad9b479f3074b79ff Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Mon, 11 Nov 2024 15:09:37 +0000 Subject: [PATCH 19/22] correct mistake reak ->break --- BioModels/test_biomodels_compatibility_biosimulators.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/BioModels/test_biomodels_compatibility_biosimulators.py b/BioModels/test_biomodels_compatibility_biosimulators.py index bd914f08..575d0feb 100644 --- a/BioModels/test_biomodels_compatibility_biosimulators.py +++ b/BioModels/test_biomodels_compatibility_biosimulators.py @@ -195,9 +195,10 @@ def main(): for model_id in model_ids[0:1]: #allow testing on a small sample of models - if max_count > 0 and count >= max_count:reak + if max_count > 0 and count >= max_count: + break count += 1 - print(f"\r{model_id} {count}/{len(model_ids)} ",end='') + print(f"\r{model_id} {count}/{len(model_ids)}",end='') #only process curated models #BIOMD ids should be the curated models @@ -233,6 +234,7 @@ def main(): test_folder = 'tests' engine_list = list(utils.ENGINES.keys()) + engine_list = ['copasi'] utils.run_biosimulators_remotely_and_locally(engine_list, os.path.basename(sedml_file), os.path.basename(sbml_file), From 0a74c4b26fd5335d6b042d6a9ef64496b1296e0f Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Mon, 11 Nov 2024 17:10:47 +0000 Subject: [PATCH 20/22] improve check_file_compatibility_test function --- utils/__init__.py | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/utils/__init__.py b/utils/__init__.py index 1b7e4eaf..5d36c788 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -461,17 +461,20 @@ def check_file_compatibility_test(engine, model_filepath, experiment_filepath): if file_extensions in engine_filetypes_tuple_list: file_types = [TYPES[i] for i in file_extensions] return 'pass', (f"The file extensions {file_extensions} suggest the input file types are '{file_types}'. {compatible_filetypes} are compatible with {engine}.") + if 'xml' in file_extensions: - if 'sbml' in model_filepath and 'sedml' not in model_filepath: - if 'sbml' in experiment_filepath and 'sedml' in experiment_filepath: - file_types = ('sbml', 'sedml') - if file_types in engine_filetypes_tuple_list: - return 'pass', (f"The filenames '{model_filepath}' and '{experiment_filepath}' suggest the input files are {[TYPES[i] for i in file_types]} which is compatible with {engine}.

{compatible_filetypes} are compatible with {engine}.") - else: - return 'unsure', (f"The filenames '{model_filepath}' and '{experiment_filepath}' suggest the input files are {[TYPES[i] for i in file_types]} which is not compatible with {engine}.

{compatible_filetypes} are compatible with {engine}.") + model_sbml = 'sbml' in model_filepath + model_sedml = 'sedml' in model_filepath + experiment_sbml = 'sbml' in experiment_filepath + experiment_sedml = 'sedml' in experiment_filepath + + if model_sbml and experiment_sbml and experiment_sedml and not model_sedml: + file_types = [TYPES[i] for i in ('sbml', 'sedml') ] + return 'pass', (f"The filenames '{model_filepath}' and '{experiment_filepath}' suggest the input files are {file_types} which is compatible with {engine}.

{compatible_filetypes} are compatible with {engine}.") + else: + return 'unsure', (f"The file extensions {file_extensions} suggest the input file types may be compatibe with {engine}.

{compatible_filetypes} are compatible with {engine}.") else: return 'unsure', (f"The file extensions {file_extensions} suggest the input file types may not be compatibe with {engine}.

{compatible_filetypes} are compatible with {engine}.") - def collapsible_content(content, title='Details'): """ From 7f0a1dad58f649cede598db1f41d81cbb6f6974d Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Mon, 11 Nov 2024 17:28:39 +0000 Subject: [PATCH 21/22] Add BIOMD0000000138 resutls table --- .../results_compatibility_biosimulators.md | 46 +- .../BIOMD0000000138/BIOMD0000000138_url.sedml | 425 ++++ .../BIOMD0000000138/BIOMD0000000138_url.xml | 539 +++++ .../amici_autogen_plot_for_task1.pdf | Bin 0 -> 5948 bytes .../copasi_autogen_plot_for_task1.pdf | Bin 0 -> 8709 bytes .../pysces_autogen_plot_for_task1.pdf | Bin 0 -> 5948 bytes .../tellurium_autogen_plot_for_task1.pdf | Bin 0 -> 8708 bytes .../vcell_autogen_plot_for_task1.pdf | Bin 0 -> 12268 bytes .../amici_autogen_plot_for_task1.pdf | Bin 0 -> 5954 bytes .../copasi_autogen_plot_for_task1.pdf | Bin 0 -> 8715 bytes .../masspy_autogen_plot_for_task1.pdf | Bin 0 -> 5954 bytes .../pysces_autogen_plot_for_task1.pdf | Bin 0 -> 5954 bytes .../tellurium_autogen_plot_for_task1.pdf | Bin 0 -> 8714 bytes .../results_compatibility_biosimulators.md | 23 + .../BIOMD0000000138/tests/results_local.json | 1491 ++++++++++++++ .../BIOMD0000000138/tests/results_remote.json | 1772 +++++++++++++++++ ...t_biomodels_compatibility_biosimulators.py | 8 +- 17 files changed, 4279 insertions(+), 25 deletions(-) create mode 100644 BioModels/BIOMD0000000138/BIOMD0000000138_url.sedml create mode 100644 BioModels/BIOMD0000000138/BIOMD0000000138_url.xml create mode 100644 BioModels/BIOMD0000000138/tests/d1_plots_local/amici_autogen_plot_for_task1.pdf create mode 100644 BioModels/BIOMD0000000138/tests/d1_plots_local/copasi_autogen_plot_for_task1.pdf create mode 100644 BioModels/BIOMD0000000138/tests/d1_plots_local/pysces_autogen_plot_for_task1.pdf create mode 100644 BioModels/BIOMD0000000138/tests/d1_plots_local/tellurium_autogen_plot_for_task1.pdf create mode 100644 BioModels/BIOMD0000000138/tests/d1_plots_local/vcell_autogen_plot_for_task1.pdf create mode 100644 BioModels/BIOMD0000000138/tests/d1_plots_remote/amici_autogen_plot_for_task1.pdf create mode 100644 BioModels/BIOMD0000000138/tests/d1_plots_remote/copasi_autogen_plot_for_task1.pdf create mode 100644 BioModels/BIOMD0000000138/tests/d1_plots_remote/masspy_autogen_plot_for_task1.pdf create mode 100644 BioModels/BIOMD0000000138/tests/d1_plots_remote/pysces_autogen_plot_for_task1.pdf create mode 100644 BioModels/BIOMD0000000138/tests/d1_plots_remote/tellurium_autogen_plot_for_task1.pdf create mode 100644 BioModels/BIOMD0000000138/tests/results_compatibility_biosimulators.md create mode 100644 BioModels/BIOMD0000000138/tests/results_local.json create mode 100644 BioModels/BIOMD0000000138/tests/results_remote.json diff --git a/BioModels/BIOMD0000000001/tests/results_compatibility_biosimulators.md b/BioModels/BIOMD0000000001/tests/results_compatibility_biosimulators.md index 4ece4606..08c5e99f 100644 --- a/BioModels/BIOMD0000000001/tests/results_compatibility_biosimulators.md +++ b/BioModels/BIOMD0000000001/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ -| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------|:-----------------------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with amici.

['SBML', 'SED-ML'] are compatible with amici.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with bionetgen.

['BNGL', 'SED-ML'] are compatible with bionetgen.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with boolnet.

['SBML-qual', 'SED-ML'] are compatible with boolnet.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with brian2.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with cbmpy.

['SBML', 'SED-ML'] are compatible with cbmpy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with cobrapy.

['SBML', 'SED-ML'] are compatible with cobrapy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with copasi.

['SBML', 'SED-ML'] are compatible with copasi.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with gillespy2.

['SBML', 'SED-ML'] are compatible with gillespy2.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with ginsim.

['SBML-qual', 'SED-ML'] are compatible with ginsim.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with libsbmlsim.

['SBML', 'SED-ML'] are compatible with libsbmlsim.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with masspy.

['SBML', 'SED-ML'] are compatible with masspy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Could not load MassModel 'BIOMD0000000001'

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| plot | | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with netpyne.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with neuron.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with opencor.

['CellML', 'SED-ML'] are compatible with opencor.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with pyneuroml.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with pysces.

['SBML', 'SED-ML'] are compatible with pysces.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with rbapy.

['RBApy', 'SED-ML'] are compatible with rbapy.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with smoldyn.

['Smoldyn', 'SED-ML'] are compatible with smoldyn.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with tellurium.

['SBML', 'SED-ML'] are compatible with tellurium.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with vcell.

['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell.
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

| ✅ PASS | | plot | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with xpp.

['XPP', 'SED-ML'] are compatible with xpp.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file +| Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|:-------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------|:-----------------------------------------------------------------------| +|
AMICIhttps://docs.biosimulators.org/Biosimulators_AMICI/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with amici.

['SBML', 'SED-ML'] are compatible with amici.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +|
BioNetGenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with bionetgen.

['BNGL', 'SED-ML'] are compatible with bionetgen.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +|
BoolNethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with boolnet.

['SBML-qual', 'SED-ML'] are compatible with boolnet.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +|
Brian 2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with brian2.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +|
CBMPyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with cbmpy.

['SBML', 'SED-ML'] are compatible with cbmpy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +|
COBRApyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with cobrapy.

['SBML', 'SED-ML'] are compatible with cobrapy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +|
COPASIhttps://docs.biosimulators.org/Biosimulators_COPASI/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with copasi.

['SBML', 'SED-ML'] are compatible with copasi.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +|
GillesPy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with gillespy2.

['SBML', 'SED-ML'] are compatible with gillespy2.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +|
GINsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with ginsim.

['SBML-qual', 'SED-ML'] are compatible with ginsim.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +|
LibSBMLSimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with libsbmlsim.

['SBML', 'SED-ML'] are compatible with libsbmlsim.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +|
MASSpyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with masspy.

['SBML', 'SED-ML'] are compatible with masspy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Could not load MassModel 'BIOMD0000000001'

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| plot | | +|
NetPyNEhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with netpyne.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +|
NEURONhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with neuron.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +|
OpenCORhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with opencor.

['CellML', 'SED-ML'] are compatible with opencor.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +|
pyNeuroMLhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with pyneuroml.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +|
PySCeShttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with pysces.

['SBML', 'SED-ML'] are compatible with pysces.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +|
RBApyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with rbapy.

['RBApy', 'SED-ML'] are compatible with rbapy.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +|
Smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with smoldyn.

['Smoldyn', 'SED-ML'] are compatible with smoldyn.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | +|
Telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with tellurium.

['SBML', 'SED-ML'] are compatible with tellurium.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +|
VCellhttps://github.com/virtualcell/vcell
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with vcell.

['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell.
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

| ✅ PASS | | plot | +|
XPPhttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with xpp.

['XPP', 'SED-ML'] are compatible with xpp.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file diff --git a/BioModels/BIOMD0000000138/BIOMD0000000138_url.sedml b/BioModels/BIOMD0000000138/BIOMD0000000138_url.sedml new file mode 100644 index 00000000..13802d13 --- /dev/null +++ b/BioModels/BIOMD0000000138/BIOMD0000000138_url.sedml @@ -0,0 +1,425 @@ + + + + + + + + + + + + + + + + + auto_time_for_task1_var + + + + + + + + auto_dg_for_task1_c__x + + + + + + + + auto_dg_for_task1_vca__x + + + + + + + + auto_dg_for_task1_vk__x + + + + + + + + auto_dg_for_task1_Cm__x + + + + + + + + auto_dg_for_task1_gk__x + + + + + + + + auto_dg_for_task1_gcal__x + + + + + + + + auto_dg_for_task1_gsk__x + + + + + + + + auto_dg_for_task1_ga__x + + + + + + + + auto_dg_for_task1_gf__x + + + + + + + + auto_dg_for_task1_vn__x + + + + + + + + auto_dg_for_task1_va__x + + + + + + + + auto_dg_for_task1_vm__x + + + + + + + + auto_dg_for_task1_vh__x + + + + + + + + auto_dg_for_task1_vf__x + + + + + + + + auto_dg_for_task1_sn__x + + + + + + + + auto_dg_for_task1_sa__x + + + + + + + + auto_dg_for_task1_sm__x + + + + + + + + auto_dg_for_task1_sh__x + + + + + + + + auto_dg_for_task1_sf__x + + + + + + + + auto_dg_for_task1_taun__x + + + + + + + + auto_dg_for_task1_tauh__x + + + + + + + + auto_dg_for_task1_lambda__x + + + + + + + + auto_dg_for_task1_kc__x + + + + + + + + auto_dg_for_task1_ks__x + + + + + + + + auto_dg_for_task1_ff__x + + + + + + + + auto_dg_for_task1_alpha__x + + + + + + + + auto_dg_for_task1_phik__x + + + + + + + + auto_dg_for_task1_phia__x + + + + + + + + auto_dg_for_task1_phih__x + + + + + + + + auto_dg_for_task1_phif__x + + + + + + + + auto_dg_for_task1_phical__x + + + + + + + + auto_dg_for_task1_cinf__x + + + + + + + + auto_dg_for_task1_ica__x + + + + + + + + auto_dg_for_task1_isk__x + + + + + + + + auto_dg_for_task1_ibk__x + + + + + + + + auto_dg_for_task1_ikdr__x + + + + + + + + auto_dg_for_task1_ia__x + + + + + + + + auto_dg_for_task1_ik__x + + + + + + + + auto_dg_for_task1_n__x + + + + + + + + auto_dg_for_task1_h__x + + + + + + + + auto_dg_for_task1_V__x + + + + + + + + auto_dg_for_task1_cell__x + + + + + + + + auto_dg_for_task1_reaction_0000004__x + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/BioModels/BIOMD0000000138/BIOMD0000000138_url.xml b/BioModels/BIOMD0000000138/BIOMD0000000138_url.xml new file mode 100644 index 00000000..c1212c7c --- /dev/null +++ b/BioModels/BIOMD0000000138/BIOMD0000000138_url.xml @@ -0,0 +1,539 @@ + + + + + +

The model is encoded according to the paper Low dose of dopamine may stimulate prolactin secretion by increasing fast potassium currents + Figure5 has been reproduced by MathSBML. One need to change the value of ga in order to get the three correct results.

+

the xppaut file of the model is avaiable on the following address offered by the author , http://www.math.fsu.edu/%7Ebertram/software/pituitary/JCNS_07.ode

+
+

To the extent possible under law, all copyright and related or neighbouring rights to this encoded model have been dedicated to the public domain worldwide. Please refer to CC0 Public Domain Dedication + for more information.

+

In summary, you are entitled to use this encoded model in absolutely any manner you deem suitable, verbatim, or with modification, alone or embedded it in a larger context, redistribute it, commercially or not, in a restricted way or not.

+
+

To cite BioModels Database, please use: Li C, Donizelli M, Rodriguez N, Dharuri H, Endler L, Chelliah V, Li L, He E, Henry A, Stefan MI, Snoep JL, Hucka M, Le Novère N, Laibe C (2010) BioModels Database: An enhanced, curated and annotated resource for published quantitative kinetic models. BMC Syst Biol., 4:92. +

+ + +
+ + + + + + + + He + Enuo + + enuo@caltech.edu + + BNMC + + + + + + 2007-08-02T10:34:59Z + + + 2014-04-01T18:01:13Z + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ The concentration of Ca range can change from 0.1 to 0.3

+ +
+ + + + + + + + + + + + + +
+
+ + + + + + + + + +

+ For figure 5A, ga=0, figure5B, ga=8, figure5C, ga=25

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + 1 + + + 1 + + + + + + + vn + V + + sn + + + + + + + + + + + 1 + + + 1 + + + + + + + va + V + + sa + + + + + + + + + + + 1 + + + 1 + + + + + + + V + vh + + sh + + + + + + + + + + + 1 + + + 1 + + + + + + + vf + V + + sf + + + + + + + + + + + 1 + + + 1 + + + + + + + vm + V + + sm + + + + + + + + + + + gcal + phical + + + V + vca + + + + + + + + + + + c + 2 + + + + + + c + 2 + + + + ks + 2 + + + + + + + + + + gsk + cinf + + + V + vk + + + + + + + + + gf + phif + + + V + vk + + + + + + + + + gk + n + + + V + vk + + + + + + + + + ga + phia + h + + + V + vk + + + + + + + + + isk + ibk + ikdr + ia + + + + + + + + + + + + + + + + + + + + + + + + ica + ik + + + Cm + + + + + + + + + + + + + + + + + + + + + + + lambda + + + phik + n + + + taun + + + + + + + + + + + + + + + + + + + + + + + phih + h + + tauh + + + + + + + + + + + + + + + + + + + + + + + + + + + + ff + + + + + + alpha + ica + + + + kc + c + + + cell + + + + + +
+
\ No newline at end of file diff --git a/BioModels/BIOMD0000000138/tests/d1_plots_local/amici_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000138/tests/d1_plots_local/amici_autogen_plot_for_task1.pdf new file mode 100644 index 0000000000000000000000000000000000000000..310d00efe03fb7c8965b97bb5174b13c52cd9fee GIT binary patch literal 5948 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 g?spM~f$a|@D|Wn0&X>w5*CGj=Lo+j5= literal 0 HcmV?d00001 diff --git a/BioModels/BIOMD0000000138/tests/d1_plots_local/copasi_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000138/tests/d1_plots_local/copasi_autogen_plot_for_task1.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5ffb6661a7bf4525f380b41b9495a5c3a30609c4 GIT binary patch literal 8709 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 literal 0 HcmV?d00001 diff --git a/BioModels/BIOMD0000000138/tests/d1_plots_local/pysces_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000138/tests/d1_plots_local/pysces_autogen_plot_for_task1.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cd5c550a950be3b2af8ac3bb399fad753f849fcc GIT binary patch literal 5948 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 literal 0 HcmV?d00001 diff --git a/BioModels/BIOMD0000000138/tests/d1_plots_local/tellurium_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000138/tests/d1_plots_local/tellurium_autogen_plot_for_task1.pdf new file mode 100644 index 0000000000000000000000000000000000000000..460348767d1687cf684696ad4c4250c4e9aa1804 GIT binary patch literal 8708 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 literal 0 HcmV?d00001 diff --git a/BioModels/BIOMD0000000138/tests/d1_plots_local/vcell_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000138/tests/d1_plots_local/vcell_autogen_plot_for_task1.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d096415a801bfa78b2ede11a855d53fea7ae3d70 GIT binary patch literal 12268 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 literal 0 HcmV?d00001 diff --git a/BioModels/BIOMD0000000138/tests/d1_plots_remote/amici_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000138/tests/d1_plots_remote/amici_autogen_plot_for_task1.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3385bda9cb465192cbd9a9241c601a710022dcbe GIT binary patch literal 5954 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 literal 0 HcmV?d00001 diff --git a/BioModels/BIOMD0000000138/tests/d1_plots_remote/copasi_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000138/tests/d1_plots_remote/copasi_autogen_plot_for_task1.pdf new file mode 100644 index 0000000000000000000000000000000000000000..32f2c875aa99d11909fe9a41ebcba834833d2f1d GIT binary patch literal 8715 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 qyAYb{?~fcht`D+gdIED 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 iK&Ntmt2h)S0iap2?qzbmR8EB!Nf0E>%xrD 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 literal 0 HcmV?d00001 diff --git a/BioModels/BIOMD0000000138/tests/results_compatibility_biosimulators.md b/BioModels/BIOMD0000000138/tests/results_compatibility_biosimulators.md new file mode 100644 index 00000000..3550c29d --- /dev/null +++ b/BioModels/BIOMD0000000138/tests/results_compatibility_biosimulators.md @@ -0,0 +1,23 @@ +| Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|:-------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------|:-----------------------------------------------------------------------| +|
AMICIhttps://docs.biosimulators.org/Biosimulators_AMICI/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with amici.

['SBML', 'SED-ML'] are compatible with amici.
|
❌ FAILview
download
logs

ERROR MESSAGE:
lambda * (phik - n) / taun

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
lambda * (phik - n) / taun

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +|
BioNetGenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with bionetgen.

['BNGL', 'SED-ML'] are compatible with bionetgen.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/BIOMD0000000138_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +|
BoolNethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with boolnet.

['SBML-qual', 'SED-ML'] are compatible with boolnet.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/BIOMD0000000138_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +|
Brian 2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with brian2.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +|
CBMPyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with cbmpy.

['SBML', 'SED-ML'] are compatible with cbmpy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/BIOMD0000000138_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +|
COBRApyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with cobrapy.

['SBML', 'SED-ML'] are compatible with cobrapy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/BIOMD0000000138_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +|
COPASIhttps://docs.biosimulators.org/Biosimulators_COPASI/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with copasi.

['SBML', 'SED-ML'] are compatible with copasi.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +|
GillesPy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with gillespy2.

['SBML', 'SED-ML'] are compatible with gillespy2.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/BIOMD0000000138_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +|
GINsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with ginsim.

['SBML-qual', 'SED-ML'] are compatible with ginsim.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/BIOMD0000000138_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +|
LibSBMLSimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with libsbmlsim.

['SBML', 'SED-ML'] are compatible with libsbmlsim.
|
❌ FAILview
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
❌ FAILERROR MESSAGE:
`/root/in/BIOMD0000000138_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +|
MASSpyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with masspy.

['SBML', 'SED-ML'] are compatible with masspy.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
`/root/in/BIOMD0000000138_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| plot | | +|
NetPyNEhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with netpyne.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +|
NEURONhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with neuron.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +|
OpenCORhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with opencor.

['CellML', 'SED-ML'] are compatible with opencor.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +|
pyNeuroMLhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with pyneuroml.

['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +|
PySCeShttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with pysces.

['SBML', 'SED-ML'] are compatible with pysces.
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AttributeError':'PysMod' object has no attribute 'lambda'

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AttributeError':'PysMod' object has no attribute 'lambda'

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +|
RBApyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with rbapy.

['RBApy', 'SED-ML'] are compatible with rbapy.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
`/root/in/BIOMD0000000138_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.

ERROR TYPE:
ValueError
| | | +|
Smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with smoldyn.

['Smoldyn', 'SED-ML'] are compatible with smoldyn.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | +|
Telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with tellurium.

['SBML', 'SED-ML'] are compatible with tellurium.
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +|
VCellhttps://github.com/virtualcell/vcell
|
❓ UNSUREThe file extensions ('xml', 'sedml') suggest the input file types may be compatibe with vcell.

['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell.
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

| ✅ PASS | | plot | +|
XPPhttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('xml', 'sedml') suggest the input file types may be compatibe with xpp.

['XPP', 'SED-ML'] are compatible with xpp.
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file diff --git a/BioModels/BIOMD0000000138/tests/results_local.json b/BioModels/BIOMD0000000138/tests/results_local.json new file mode 100644 index 00000000..a8ec0304 --- /dev/null +++ b/BioModels/BIOMD0000000138/tests/results_local.json @@ -0,0 +1,1491 @@ +{ + "amici": { + "exception_message": "Command '-i /root/in/BIOMD0000000138_url.omex -o /root/out' in image 'ghcr.io/biosimulators/amici' returned non-zero exit status 1", + "log_yml": { + "duration": 0.850246, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n rateRule \"lambda * (phik - n) / taun\" contains an unsupported expression: Sympify of expression 'could not parse 'lambda * (phik - n) / taun'' failed, because of exception being raised:\n TokenError: Starred arguments in lambda not supported.", + "type": "CombineArchiveExecutionError" + }, + "output": "", + "sedDocuments": [ + { + "duration": 0.52011, + "exception": { + "message": "The SED document did not execute successfully:\n\n rateRule \"lambda * (phik - n) / taun\" contains an unsupported expression: Sympify of expression 'could not parse 'lambda * (phik - n) / taun'' failed, because of exception being raised:\n TokenError: Starred arguments in lambda not supported.", + "type": "SedmlExecutionError" + }, + "location": "BIOMD0000000138_url.sedml", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n BIOMD0000000138_url.sedml:\r\n Tasks (1):\r\n task1\r\n Reports (1):\r\n autogen_report_for_task1: 44 data sets\r\n Plots (1):\r\n autogen_plot_for_task1: 1 curves\r\n\r\nExecuting SED-ML file 1: BIOMD0000000138_url.sedml ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task1`\r\n Outputs:\r\n `autogen_plot_for_task1`\r\n `autogen_report_for_task1`\r\n Executing task 1: `task1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `autogen_report_for_task1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `autogen_plot_for_task1` ...", + "outputs": [ + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_c", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vca", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_Cm", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_gk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_gcal", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_gsk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ga", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_gf", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vn", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_va", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vm", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vh", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vf", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sn", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sa", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sm", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sh", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sf", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_taun", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_tauh", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_lambda", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kc", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ks", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ff", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_alpha", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phik", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phia", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phih", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phif", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phical", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_cinf", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ica", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_isk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ibk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ikdr", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ia", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ik", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_n", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_h", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_V", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_cell", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_reaction_0000004", + "status": "SKIPPED" + } + ], + "duration": 0.058425, + "exception": null, + "id": "autogen_report_for_task1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + }, + { + "curves": [ + { + "id": "autogen_curve_task1_c", + "status": "SKIPPED" + } + ], + "duration": 0.276489, + "exception": null, + "id": "autogen_plot_for_task1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.091858, + "exception": { + "message": "rateRule \"lambda * (phik - n) / taun\" contains an unsupported expression: Sympify of expression 'could not parse 'lambda * (phik - n) / taun'' failed, because of exception being raised:\nTokenError: Starred arguments in lambda not supported.", + "type": "SBMLException" + }, + "id": "task1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "brian2": { + "exception_message": "Command '-i /root/in/BIOMD0000000138_url.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1", + "log_yml": { + "duration": 0.056218, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "WARNING /usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpu6r4hu1y/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n [py.warnings]\r\npyNeuroML >>> WARNING - /usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpu6r4hu1y/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "bionetgen": { + "exception_message": "Command '-i /root/in/BIOMD0000000138_url.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1", + "log_yml": { + "duration": 0.180791, + "exception": { + "message": "`/root/in/BIOMD0000000138_url.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpeshio693/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000138_url` has warnings.\r\n - The model file `BIOMD0000000138_url.xml` has warnings.\r\n - 16 warnings of type SBML unit consistency (99505). The following is the first warning at line 182, column 6:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 40 warnings of type Modeling practice (80701). The following is the first warning at line 134, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` has warnings.\r\n - Model `BIOMD0000000138_url` has warnings.\r\n - The model file `BIOMD0000000138_url.xml` has warnings.\r\n - 16 warnings of type SBML unit consistency (99505). The following is the first warning at line 182, column 6:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 40 warnings of type Modeling practice (80701). The following is the first warning at line 134, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "boolnet": { + "exception_message": "Command '-i /root/in/BIOMD0000000138_url.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1", + "log_yml": { + "duration": 0.164126, + "exception": { + "message": "`/root/in/BIOMD0000000138_url.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpgkng3_hy/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only features available in L1V3 are supported. Newer features such as simple repeated tasks are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000138_url` may be invalid.\r\n - The model file `BIOMD0000000138_url.xml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((va - V) / sa))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((V - vh) / sh))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vf - V) / sf))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vm - V) / sm))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gcal * phical * (V - vca)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'pow(c, 2) / (pow(c, 2) + pow(ks, 2))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gsk * cinf * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gf * phif * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gk * n * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'ga * phia * h * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'isk + ibk + ikdr + ia' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '-(ica + ik) / Cm' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'lambda * (phik - n) / taun' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(phih - h) / tauh' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '-ff * (alpha * ica + kc * c) * cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'Cm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gcal' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gsk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ga' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vn' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'va' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sn' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sa' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'taun' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'tauh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'lambda' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kc' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ks' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ff' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'alpha' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phik' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phia' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phih' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phif' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phical' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'cinf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ica' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'isk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ibk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ikdr' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ia' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ik' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'n' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'h' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` may be invalid.\r\n - Model `BIOMD0000000138_url` may be invalid.\r\n - The model file `BIOMD0000000138_url.xml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((va - V) / sa))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((V - vh) / sh))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vf - V) / sf))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vm - V) / sm))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gcal * phical * (V - vca)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'pow(c, 2) / (pow(c, 2) + pow(ks, 2))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gsk * cinf * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gf * phif * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gk * n * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'ga * phia * h * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'isk + ibk + ikdr + ia' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '-(ica + ik) / Cm' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'lambda * (phik - n) / taun' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(phih - h) / tauh' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '-ff * (alpha * ica + kc * c) * cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'Cm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gcal' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gsk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ga' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vn' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'va' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sn' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sa' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'taun' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'tauh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'lambda' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kc' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ks' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ff' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'alpha' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phik' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phia' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phih' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phif' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phical' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'cinf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ica' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'isk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ibk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ikdr' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ia' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ik' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'n' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'h' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "cbmpy": { + "exception_message": "Command '-i /root/in/BIOMD0000000138_url.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1", + "log_yml": { + "duration": 0.24882, + "exception": { + "message": "`/root/in/BIOMD0000000138_url.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmp8l4hbgu5/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000138_url` has warnings.\r\n - The model file `BIOMD0000000138_url.xml` has warnings.\r\n - 16 warnings of type SBML unit consistency (99505). The following is the first warning at line 182, column 6:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 40 warnings of type Modeling practice (80701). The following is the first warning at line 134, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` has warnings.\r\n - Model `BIOMD0000000138_url` has warnings.\r\n - The model file `BIOMD0000000138_url.xml` has warnings.\r\n - 16 warnings of type SBML unit consistency (99505). The following is the first warning at line 182, column 6:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 40 warnings of type Modeling practice (80701). The following is the first warning at line 134, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "cobrapy": { + "exception_message": "Command '-i /root/in/BIOMD0000000138_url.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1", + "log_yml": { + "duration": 0.127481, + "exception": { + "message": "`/root/in/BIOMD0000000138_url.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpjxguzzyz/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000138_url` has warnings.\r\n - The model file `BIOMD0000000138_url.xml` has warnings.\r\n - 16 warnings of type SBML unit consistency (99505). The following is the first warning at line 182, column 6:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 40 warnings of type Modeling practice (80701). The following is the first warning at line 134, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` has warnings.\r\n - Model `BIOMD0000000138_url` has warnings.\r\n - The model file `BIOMD0000000138_url.xml` has warnings.\r\n - 16 warnings of type SBML unit consistency (99505). The following is the first warning at line 182, column 6:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 40 warnings of type Modeling practice (80701). The following is the first warning at line 134, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "copasi": { + "exception_message": "", + "log_yml": { + "duration": 1.22201, + "exception": null, + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpiylro8bg/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000138_url` has warnings.\r\n - The model file `BIOMD0000000138_url.xml` has warnings.\r\n - 16 warnings of type SBML unit consistency (99505). The following is the first warning at line 182, column 6:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 40 warnings of type Modeling practice (80701). The following is the first warning at line 134, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` has warnings.\r\n - Model `BIOMD0000000138_url` has warnings.\r\n - The model file `BIOMD0000000138_url.xml` has warnings.\r\n - 16 warnings of type SBML unit consistency (99505). The following is the first warning at line 182, column 6:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 40 warnings of type Modeling practice (80701). The following is the first warning at line 134, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpiylro8bg/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 0.921278, + "exception": null, + "location": "BIOMD0000000138_url.sedml", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n BIOMD0000000138_url.sedml:\r\n Tasks (1):\r\n task1\r\n Reports (1):\r\n autogen_report_for_task1: 44 data sets\r\n Plots (1):\r\n autogen_plot_for_task1: 1 curves\r\n\r\nExecuting SED-ML file 1: BIOMD0000000138_url.sedml ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task1`\r\n Outputs:\r\n `autogen_plot_for_task1`\r\n `autogen_report_for_task1`\r\n Executing task 1: `task1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `autogen_report_for_task1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `autogen_plot_for_task1` ...", + "outputs": [ + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_c", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vca", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_Cm", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_gk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_gcal", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_gsk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ga", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_gf", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vn", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_va", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vm", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vh", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vf", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sn", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sa", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sm", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sh", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sf", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_taun", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_tauh", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_lambda", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kc", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ks", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ff", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_alpha", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phik", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phia", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phih", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phif", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phical", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_cinf", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ica", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_isk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ibk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ikdr", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ia", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ik", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_n", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_h", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_V", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_cell", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_reaction_0000004", + "status": "SUCCEEDED" + } + ], + "duration": 0.258751, + "exception": null, + "id": "autogen_report_for_task1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "curves": [ + { + "id": "autogen_curve_task1_c", + "status": "SUCCEEDED" + } + ], + "duration": 0.42799, + "exception": null, + "id": "autogen_plot_for_task1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000560", + "duration": 0.107382, + "exception": null, + "id": "task1", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `auto_dg_for_task1_phif__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_sn__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_cinf__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_phik__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_sa__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ibk__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ica__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_alpha__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_reaction_0000004__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_cell__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_tauh__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ikdr__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ff__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_vh__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ia__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_vm__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_lambda__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ks__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_Cm__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_sm__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_V__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ik__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_c__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_gf__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_vca__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ga__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kc__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_va__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_vk__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_gsk__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_sh__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_vn__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_phih__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_gcal__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_sf__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_h__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_taun__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_n__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_phia__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_gk__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_phical__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_isk__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_vf__x` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mModel `BIOMD0000000138_url` may be invalid.\r\n - The model file `/tmp/tmpiylro8bg/./BIOMD0000000138_url.xml` has warnings.\r\n - 16 warnings of type SBML unit consistency (99505). The following is the first warning at line 182, column 6:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 40 warnings of type Modeling practice (80701). The following is the first warning at line 134, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/kisao/utils.py:518: AlgorithmSubstitutedWarning: \u001b[33m'LSODA/LSODAR hybrid method' (KISAO_0000560) will be substituted for 'ODE solver' (KISAO_0000694) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", + "simulatorDetails": [ + { + "key": "methodName", + "value": "lsoda" + }, + { + "key": "parameters", + "value": null + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + }, + "detailed_error_log": {} + }, + "gillespy2": { + "exception_message": "Command '-i /root/in/BIOMD0000000138_url.omex -o /root/out' in image 'ghcr.io/biosimulators/gillespy2' returned non-zero exit status 1", + "log_yml": { + "duration": 0.14345, + "exception": { + "message": "`/root/in/BIOMD0000000138_url.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpfzgeabsg/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000138_url` has warnings.\r\n - The model file `BIOMD0000000138_url.xml` has warnings.\r\n - 16 warnings of type SBML unit consistency (99505). The following is the first warning at line 182, column 6:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 40 warnings of type Modeling practice (80701). The following is the first warning at line 134, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` has warnings.\r\n - Model `BIOMD0000000138_url` has warnings.\r\n - The model file `BIOMD0000000138_url.xml` has warnings.\r\n - 16 warnings of type SBML unit consistency (99505). The following is the first warning at line 182, column 6:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 40 warnings of type Modeling practice (80701). The following is the first warning at line 134, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "ginsim": { + "exception_message": "Command '-i /root/in/BIOMD0000000138_url.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1", + "log_yml": { + "duration": 0.130563, + "exception": { + "message": "`/root/in/BIOMD0000000138_url.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmp_hz6rgwd/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only features available in L1V3 are supported. Newer features such as simple repeated tasks are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000138_url` may be invalid.\r\n - The model file `BIOMD0000000138_url.xml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((va - V) / sa))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((V - vh) / sh))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vf - V) / sf))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vm - V) / sm))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gcal * phical * (V - vca)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'pow(c, 2) / (pow(c, 2) + pow(ks, 2))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gsk * cinf * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gf * phif * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gk * n * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'ga * phia * h * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'isk + ibk + ikdr + ia' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '-(ica + ik) / Cm' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'lambda * (phik - n) / taun' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(phih - h) / tauh' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '-ff * (alpha * ica + kc * c) * cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'Cm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gcal' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gsk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ga' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vn' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'va' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sn' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sa' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'taun' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'tauh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'lambda' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kc' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ks' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ff' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'alpha' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phik' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phia' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phih' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phif' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phical' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'cinf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ica' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'isk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ibk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ikdr' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ia' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ik' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'n' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'h' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` may be invalid.\r\n - Model `BIOMD0000000138_url` may be invalid.\r\n - The model file `BIOMD0000000138_url.xml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((va - V) / sa))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((V - vh) / sh))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vf - V) / sf))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vm - V) / sm))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gcal * phical * (V - vca)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'pow(c, 2) / (pow(c, 2) + pow(ks, 2))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gsk * cinf * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gf * phif * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gk * n * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'ga * phia * h * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'isk + ibk + ikdr + ia' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '-(ica + ik) / Cm' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'lambda * (phik - n) / taun' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(phih - h) / tauh' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '-ff * (alpha * ica + kc * c) * cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'Cm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gcal' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gsk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ga' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vn' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'va' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sn' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sa' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'taun' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'tauh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'lambda' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kc' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ks' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ff' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'alpha' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phik' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phia' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phih' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phif' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phical' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'cinf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ica' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'isk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ibk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ikdr' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ia' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ik' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'n' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'h' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "libsbmlsim": { + "exception_message": "Command '-i /root/in/BIOMD0000000138_url.omex -o /root/out' in image 'ghcr.io/biosimulators/libsbmlsim' returned non-zero exit status 1", + "log_yml": { + "duration": 0.153092, + "exception": { + "message": "`/root/in/BIOMD0000000138_url.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpxa6bvyzf/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only features available in L1V3 are supported. Newer features such as simple repeated tasks are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000138_url` may be invalid.\r\n - The model file `BIOMD0000000138_url.xml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((va - V) / sa))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((V - vh) / sh))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vf - V) / sf))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vm - V) / sm))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gcal * phical * (V - vca)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'pow(c, 2) / (pow(c, 2) + pow(ks, 2))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gsk * cinf * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gf * phif * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gk * n * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'ga * phia * h * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'isk + ibk + ikdr + ia' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '-(ica + ik) / Cm' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'lambda * (phik - n) / taun' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(phih - h) / tauh' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '-ff * (alpha * ica + kc * c) * cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'Cm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gcal' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gsk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ga' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vn' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'va' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sn' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sa' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'taun' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'tauh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'lambda' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kc' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ks' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ff' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'alpha' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phik' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phia' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phih' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phif' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phical' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'cinf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ica' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'isk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ibk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ikdr' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ia' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ik' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'n' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'h' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` may be invalid.\r\n - Model `BIOMD0000000138_url` may be invalid.\r\n - The model file `BIOMD0000000138_url.xml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((va - V) / sa))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((V - vh) / sh))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vf - V) / sf))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vm - V) / sm))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gcal * phical * (V - vca)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'pow(c, 2) / (pow(c, 2) + pow(ks, 2))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gsk * cinf * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gf * phif * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gk * n * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'ga * phia * h * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'isk + ibk + ikdr + ia' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '-(ica + ik) / Cm' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'lambda * (phik - n) / taun' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(phih - h) / tauh' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '-ff * (alpha * ica + kc * c) * cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'Cm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gcal' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gsk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ga' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vn' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'va' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sn' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sa' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'taun' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'tauh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'lambda' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kc' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ks' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ff' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'alpha' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phik' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phia' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phih' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phif' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phical' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'cinf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ica' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'isk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ibk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ikdr' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ia' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ik' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'n' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'h' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "masspy": { + "exception_message": "Command '-i /root/in/BIOMD0000000138_url.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1", + "log_yml": { + "duration": 0.142051, + "exception": { + "message": "`/root/in/BIOMD0000000138_url.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mSedmlFeatureNotSupportedWarning\u001b[0m: \u001b[33m`/tmp/tmpl5_adwtl/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000138_url` has warnings.\r\n - The model file `BIOMD0000000138_url.xml` has warnings.\r\n - 16 warnings of type SBML unit consistency (99505). The following is the first warning at line 182, column 6:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 40 warnings of type Modeling practice (80701). The following is the first warning at line 134, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` has warnings.\r\n - Model `BIOMD0000000138_url` has warnings.\r\n - The model file `BIOMD0000000138_url.xml` has warnings.\r\n - 16 warnings of type SBML unit consistency (99505). The following is the first warning at line 182, column 6:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 40 warnings of type Modeling practice (80701). The following is the first warning at line 134, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\u001b[0m\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "netpyne": { + "exception_message": "Command '-i /root/in/BIOMD0000000138_url.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1", + "log_yml": { + "duration": 0.041781, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "neuron": { + "exception_message": "Command '-i /root/in/BIOMD0000000138_url.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1", + "log_yml": { + "duration": 0.045526, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpodjpnvas/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "opencor": { + "exception_message": "Command '-i /root/in/BIOMD0000000138_url.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1", + "log_yml": { + "duration": 0.062107, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "/home/opencor/OpenCOR/python/lib/python3.7/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpimbuyk1m/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only features available in L1V3 are supported. Newer features such as simple repeated tasks are not yet supported.\u001b[0m\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "pyneuroml": { + "exception_message": "Command '-i /root/in/BIOMD0000000138_url.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1", + "log_yml": { + "duration": 0.05475, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpmsah6p4v/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "pysces": { + "exception_message": "Command '-i /root/in/BIOMD0000000138_url.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1", + "log_yml": { + "duration": 2.142324, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :'PysMod' object has no attribute 'lambda'", + "type": "CombineArchiveExecutionError" + }, + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmp7egu9upf/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000138_url` has warnings.\r\n - The model file `BIOMD0000000138_url.xml` has warnings.\r\n - 16 warnings of type SBML unit consistency (99505). The following is the first warning at line 182, column 6:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 40 warnings of type Modeling practice (80701). The following is the first warning at line 134, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` has warnings.\r\n - Model `BIOMD0000000138_url` has warnings.\r\n - The model file `BIOMD0000000138_url.xml` has warnings.\r\n - 16 warnings of type SBML unit consistency (99505). The following is the first warning at line 182, column 6:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 40 warnings of type Modeling practice (80701). The following is the first warning at line 134, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmp7egu9upf/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 1.820202, + "exception": { + "message": "The SED document did not execute successfully:\n\n :'PysMod' object has no attribute 'lambda'", + "type": "SedmlExecutionError" + }, + "location": "BIOMD0000000138_url.sedml", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n BIOMD0000000138_url.sedml:\r\n Tasks (1):\r\n task1\r\n Reports (1):\r\n autogen_report_for_task1: 44 data sets\r\n Plots (1):\r\n autogen_plot_for_task1: 1 curves\r\n\r\nExecuting SED-ML file 1: BIOMD0000000138_url.sedml ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task1`\r\n Outputs:\r\n `autogen_plot_for_task1`\r\n `autogen_report_for_task1`\r\n Executing task 1: `task1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V1\r\nlambda is a reserved symbol, replacing with Lambda\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmph6bvy05t.xml\r\n*******************************************************************\r\n\r\nReserved symbol lambda replaced with Lambda \r\n\r\n*******************************************************************\r\n\r\nInfo: single compartment model: locating \"reaction_0000004\" in default compartment\r\nWriting file: /tmp/tmp7kw5rkpa.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmph6bvy05t.xml\r\nout: /tmp/tmp7kw5rkpa.psc\r\nUsing model directory: /Pysces/psc\r\n/tmp/tmp7kw5rkpa.psc loading ..... \r\nParsing file: /tmp/tmp7kw5rkpa.psc\r\nInfo: No reagents have been fixed\r\nInfo: \"vca\" has been initialised but does not occur in a rate equation\r\nInfo: \"vk\" has been initialised but does not occur in a rate equation\r\nInfo: \"Cm\" has been initialised but does not occur in a rate equation\r\nInfo: \"gk\" has been initialised but does not occur in a rate equation\r\nInfo: \"gcal\" has been initialised but does not occur in a rate equation\r\nInfo: \"gsk\" has been initialised but does not occur in a rate equation\r\nInfo: \"ga\" has been initialised but does not occur in a rate equation\r\nInfo: \"gf\" has been initialised but does not occur in a rate equation\r\nInfo: \"vn\" has been initialised but does not occur in a rate equation\r\nInfo: \"va\" has been initialised but does not occur in a rate equation\r\nInfo: \"vm\" has been initialised but does not occur in a rate equation\r\nInfo: \"vh\" has been initialised but does not occur in a rate equation\r\nInfo: \"vf\" has been initialised but does not occur in a rate equation\r\nInfo: \"sn\" has been initialised but does not occur in a rate equation\r\nInfo: \"sa\" has been initialised but does not occur in a rate equation\r\nInfo: \"sm\" has been initialised but does not occur in a rate equation\r\nInfo: \"sh\" has been initialised but does not occur in a rate equation\r\nInfo: \"sf\" has been initialised but does not occur in a rate equation\r\nInfo: \"taun\" has been initialised but does not occur in a rate equation\r\nInfo: \"tauh\" has been initialised but does not occur in a rate equation\r\nInfo: \"Lambda\" has been initialised but does not occur in a rate equation\r\nInfo: \"ks\" has been initialised but does not occur in a rate equation\r\nInfo: \"phik\" has been initialised but does not occur in a rate equation\r\nInfo: \"phia\" has been initialised but does not occur in a rate equation\r\nInfo: \"phih\" has been initialised but does not occur in a rate equation\r\nInfo: \"phif\" has been initialised but does not occur in a rate equation\r\nInfo: \"phical\" has been initialised but does not occur in a rate equation\r\nInfo: \"cinf\" has been initialised but does not occur in a rate equation\r\nInfo: \"isk\" has been initialised but does not occur in a rate equation\r\nInfo: \"ibk\" has been initialised but does not occur in a rate equation\r\nInfo: \"ikdr\" has been initialised but does not occur in a rate equation\r\nInfo: \"ia\" has been initialised but does not occur in a rate equation\r\nInfo: \"ik\" has been initialised but does not occur in a rate equation\r\nInfo: \"n\" has been initialised but does not occur in a rate equation\r\nInfo: \"h\" has been initialised but does not occur in a rate equation\r\nInfo: \"V\" has been initialised but does not occur in a rate equation\r\n \r\nCalculating L matrix . . . . . . . done.\r\nCalculating K matrix . . . . . . . no flux conservation\r\n done.\r\n \r\n\r\nAssignment rule(s) detected.\r\nRate rule(s) detected.\r\nINFO: RateRules detected and Assimulo installed,\r\nswitching to CVODE (mod.mode_integrator='CVODE').\r\n\r\nINFO: Assignment Rules detected and Assimulo installed,\r\nswitching to CVODE (mod.mode_integrator='CVODE').\r\n\r\nCVODE time for 1001 points: 0.02880549430847168\r\nRateRules evaluated and added to mod.data_sim.\r\n \u001b[31mfailed - 'PysMod' object has no attribute 'lambda'\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `autogen_report_for_task1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `autogen_plot_for_task1` ...", + "outputs": [ + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_c", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vca", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_Cm", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_gk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_gcal", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_gsk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ga", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_gf", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vn", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_va", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vm", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vh", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vf", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sn", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sa", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sm", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sh", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sf", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_taun", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_tauh", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_lambda", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kc", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ks", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ff", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_alpha", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phik", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phia", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phih", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phif", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phical", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_cinf", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ica", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_isk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ibk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ikdr", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ia", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ik", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_n", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_h", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_V", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_cell", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_reaction_0000004", + "status": "SKIPPED" + } + ], + "duration": 0.116927, + "exception": null, + "id": "autogen_report_for_task1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + }, + { + "curves": [ + { + "id": "autogen_curve_task1_c", + "status": "SKIPPED" + } + ], + "duration": 0.371212, + "exception": null, + "id": "autogen_plot_for_task1", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 1.134029, + "exception": { + "message": "'PysMod' object has no attribute 'lambda'", + "type": "AttributeError" + }, + "id": "task1", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `auto_dg_for_task1_h__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_vh__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_vf__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_phia__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ia__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_vm__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_sn__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_va__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ik__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_sa__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_phih__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_taun__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_gf__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_c__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_sm__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_gk__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_alpha__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_vca__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_sh__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_n__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ga__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_gsk__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_vk__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_sf__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_vn__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_gcal__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_tauh__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_phical__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ff__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_cinf__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_lambda__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_Cm__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ks__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ibk__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_V__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_cell__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kc__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ica__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_phif__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ikdr__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_phik__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_isk__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_reaction_0000004__x` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/kisao/utils.py:518: AlgorithmSubstitutedWarning: \u001b[33m'CVODE' (KISAO_0000019) will be substituted for 'ODE solver' (KISAO_0000694) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "rbapy": { + "exception_message": "Command '-i /root/in/BIOMD0000000138_url.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1", + "log_yml": { + "duration": 0.18608, + "exception": { + "message": "`/root/in/BIOMD0000000138_url.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpt51vbuiz/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only features available in L1V3 are supported. Newer features such as simple repeated tasks are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000138_url` may be invalid.\r\n - The model file `BIOMD0000000138_url.xml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((va - V) / sa))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((V - vh) / sh))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vf - V) / sf))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vm - V) / sm))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gcal * phical * (V - vca)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'pow(c, 2) / (pow(c, 2) + pow(ks, 2))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gsk * cinf * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gf * phif * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gk * n * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'ga * phia * h * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'isk + ibk + ikdr + ia' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '-(ica + ik) / Cm' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'lambda * (phik - n) / taun' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(phih - h) / tauh' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '-ff * (alpha * ica + kc * c) * cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'Cm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gcal' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gsk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ga' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vn' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'va' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sn' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sa' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'taun' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'tauh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'lambda' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kc' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ks' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ff' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'alpha' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phik' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phia' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phih' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phif' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phical' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'cinf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ica' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'isk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ibk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ikdr' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ia' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ik' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'n' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'h' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` may be invalid.\r\n - Model `BIOMD0000000138_url` may be invalid.\r\n - The model file `BIOMD0000000138_url.xml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((va - V) / sa))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((V - vh) / sh))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vf - V) / sf))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vm - V) / sm))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gcal * phical * (V - vca)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'pow(c, 2) / (pow(c, 2) + pow(ks, 2))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gsk * cinf * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gf * phif * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'gk * n * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'ga * phia * h * (V - vk)' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'isk + ibk + ikdr + ia' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '-(ica + ik) / Cm' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression 'lambda * (phik - n) / taun' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(phih - h) / tauh' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '-ff * (alpha * ica + kc * c) * cell' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'Cm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gcal' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gsk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ga' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'gf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vn' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'va' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sn' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sa' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sm' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'sf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'taun' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'tauh' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'lambda' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'kc' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ks' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ff' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'alpha' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phik' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phia' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phih' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phif' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'phical' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'cinf' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ica' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'isk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ibk' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ikdr' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ia' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'ik' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'n' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'h' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + }, + "smoldyn": { + "exception_message": "Command '-i /root/in/BIOMD0000000138_url.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1", + "log_yml": {}, + "detailed_error_log": {} + }, + "tellurium": { + "exception_message": "", + "log_yml": { + "duration": 1.193888, + "exception": null, + "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning:\r\n\r\n\u001b[33m`/tmp/tmp370xud5o/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe SED document is potentially incorrect.\r\n - Model `BIOMD0000000138_url` has warnings.\r\n - The model file `BIOMD0000000138_url.xml` has warnings.\r\n - 16 warnings of type SBML unit consistency (99505). The following is the first warning at line 182, column 6:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 40 warnings of type Modeling practice (80701). The following is the first warning at line 134, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` has warnings.\r\n - Model `BIOMD0000000138_url` has warnings.\r\n - The model file `BIOMD0000000138_url.xml` has warnings.\r\n - 16 warnings of type SBML unit consistency (99505). The following is the first warning at line 182, column 6:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 40 warnings of type Modeling practice (80701). The following is the first warning at line 134, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning:\r\n\r\n\u001b[33m`/tmp/tmp370xud5o/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n\r\n", + "sedDocuments": [ + { + "duration": 0.791637, + "exception": null, + "location": "BIOMD0000000138_url.sedml", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n BIOMD0000000138_url.sedml:\r\n Tasks (1):\r\n task1\r\n Reports (1):\r\n autogen_report_for_task1: 44 data sets\r\n Plots (1):\r\n autogen_plot_for_task1: 1 curves\r\n\r\nExecuting SED-ML file 1: BIOMD0000000138_url.sedml ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task1`\r\n Outputs:\r\n `autogen_plot_for_task1`\r\n `autogen_report_for_task1`\r\n Executing task 1: `task1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `autogen_report_for_task1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `autogen_plot_for_task1` ...", + "outputs": [ + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_c", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vca", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_Cm", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_gk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_gcal", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_gsk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ga", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_gf", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vn", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_va", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vm", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vh", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vf", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sn", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sa", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sm", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sh", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sf", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_taun", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_tauh", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_lambda", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kc", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ks", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ff", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_alpha", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phik", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phia", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phih", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phif", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phical", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_cinf", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ica", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_isk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ibk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ikdr", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ia", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ik", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_n", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_h", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_V", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_cell", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_reaction_0000004", + "status": "SUCCEEDED" + } + ], + "duration": 0.207648, + "exception": null, + "id": "autogen_report_for_task1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "curves": [ + { + "id": "autogen_curve_task1_c", + "status": "SUCCEEDED" + } + ], + "duration": 0.312604, + "exception": null, + "id": "autogen_plot_for_task1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000019", + "duration": 0.124152, + "exception": null, + "id": "task1", + "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33m- Variable `auto_dg_for_task1_gcal__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_vca__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ikdr__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ibk__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_va__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_V__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_sh__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_gsk__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_sn__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_sm__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ga__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_phical__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_vh__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_phik__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_phia__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_kc__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ff__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_alpha__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_sf__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_vf__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_Cm__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_sa__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_vm__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ik__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_cell__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_vn__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_gk__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_c__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_cinf__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_vk__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_lambda__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_reaction_0000004__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_h__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_phih__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ia__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ks__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_gf__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_n__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_isk__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_tauh__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_phif__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_taun__x` has warnings.\r\n - XPath could not be validated.\r\n- Variable `auto_dg_for_task1_ica__x` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mModel `BIOMD0000000138_url` may be invalid.\r\n - The model file `/tmp/tmp370xud5o/./BIOMD0000000138_url.xml` has warnings.\r\n - 16 warnings of type SBML unit consistency (99505). The following is the first warning at line 182, column 6:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '1 / (1 + exp((vn - V) / sn))' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 40 warnings of type Modeling practice (80701). The following is the first warning at line 134, column 6:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'vca' does not have a 'units' attribute.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/kisao/utils.py:518: AlgorithmSubstitutedWarning:\r\n\r\n\u001b[33m'CVODE' (KISAO_0000019) will be substituted for 'ODE solver' (KISAO_0000694) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n\r\n", + "simulatorDetails": [ + { + "key": "method", + "value": "simulate" + }, + { + "key": "solver", + "value": "cvode" + }, + { + "key": "relative_tolerance", + "value": 1e-06 + }, + { + "key": "absolute_tolerance", + "value": 1e-12 + }, + { + "key": "stiff", + "value": true + }, + { + "key": "maximum_bdf_order", + "value": 5 + }, + { + "key": "maximum_adams_order", + "value": 12 + }, + { + "key": "maximum_num_steps", + "value": 20000 + }, + { + "key": "maximum_time_step", + "value": 0.0 + }, + { + "key": "minimum_time_step", + "value": 0.0 + }, + { + "key": "initial_time_step", + "value": 0.0 + }, + { + "key": "multiple_steps", + "value": false + }, + { + "key": "variable_step_size", + "value": false + }, + { + "key": "max_output_rows", + "value": 100000 + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + }, + "detailed_error_log": {} + }, + "vcell": { + "exception_message": "", + "log_yml": { + "duration": 9, + "exception": null, + "output": "Processing BIOMD0000000138_url.sedml. Done", + "sedDocuments": [ + { + "duration": null, + "exception": null, + "location": "BIOMD0000000138_url.sedml", + "output": "Initializing SED-ML document... done. Successful translation of SED-ML file. Building solvers and starting simulation of all tasks... Generating outputs... Generating CSV file... Done. Generating HDF5 file...", + "outputs": [ + { + "curves": [ + { + "id": "autogen_curve_task1_c", + "status": "SUCCEEDED" + } + ], + "duration": null, + "exception": null, + "id": "autogen_plot_for_task1", + "output": null, + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_c", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vca", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_Cm", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_gk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_gcal", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_gsk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ga", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_gf", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vn", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_va", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vm", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vh", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vf", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sn", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sa", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sm", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sh", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sf", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_taun", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_tauh", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_lambda", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kc", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ks", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ff", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_alpha", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phik", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phia", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phih", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phif", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phical", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_cinf", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ica", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_isk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ibk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ikdr", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ia", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ik", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_n", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_h", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_V", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_cell", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_reaction_0000004", + "status": "SUCCEEDED" + } + ], + "duration": null, + "exception": null, + "id": "autogen_report_for_task1", + "output": null, + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000019", + "duration": 1, + "exception": null, + "id": "task1", + "output": "Initializing simulation job 0 ... done. Starting simulation... done.", + "simulatorDetails": null, + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + }, + "detailed_error_log": {} + }, + "xpp": { + "exception_message": "Command '-i /root/in/BIOMD0000000138_url.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1", + "log_yml": { + "duration": 0.049408, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmp1k_stn43/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + }, + "detailed_error_log": {} + } +} \ No newline at end of file diff --git a/BioModels/BIOMD0000000138/tests/results_remote.json b/BioModels/BIOMD0000000138/tests/results_remote.json new file mode 100644 index 00000000..2268395c --- /dev/null +++ b/BioModels/BIOMD0000000138/tests/results_remote.json @@ -0,0 +1,1772 @@ +{ + "amici": { + "response": 201, + "view": "https://api.biosimulations.org/runs/67323c8c0d09353e8f106b51", + "download": "https://api.biosimulations.org/results/67323c8c0d09353e8f106b51/download", + "logs": "https://api.biosimulations.org/logs/67323c8c0d09353e8f106b51?includeOutput=true", + "log_yml": { + "duration": 1.059903, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n rateRule \"lambda * (phik - n) / taun\" contains an unsupported expression: Sympify of expression 'could not parse 'lambda * (phik - n) / taun'' failed, because of exception being raised:\n TokenError: Starred arguments in lambda not supported.", + "type": "CombineArchiveExecutionError" + }, + "output": "", + "sedDocuments": [ + { + "duration": 0.629425, + "exception": { + "message": "The SED document did not execute successfully:\n\n rateRule \"lambda * (phik - n) / taun\" contains an unsupported expression: Sympify of expression 'could not parse 'lambda * (phik - n) / taun'' failed, because of exception being raised:\n TokenError: Starred arguments in lambda not supported.", + "type": "SedmlExecutionError" + }, + "location": "BIOMD0000000138_url.sedml", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n BIOMD0000000138_url.sedml:\r\n Tasks (1):\r\n task1\r\n Reports (1):\r\n autogen_report_for_task1: 44 data sets\r\n Plots (1):\r\n autogen_plot_for_task1: 1 curves\r\n\r\nExecuting SED-ML file 1: BIOMD0000000138_url.sedml ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task1`\r\n Outputs:\r\n `autogen_plot_for_task1`\r\n `autogen_report_for_task1`\r\n Executing task 1: `task1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `autogen_report_for_task1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `autogen_plot_for_task1` ...", + "outputs": [ + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_c", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vca", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_Cm", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_gk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_gcal", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_gsk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ga", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_gf", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vn", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_va", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vm", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vh", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vf", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sn", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sa", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sm", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sh", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sf", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_taun", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_tauh", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_lambda", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kc", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ks", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ff", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_alpha", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phik", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phia", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phih", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phif", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phical", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_cinf", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ica", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_isk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ibk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ikdr", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ia", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ik", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_n", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_h", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_V", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_cell", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_reaction_0000004", + "status": "SKIPPED" + } + ], + "duration": 0.060745, + "exception": null, + "id": "autogen_report_for_task1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + }, + { + "curves": [ + { + "id": "autogen_curve_task1_c", + "status": "SKIPPED" + } + ], + "duration": 0.341835, + "exception": null, + "id": "autogen_plot_for_task1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.104082, + "exception": { + "message": "rateRule \"lambda * (phik - n) / taun\" contains an unsupported expression: Sympify of expression 'could not parse 'lambda * (phik - n) / taun'' failed, because of exception being raised:\nTokenError: Starred arguments in lambda not supported.", + "type": "SBMLException" + }, + "id": "task1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } + }, + "brian2": { + "response": 201, + "view": "https://api.biosimulations.org/runs/67323c8eb678b3883bb6c1d2", + "download": "https://api.biosimulations.org/results/67323c8eb678b3883bb6c1d2/download", + "logs": "https://api.biosimulations.org/logs/67323c8eb678b3883bb6c1d2?includeOutput=true", + "log_yml": { + "duration": 0.048472, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "bionetgen": { + "response": 201, + "view": "https://api.biosimulations.org/runs/67323c900d09353e8f106b54", + "download": "https://api.biosimulations.org/results/67323c900d09353e8f106b54/download", + "logs": "https://api.biosimulations.org/logs/67323c900d09353e8f106b54?includeOutput=true", + "log_yml": { + "duration": 0.19821, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "boolnet": { + "response": 201, + "view": "https://api.biosimulations.org/runs/67323c92b678b3883bb6c1d6", + "download": "https://api.biosimulations.org/results/67323c92b678b3883bb6c1d6/download", + "logs": "https://api.biosimulations.org/logs/67323c92b678b3883bb6c1d6?includeOutput=true", + "log_yml": { + "duration": 0.182139, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "cbmpy": { + "response": 201, + "view": "https://api.biosimulations.org/runs/67323c930d09353e8f106b57", + "download": "https://api.biosimulations.org/results/67323c930d09353e8f106b57/download", + "logs": "https://api.biosimulations.org/logs/67323c930d09353e8f106b57?includeOutput=true", + "log_yml": { + "duration": 0.31853, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "cobrapy": { + "response": 201, + "view": "https://api.biosimulations.org/runs/67323c95b678b3883bb6c1dc", + "download": "https://api.biosimulations.org/results/67323c95b678b3883bb6c1dc/download", + "logs": "https://api.biosimulations.org/logs/67323c95b678b3883bb6c1dc?includeOutput=true", + "log_yml": { + "duration": 0.176861, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "copasi": { + "response": 201, + "view": "https://api.biosimulations.org/runs/67323c980d09353e8f106b5b", + "download": "https://api.biosimulations.org/results/67323c980d09353e8f106b5b/download", + "logs": "https://api.biosimulations.org/logs/67323c980d09353e8f106b5b?includeOutput=true", + "log_yml": { + "duration": 1.265494, + "exception": null, + "output": "", + "sedDocuments": [ + { + "duration": 0.950286, + "exception": null, + "location": "BIOMD0000000138_url.sedml", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n BIOMD0000000138_url.sedml:\r\n Tasks (1):\r\n task1\r\n Reports (1):\r\n autogen_report_for_task1: 44 data sets\r\n Plots (1):\r\n autogen_plot_for_task1: 1 curves\r\n\r\nExecuting SED-ML file 1: BIOMD0000000138_url.sedml ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task1`\r\n Outputs:\r\n `autogen_plot_for_task1`\r\n `autogen_report_for_task1`\r\n Executing task 1: `task1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `autogen_report_for_task1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `autogen_plot_for_task1` ...", + "outputs": [ + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_c", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vca", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_Cm", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_gk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_gcal", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_gsk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ga", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_gf", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vn", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_va", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vm", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vh", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vf", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sn", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sa", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sm", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sh", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sf", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_taun", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_tauh", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_lambda", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kc", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ks", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ff", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_alpha", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phik", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phia", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phih", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phif", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phical", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_cinf", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ica", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_isk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ibk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ikdr", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ia", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ik", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_n", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_h", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_V", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_cell", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_reaction_0000004", + "status": "SUCCEEDED" + } + ], + "duration": 0.24725, + "exception": null, + "id": "autogen_report_for_task1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "curves": [ + { + "id": "autogen_curve_task1_c", + "status": "SUCCEEDED" + } + ], + "duration": 0.395308, + "exception": null, + "id": "autogen_plot_for_task1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000560", + "duration": 0.17546, + "exception": null, + "id": "task1", + "output": "", + "simulatorDetails": [ + { + "key": "methodName", + "value": "lsoda" + }, + { + "key": "parameters", + "value": null + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + }, + "gillespy2": { + "response": 201, + "view": "https://api.biosimulations.org/runs/67323c9a5a60072d20f56d8d", + "download": "https://api.biosimulations.org/results/67323c9a5a60072d20f56d8d/download", + "logs": "https://api.biosimulations.org/logs/67323c9a5a60072d20f56d8d?includeOutput=true", + "log_yml": { + "duration": 0.211598, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "ginsim": { + "response": 201, + "view": "https://api.biosimulations.org/runs/67323c9c5a60072d20f56d90", + "download": "https://api.biosimulations.org/results/67323c9c5a60072d20f56d90/download", + "logs": "https://api.biosimulations.org/logs/67323c9c5a60072d20f56d90?includeOutput=true", + "log_yml": { + "duration": 0.185889, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "libsbmlsim": { + "response": 201, + "view": "https://api.biosimulations.org/runs/67323c9eb678b3883bb6c1ec", + "download": "https://api.biosimulations.org/results/67323c9eb678b3883bb6c1ec/download", + "logs": "https://api.biosimulations.org/logs/67323c9eb678b3883bb6c1ec?includeOutput=true", + "log_yml": { + "duration": 0.193056, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "masspy": { + "response": 201, + "view": "https://api.biosimulations.org/runs/67323ca05a60072d20f56da2", + "download": "https://api.biosimulations.org/results/67323ca05a60072d20f56da2/download", + "logs": "https://api.biosimulations.org/logs/67323ca05a60072d20f56da2?includeOutput=true", + "log_yml": { + "duration": 1.181274, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", + "type": "CombineArchiveExecutionError" + }, + "output": "", + "sedDocuments": [ + { + "duration": 0.612617, + "exception": { + "message": "The SED document did not execute successfully:\n\n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", + "type": "SedmlExecutionError" + }, + "location": "BIOMD0000000138_url.sedml", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n BIOMD0000000138_url.sedml:\r\n Tasks (1):\r\n task1\r\n Reports (1):\r\n autogen_report_for_task1: 44 data sets\r\n Plots (1):\r\n autogen_plot_for_task1: 1 curves\r\n\r\nExecuting SED-ML file 1: BIOMD0000000138_url.sedml ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task1`\r\n Outputs:\r\n `autogen_plot_for_task1`\r\n `autogen_report_for_task1`\r\n Executing task 1: `task1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `autogen_report_for_task1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `autogen_plot_for_task1` ...", + "outputs": [ + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_c", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vca", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_Cm", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_gk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_gcal", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_gsk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ga", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_gf", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vn", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_va", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vm", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vh", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vf", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sn", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sa", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sm", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sh", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sf", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_taun", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_tauh", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_lambda", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kc", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ks", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ff", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_alpha", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phik", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phia", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phih", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phif", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phical", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_cinf", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ica", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_isk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ibk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ikdr", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ia", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ik", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_n", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_h", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_V", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_cell", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_reaction_0000004", + "status": "SKIPPED" + } + ], + "duration": 0.061385, + "exception": null, + "id": "autogen_report_for_task1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + }, + { + "curves": [ + { + "id": "autogen_curve_task1_c", + "status": "SKIPPED" + } + ], + "duration": 0.319179, + "exception": null, + "id": "autogen_plot_for_task1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.083462, + "exception": { + "message": "Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n\t`(model, errors) = validate_sbml_model(filename)`\nIf the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", + "type": "MassSBMLError" + }, + "id": "task1", + "output": "\u001b[93mWARNING:\u001b[0m \u001b[93mModel does not contain SBML fbc package\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mModel does not contain SBML groups package\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Model 'model_0000001'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo key provided for note in Model 'model_0000001'. The note will be added to the notes attribute with key 'NOTES'.\u001b[0m\r\n", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } + }, + "netpyne": { + "response": 201, + "view": "https://api.biosimulations.org/runs/67323ca1b678b3883bb6c200", + "download": "https://api.biosimulations.org/results/67323ca1b678b3883bb6c200/download", + "logs": "https://api.biosimulations.org/logs/67323ca1b678b3883bb6c200?includeOutput=true", + "log_yml": { + "duration": 0.05409, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "neuron": { + "response": 201, + "view": "https://api.biosimulations.org/runs/67323ca30d09353e8f106b76", + "download": "https://api.biosimulations.org/results/67323ca30d09353e8f106b76/download", + "logs": "https://api.biosimulations.org/logs/67323ca30d09353e8f106b76?includeOutput=true", + "log_yml": { + "duration": 0.049106, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "opencor": { + "response": 201, + "view": "https://api.biosimulations.org/runs/67323ca40d09353e8f106b7d", + "download": "https://api.biosimulations.org/results/67323ca40d09353e8f106b7d/download", + "logs": "https://api.biosimulations.org/logs/67323ca40d09353e8f106b7d?includeOutput=true", + "log_yml": { + "duration": 0.02749, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "/home/opencor/OpenCOR/python/lib/python3.7/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpnh9ii2_u/./BIOMD0000000138_url.sedml` is encoded using L1V4. Only features available in L1V3 are supported. Newer features such as simple repeated tasks are not yet supported.\u001b[0m\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\n", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "pyneuroml": { + "response": 201, + "view": "https://api.biosimulations.org/runs/67323ca60d09353e8f106b82", + "download": "https://api.biosimulations.org/results/67323ca60d09353e8f106b82/download", + "logs": "https://api.biosimulations.org/logs/67323ca60d09353e8f106b82?includeOutput=true", + "log_yml": { + "duration": 0.050187, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "pysces": { + "response": 201, + "view": "https://api.biosimulations.org/runs/67323ca80d09353e8f106b87", + "download": "https://api.biosimulations.org/results/67323ca80d09353e8f106b87/download", + "logs": "https://api.biosimulations.org/logs/67323ca80d09353e8f106b87?includeOutput=true", + "log_yml": { + "duration": 2.233287, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :'PysMod' object has no attribute 'lambda'", + "type": "CombineArchiveExecutionError" + }, + "output": "libtk8.6.so: cannot open shared object file: No such file or directory\r\n\r\nPySCeS defaults to matplotlib's TKagg backend if not specified in the user configuration file, set \"matplotlib_backend = \" \r\nMatplotlib interface loaded (pysces.plt.m)\r\nPitcon routines available\r\nNLEQ2 routines available\r\nSBML support available\r\nYou are using NumPy (2.1.2) with SciPy (1.14.1)\r\nAssimulo CVode available\r\nRateChar is available\r\nParallel scanner is available\r\n\r\nPySCeS environment\r\n******************\r\npysces.model_dir = /home/FCAM/crbmapi/Pysces/psc\r\npysces.output_dir = /home/FCAM/crbmapi/Pysces\r\n\r\n\r\n***********************************************************************\r\n* Welcome to PySCeS (1.2.2) - Python Simulator for Cellular Systems *\r\n* http://pysces.sourceforge.net *\r\n* Copyright(C) B.G. Olivier, J.M. Rohwer, J.-H.S. Hofmeyr, 2004-2024 *\r\n* Triple-J Group for Molecular Cell Physiology *\r\n* Stellenbosch University, ZA and VU University Amsterdam, NL *\r\n* PySCeS is distributed under the PySCeS (BSD style) licence, see *\r\n* LICENCE.txt (supplied with this release) for details *\r\n* Please cite PySCeS with: doi:10.1093/bioinformatics/bti046 *\r\n***********************************************************************\r\n", + "sedDocuments": [ + { + "duration": 1.882373, + "exception": { + "message": "The SED document did not execute successfully:\n\n :'PysMod' object has no attribute 'lambda'", + "type": "SedmlExecutionError" + }, + "location": "BIOMD0000000138_url.sedml", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n BIOMD0000000138_url.sedml:\r\n Tasks (1):\r\n task1\r\n Reports (1):\r\n autogen_report_for_task1: 44 data sets\r\n Plots (1):\r\n autogen_plot_for_task1: 1 curves\r\n\r\nExecuting SED-ML file 1: BIOMD0000000138_url.sedml ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task1`\r\n Outputs:\r\n `autogen_plot_for_task1`\r\n `autogen_report_for_task1`\r\n Executing task 1: `task1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V1\r\nlambda is a reserved symbol, replacing with Lambda\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmpzhjj07jb.xml\r\n*******************************************************************\r\n\r\nReserved symbol lambda replaced with Lambda \r\n\r\n*******************************************************************\r\n\r\nInfo: single compartment model: locating \"reaction_0000004\" in default compartment\r\nWriting file: /tmp/tmpdr5eja8y.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmpzhjj07jb.xml\r\nout: /tmp/tmpdr5eja8y.psc\r\nUsing model directory: /home/FCAM/crbmapi/Pysces/psc\r\n/tmp/tmpdr5eja8y.psc loading ..... \r\nParsing file: /tmp/tmpdr5eja8y.psc\r\nInfo: No reagents have been fixed\r\nInfo: \"vca\" has been initialised but does not occur in a rate equation\r\nInfo: \"vk\" has been initialised but does not occur in a rate equation\r\nInfo: \"Cm\" has been initialised but does not occur in a rate equation\r\nInfo: \"gk\" has been initialised but does not occur in a rate equation\r\nInfo: \"gcal\" has been initialised but does not occur in a rate equation\r\nInfo: \"gsk\" has been initialised but does not occur in a rate equation\r\nInfo: \"ga\" has been initialised but does not occur in a rate equation\r\nInfo: \"gf\" has been initialised but does not occur in a rate equation\r\nInfo: \"vn\" has been initialised but does not occur in a rate equation\r\nInfo: \"va\" has been initialised but does not occur in a rate equation\r\nInfo: \"vm\" has been initialised but does not occur in a rate equation\r\nInfo: \"vh\" has been initialised but does not occur in a rate equation\r\nInfo: \"vf\" has been initialised but does not occur in a rate equation\r\nInfo: \"sn\" has been initialised but does not occur in a rate equation\r\nInfo: \"sa\" has been initialised but does not occur in a rate equation\r\nInfo: \"sm\" has been initialised but does not occur in a rate equation\r\nInfo: \"sh\" has been initialised but does not occur in a rate equation\r\nInfo: \"sf\" has been initialised but does not occur in a rate equation\r\nInfo: \"taun\" has been initialised but does not occur in a rate equation\r\nInfo: \"tauh\" has been initialised but does not occur in a rate equation\r\nInfo: \"Lambda\" has been initialised but does not occur in a rate equation\r\nInfo: \"ks\" has been initialised but does not occur in a rate equation\r\nInfo: \"phik\" has been initialised but does not occur in a rate equation\r\nInfo: \"phia\" has been initialised but does not occur in a rate equation\r\nInfo: \"phih\" has been initialised but does not occur in a rate equation\r\nInfo: \"phif\" has been initialised but does not occur in a rate equation\r\nInfo: \"phical\" has been initialised but does not occur in a rate equation\r\nInfo: \"cinf\" has been initialised but does not occur in a rate equation\r\nInfo: \"isk\" has been initialised but does not occur in a rate equation\r\nInfo: \"ibk\" has been initialised but does not occur in a rate equation\r\nInfo: \"ikdr\" has been initialised but does not occur in a rate equation\r\nInfo: \"ia\" has been initialised but does not occur in a rate equation\r\nInfo: \"ik\" has been initialised but does not occur in a rate equation\r\nInfo: \"n\" has been initialised but does not occur in a rate equation\r\nInfo: \"h\" has been initialised but does not occur in a rate equation\r\nInfo: \"V\" has been initialised but does not occur in a rate equation\r\n \r\nCalculating L matrix . . . . . . . done.\r\nCalculating K matrix . . . . . . . no flux conservation\r\n done.\r\n \r\n\r\nAssignment rule(s) detected.\r\nRate rule(s) detected.\r\nINFO: RateRules detected and Assimulo installed,\r\nswitching to CVODE (mod.mode_integrator='CVODE').\r\n\r\nINFO: Assignment Rules detected and Assimulo installed,\r\nswitching to CVODE (mod.mode_integrator='CVODE').\r\n\r\nCVODE time for 1001 points: 0.048134565353393555\r\nRateRules evaluated and added to mod.data_sim.\r\n \u001b[31mfailed - 'PysMod' object has no attribute 'lambda'\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `autogen_report_for_task1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `autogen_plot_for_task1` ...", + "outputs": [ + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_c", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vca", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_Cm", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_gk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_gcal", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_gsk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ga", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_gf", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vn", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_va", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vm", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vh", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_vf", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sn", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sa", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sm", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sh", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_sf", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_taun", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_tauh", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_lambda", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_kc", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ks", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ff", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_alpha", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phik", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phia", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phih", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phif", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_phical", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_cinf", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ica", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_isk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ibk", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ikdr", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ia", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_ik", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_n", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_h", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_V", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_cell", + "status": "SKIPPED" + }, + { + "id": "autogen_task1_reaction_0000004", + "status": "SKIPPED" + } + ], + "duration": 0.059516, + "exception": null, + "id": "autogen_report_for_task1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + }, + { + "curves": [ + { + "id": "autogen_curve_task1_c", + "status": "SKIPPED" + } + ], + "duration": 0.4909, + "exception": null, + "id": "autogen_plot_for_task1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 1.188505, + "exception": { + "message": "'PysMod' object has no attribute 'lambda'", + "type": "AttributeError" + }, + "id": "task1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } + }, + "rbapy": { + "response": 201, + "view": "https://api.biosimulations.org/runs/67323ca9b678b3883bb6c229", + "download": "https://api.biosimulations.org/results/67323ca9b678b3883bb6c229/download", + "logs": "https://api.biosimulations.org/logs/67323ca9b678b3883bb6c229?includeOutput=true", + "log_yml": { + "duration": 0.191135, + "exception": { + "message": "`/root/archive.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000138_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.", + "type": "ValueError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "smoldyn": { + "response": 201, + "view": "https://api.biosimulations.org/runs/67323cab0d09353e8f106b90", + "download": "https://api.biosimulations.org/results/67323cab0d09353e8f106b90/download", + "logs": "https://api.biosimulations.org/logs/67323cab0d09353e8f106b90?includeOutput=true", + "log_yml": { + "duration": 0.05373, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + }, + "tellurium": { + "response": 201, + "view": "https://api.biosimulations.org/runs/67323cad5a60072d20f56dd1", + "download": "https://api.biosimulations.org/results/67323cad5a60072d20f56dd1/download", + "logs": "https://api.biosimulations.org/logs/67323cad5a60072d20f56dd1?includeOutput=true", + "log_yml": { + "duration": 1.527764, + "exception": null, + "output": "", + "sedDocuments": [ + { + "duration": 1.025925, + "exception": null, + "location": "BIOMD0000000138_url.sedml", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n BIOMD0000000138_url.sedml:\r\n Tasks (1):\r\n task1\r\n Reports (1):\r\n autogen_report_for_task1: 44 data sets\r\n Plots (1):\r\n autogen_plot_for_task1: 1 curves\r\n\r\nExecuting SED-ML file 1: BIOMD0000000138_url.sedml ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task1`\r\n Outputs:\r\n `autogen_plot_for_task1`\r\n `autogen_report_for_task1`\r\n Executing task 1: `task1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `autogen_report_for_task1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `autogen_plot_for_task1` ...", + "outputs": [ + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_c", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vca", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_Cm", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_gk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_gcal", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_gsk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ga", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_gf", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vn", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_va", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vm", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vh", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_vf", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sn", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sa", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sm", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sh", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_sf", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_taun", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_tauh", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_lambda", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_kc", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ks", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ff", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_alpha", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phik", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phia", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phih", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phif", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_phical", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_cinf", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ica", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_isk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ibk", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ikdr", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ia", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_ik", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_n", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_h", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_V", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_cell", + "status": "SUCCEEDED" + }, + { + "id": "autogen_task1_reaction_0000004", + "status": "SUCCEEDED" + } + ], + "duration": 0.279603, + "exception": null, + "id": "autogen_report_for_task1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "curves": [ + { + "id": "autogen_curve_task1_c", + "status": "SUCCEEDED" + } + ], + "duration": 0.347925, + "exception": null, + "id": "autogen_plot_for_task1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000019", + "duration": 0.23826, + "exception": null, + "id": "task1", + "output": "", + "simulatorDetails": [ + { + "key": "method", + "value": "simulate" + }, + { + "key": "solver", + "value": "cvode" + }, + { + "key": "relative_tolerance", + "value": 1e-06 + }, + { + "key": "absolute_tolerance", + "value": 1e-12 + }, + { + "key": "stiff", + "value": true + }, + { + "key": "maximum_bdf_order", + "value": 5 + }, + { + "key": "maximum_adams_order", + "value": 12 + }, + { + "key": "maximum_num_steps", + "value": 20000 + }, + { + "key": "maximum_time_step", + "value": 0.0 + }, + { + "key": "minimum_time_step", + "value": 0.0 + }, + { + "key": "initial_time_step", + "value": 0.0 + }, + { + "key": "multiple_steps", + "value": false + }, + { + "key": "variable_step_size", + "value": false + }, + { + "key": "max_output_rows", + "value": 100000 + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + }, + "vcell": { + "response": 201, + "view": "https://api.biosimulations.org/runs/67323caf5a60072d20f56dd9", + "download": "https://api.biosimulations.org/results/67323caf5a60072d20f56dd9/download", + "logs": "https://api.biosimulations.org/logs/67323caf5a60072d20f56dd9?includeOutput=true", + "log_yml": { + "duration": null, + "exception": null, + "output": null, + "sedDocuments": [ + { + "duration": null, + "exception": null, + "location": "BIOMD0000000138_url.sedml", + "output": null, + "outputs": [ + { + "curves": [ + { + "id": "autogen_curve_task1_c", + "status": "QUEUED" + } + ], + "duration": null, + "exception": null, + "id": "autogen_plot_for_task1", + "output": null, + "skipReason": null, + "status": "QUEUED" + }, + { + "dataSets": [ + { + "id": "autogen_time_for_task1", + "status": "QUEUED" + }, + { + "id": "autogen_task1_c", + "status": "QUEUED" + }, + { + "id": "autogen_task1_vca", + "status": "QUEUED" + }, + { + "id": "autogen_task1_vk", + "status": "QUEUED" + }, + { + "id": "autogen_task1_Cm", + "status": "QUEUED" + }, + { + "id": "autogen_task1_gk", + "status": "QUEUED" + }, + { + "id": "autogen_task1_gcal", + "status": "QUEUED" + }, + { + "id": "autogen_task1_gsk", + "status": "QUEUED" + }, + { + "id": "autogen_task1_ga", + "status": "QUEUED" + }, + { + "id": "autogen_task1_gf", + "status": "QUEUED" + }, + { + "id": "autogen_task1_vn", + "status": "QUEUED" + }, + { + "id": "autogen_task1_va", + "status": "QUEUED" + }, + { + "id": "autogen_task1_vm", + "status": "QUEUED" + }, + { + "id": "autogen_task1_vh", + "status": "QUEUED" + }, + { + "id": "autogen_task1_vf", + "status": "QUEUED" + }, + { + "id": "autogen_task1_sn", + "status": "QUEUED" + }, + { + "id": "autogen_task1_sa", + "status": "QUEUED" + }, + { + "id": "autogen_task1_sm", + "status": "QUEUED" + }, + { + "id": "autogen_task1_sh", + "status": "QUEUED" + }, + { + "id": "autogen_task1_sf", + "status": "QUEUED" + }, + { + "id": "autogen_task1_taun", + "status": "QUEUED" + }, + { + "id": "autogen_task1_tauh", + "status": "QUEUED" + }, + { + "id": "autogen_task1_lambda", + "status": "QUEUED" + }, + { + "id": "autogen_task1_kc", + "status": "QUEUED" + }, + { + "id": "autogen_task1_ks", + "status": "QUEUED" + }, + { + "id": "autogen_task1_ff", + "status": "QUEUED" + }, + { + "id": "autogen_task1_alpha", + "status": "QUEUED" + }, + { + "id": "autogen_task1_phik", + "status": "QUEUED" + }, + { + "id": "autogen_task1_phia", + "status": "QUEUED" + }, + { + "id": "autogen_task1_phih", + "status": "QUEUED" + }, + { + "id": "autogen_task1_phif", + "status": "QUEUED" + }, + { + "id": "autogen_task1_phical", + "status": "QUEUED" + }, + { + "id": "autogen_task1_cinf", + "status": "QUEUED" + }, + { + "id": "autogen_task1_ica", + "status": "QUEUED" + }, + { + "id": "autogen_task1_isk", + "status": "QUEUED" + }, + { + "id": "autogen_task1_ibk", + "status": "QUEUED" + }, + { + "id": "autogen_task1_ikdr", + "status": "QUEUED" + }, + { + "id": "autogen_task1_ia", + "status": "QUEUED" + }, + { + "id": "autogen_task1_ik", + "status": "QUEUED" + }, + { + "id": "autogen_task1_n", + "status": "QUEUED" + }, + { + "id": "autogen_task1_h", + "status": "QUEUED" + }, + { + "id": "autogen_task1_V", + "status": "QUEUED" + }, + { + "id": "autogen_task1_cell", + "status": "QUEUED" + }, + { + "id": "autogen_task1_reaction_0000004", + "status": "QUEUED" + } + ], + "duration": null, + "exception": null, + "id": "autogen_report_for_task1", + "output": null, + "skipReason": null, + "status": "QUEUED" + } + ], + "skipReason": null, + "status": "QUEUED", + "tasks": [ + { + "algorithm": null, + "duration": null, + "exception": null, + "id": "task1", + "output": null, + "simulatorDetails": null, + "skipReason": null, + "status": "QUEUED" + } + ] + } + ], + "skipReason": null, + "status": "QUEUED" + } + }, + "xpp": { + "response": 201, + "view": "https://api.biosimulations.org/runs/67323cb15a60072d20f56ddf", + "download": "https://api.biosimulations.org/results/67323cb15a60072d20f56ddf/download", + "logs": "https://api.biosimulations.org/logs/67323cb15a60072d20f56ddf?includeOutput=true", + "log_yml": { + "duration": 0.048852, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } + } +} \ No newline at end of file diff --git a/BioModels/test_biomodels_compatibility_biosimulators.py b/BioModels/test_biomodels_compatibility_biosimulators.py index 575d0feb..89bb5ecb 100644 --- a/BioModels/test_biomodels_compatibility_biosimulators.py +++ b/BioModels/test_biomodels_compatibility_biosimulators.py @@ -193,7 +193,10 @@ def main(): count = 0 starting_dir = os.getcwd() - for model_id in model_ids[0:1]: + if cases != None: + model_ids = cases + + for model_id in model_ids: #allow testing on a small sample of models if max_count > 0 and count >= max_count: break @@ -234,7 +237,7 @@ def main(): test_folder = 'tests' engine_list = list(utils.ENGINES.keys()) - engine_list = ['copasi'] + utils.run_biosimulators_remotely_and_locally(engine_list, os.path.basename(sedml_file), os.path.basename(sbml_file), @@ -243,4 +246,5 @@ def main(): test_folder=test_folder) if __name__ == "__main__": + cases = ["BIOMD0000000001","BIOMD0000000138"] main() \ No newline at end of file From a8bf0290154044f738d566d0baf065ec8e5e8155 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Tue, 12 Nov 2024 16:40:44 +0000 Subject: [PATCH 22/22] Add remove_output option to and modify biomodels script --- ...t_biomodels_compatibility_biosimulators.py | 7 +++-- utils/__init__.py | 30 +++++++++++-------- 2 files changed, 23 insertions(+), 14 deletions(-) diff --git a/BioModels/test_biomodels_compatibility_biosimulators.py b/BioModels/test_biomodels_compatibility_biosimulators.py index 89bb5ecb..2acbe56d 100644 --- a/BioModels/test_biomodels_compatibility_biosimulators.py +++ b/BioModels/test_biomodels_compatibility_biosimulators.py @@ -236,15 +236,18 @@ def main(): if not sedml_file: continue # no further tests possible test_folder = 'tests' - engine_list = list(utils.ENGINES.keys()) + # engine_list = list(utils.ENGINES.keys()) utils.run_biosimulators_remotely_and_locally(engine_list, os.path.basename(sedml_file), os.path.basename(sbml_file), os.path.join(test_folder,'d1_plots_remote'), os.path.join(test_folder,'d1_plots_local'), - test_folder=test_folder) + test_folder=test_folder, + remove_output=remove_output) if __name__ == "__main__": cases = ["BIOMD0000000001","BIOMD0000000138"] + remove_output = False + engine_list = ['copasi'] main() \ No newline at end of file diff --git a/utils/__init__.py b/utils/__init__.py index 5d36c788..3053d4ca 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -1188,7 +1188,8 @@ def run_biosimulators_remotely(engine_keys, sedml_file_name, sbml_file_name, d1_plots_remote_dir, - test_folder='tests'): + test_folder='tests', + remove_output_remote=True): """ run with directory pointing towards the location of the sedml and sbml files""" @@ -1220,10 +1221,10 @@ def run_biosimulators_remotely(engine_keys, file_paths = find_files(remote_output_dir, '.pdf') move_d1_files(file_paths, d1_plots_remote_dir) - # remove the remote results directory - if os.path.exists(remote_output_dir): - shutil.rmtree(remote_output_dir) - print('Removed ' + remote_output_dir + ' folder') + if remove_output_remote == True:# remove the remote results directory + if os.path.exists(remote_output_dir): + shutil.rmtree(remote_output_dir) + print('Removed ' + remote_output_dir + ' folder') return results_remote @@ -1231,7 +1232,8 @@ def run_biosimulators_locally(engine_keys, sedml_file_name, sbml_file_name, d1_plots_local_dir, - test_folder='tests'): + test_folder='tests', + remove_output_local=True): engines = {k: v for k, v in ENGINES.items() if k in engine_keys} results_local = {} @@ -1250,9 +1252,10 @@ def run_biosimulators_locally(engine_keys, move_d1_files(file_paths, d1_plots_local_dir) # if it exists remove the output folder - if os.path.exists(local_output_dir): - shutil.rmtree(local_output_dir) - print('Removed ' + local_output_dir + ' folder') + if remove_output_local == True: + if os.path.exists(local_output_dir): + shutil.rmtree(local_output_dir) + print('Removed ' + local_output_dir + ' folder') return results_local @@ -1316,19 +1319,22 @@ def run_biosimulators_remotely_and_locally(engine_keys, sbml_file_name, d1_plots_remote_dir, d1_plots_local_dir, - test_folder='tests'): + test_folder='tests', + remove_output=True): results_remote = run_biosimulators_remotely(engine_keys, sedml_file_name=sedml_file_name, sbml_file_name=sbml_file_name, d1_plots_remote_dir=d1_plots_remote_dir, - test_folder=test_folder) + test_folder=test_folder, + remove_output_remote = remove_output) results_local = run_biosimulators_locally(engine_keys, sedml_file_name=sedml_file_name, sbml_file_name=sbml_file_name, d1_plots_local_dir=d1_plots_local_dir, - test_folder=test_folder) + test_folder=test_folder, + remove_output_local = remove_output) results_table = create_combined_results_table(results_remote, results_local,