-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathenzyme-cofactors.html
32 lines (27 loc) · 1004 Bytes
/
enzyme-cofactors.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
<html>
<head>
<meta charset="UTF-8">
<title>Example metabolites network</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/cytoscape/3.2.16/cytoscape.min.js"></script>
<script src="./cydraw.js"></script>
</head>
<body>
Metabolites network of enzymes
in <a href=https://www.ebi.ac.uk/intenz/>IntEnz</a> database
which have cofactor "Pyrroloquinoline quinone":
<div id='cy' style="width: 100%; height: 100%;"></div>
<p style="font-size: small; text-align: right">
Graph rendered using
<a href=http://js.cytoscape.org/>Cytoscape.js</a> library</p>
<script type="text/javascript">
jfile = './cofactors.json'
fetch(jfile, { mode: 'no-cors' })
.then(function (res) {
return res.json()
})
.then(function (data) {
cydraw(data.elements);
})
</script>
</body>
</html>