-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (59 loc) · 2.48 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<HTML>
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="config.js"></script>
<script src="main.js"></script>
<link rel="stylesheet" href="style.css"/>
<title>SBML cases testing</title>
</head>
<body>
<h1>Result of testing SBML cases</h1>
<p><i>Repository's home is <a href="https://github.com/insysbio/sbml-heta-cases">HERE</a></i></p>
<p><i>List of models in Heta format <a href="latest/cases">HERE</a></i></p>
<p><i>JSONL is <a href="latest/finetune-0.jsonl">HERE</a></i></p>
<!-- BEGIN -->
<div>
<h2>From SBML L2V5/L3V2</h2>
<div class="itemContainer">
<div class="item part3">SBML L2V5</div>
<div class="item part3 retCode_0">Success <span id="l2v5_code_0_stat"/></div>
<div class="item part3 retCode_1">Compiler error <span id="l2v5_code_1_stat"/></div>
<div class="item part3 retCode_2">Platform error <span id="l2v5_code_2_stat"/></div>
<div class="item part3 retCode_9">No SBML <span id="l2v5_code_9_stat"/></div>
</div>
<div class="itemContainer">
<div class="item part3">SBML L3V2</div>
<div class="item part3 retCode_0">Success <span id="l3v2_code_0_stat"/></div>
<div class="item part3 retCode_1">Compiler error <span id="l3v2_code_1_stat"/></div>
<div class="item part3 retCode_2">Platform error <span id="l3v2_code_2_stat"/></div>
<div class="item part3 retCode_9">No SBML <span id="l3v2_code_9_stat"/></div>
</div>
<div>
<p>Heta compiler: <span id="heta_version">-</span></p>
<p>Started: <span id="started">-</span></p>
<p>Finished: <span id="finished">-</span></p>
<p>Cases count: <span id="totalCasesCount">-</span></p>
<p id="solver"/>
<p id="solver_version"/>
<p id="required_time"/>
</div>
<div id="summary" class="itemContainer"/>
</div>
<!-- END L2V5 -->
<div id="statistics">
<p id="SUCCESS_status"/>
<p id="TOLERANCE_FAIL_status"/>
<p id="ERROR_status"/>
<p id="SKIPPED_status"/>
<p id="undefined_status"/>
</div>
</div>
<div id="main">
<div id="container"></div>
<div id="figure"><img/></div>
</div>
</body>
</HTML>