-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatistics.html
147 lines (141 loc) · 7.23 KB
/
statistics.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>mitoPADdb - Mitochondrial Proteins Associated with Diseases database</title>
<link rel = "stylesheet" type = "text/css" href = "css/main.css" />
<link rel = "stylesheet" type = "text/css" href = "css/browse.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-csv/1.0.8/jquery.csv.min.js"></script>
<script>
function hideDiv(divId){
document.getElementById(divId).style.display = 'none';
}
function createDownloadLink() {
var httpReq = new XMLHttpRequest();
httpReq.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var csv = $.csv.toArrays(this.responseText);
var hideButton = '<center><button type="button" class="round" style="margin-right:10px;" onclick="hideDiv(\'view_result\')">✕</button></center>';
var s = '<table class="browse-result-summary" border="1">' +
'<tr>' +
'<th>' + csv[0][0] + '</th>' +
'<th>' + csv[0][1] + '</th>' +
'<th>' + csv[0][2] + '</th>' +
'<th>' + csv[0][4] + '</th>' +
'<th>' + csv[0][7] + '</th>' +
'</tr>';
for(var i=1; i<csv.length; ++i) {
s += '<tr>';
s += '<td>' + csv[i][0] + '</td>';
s += '<td>' + csv[i][1] + '</td>';
s += '<td>' + csv[i][2] + '</td>';
s += '<td>' + csv[i][4] + '</td>';
s += '<td>' + csv[i][7] + '</td>';
s += '</tr>';
}
s += '</table>';
document.getElementById('view_result').innerHTML = hideButton + '<br/>' + s + '<br/>' + hideButton;
document.getElementById('view_result').style.display = 'block';
}
};
httpReq.open('GET', 'resource/mpe_localization.csv', true);
httpReq.setRequestHeader("Content-type", "text/csv");
httpReq.send();
}
</script>
</head>
<body>
<div class = "section_header">
<center><p class="title">mitoPADdb - Mitochondrial Proteins Associated with Diseases database</p></center>
</div>
<div class = "section_menu">
<center>
<table cellpadding="3px">
<tr class="nav">
<td class="nav"><a href="index.html" class="side_nav">Home</a></td>
<td class="nav"><a href="browse.html" class="side_nav">Browse</a></td>
<td class="nav"><a href="statistics.html" class="active">Statistics</a></td>
<td class="nav"><a href="help.html" class="side_nav">Help</a></td>
<td class="nav"><a href="team.html" class="side_nav">Team</a></td>
</tr>
</table>
</center>
</div>
<div class = "section_middle" style="width:70%; margin:0 15% 0 15%;">
<p>1. <b>Table: Data statistics of mitochondrial proteins associated with diseases database (mitoPADdb).</b></p>
<p>
<center>
<img src="resource/Slide1_statistics.png" height="500px" /><br/><br/>
</center>
</p>
<p>
2. <b>Localization of diseases associated MPE genes in mitoPADdb.</b>
</p>
<p>
The localization of the 810 MPE genes to mitochondria or mitochondria-associated function
alongwith the mitochondrial protein annotation type is available in the following buttons.
The whole localization data additionally contains the evidence from the UniProtKB/Swiss-Prot
annotation, GO BP annotation, and PubMed. <br/>
<center>
<button onclick="createDownloadLink()">View localization data at a glance</button>
<a class="link" href="resource/mpe_localization.xlsx"><button>Download whole localization data (XLSX, 64.7 KB)</button></a>
</center>
<br/>
</p>
<div class="browse-result" style="width:100%; margin-left:0; margin-right:0;" id="view_result" style="display:none;"></div>
<p>
3. <b>Statistics bar-diagrams of diseases associated MPE genes data of mitoPADdb.</b>
</p>
<p>
A.
<center>
<img src="resource/Slide2_statistics.png" height="500px" /><br/><br/>
Figure A: No. of MPE genes associated with 14 broad diseases-categories.
</center>
</p>
<p>
B.
<center>
<img src="resource/Slide3_statistics.png" height="500px" /><br/><br/>
Figure B: No. of differential expression transcriptomic GEO studies across 14 broad diseases-categories.
</center>
</p>
<p>
C.
<center>
<img src="resource/Slide4_statistics.png" height="500px" /><br/><br/>
Figure C: No. of MPE genes associated with diseases (top 10).
</center>
</p>
<p>
D.
<center>
<img src="resource/Slide5_statistics.png" height="500px" /><br/><br/>
Figure D: No. of diseases association with top 10 MPE genes.
</center>
</p>
<p>
E.
<center>
<img src="resource/Slide6_statistics.png" height="500px" /><br/><br/>
Figure E: Pathogenic mutation entries of MPE genes in top 10 diseases.
</center>
</p>
<p>
F.
<center>
<img src="resource/Slide7_statistics.png" height="500px" /><br/><br/>
Figure F: Expression variation (upregulation or downregulation) entries of MPE genes in top 10 diseases.
</center>
</p>
<br/><hr/>
<p style="font-size:0.9em;text-align:center;">
© 2024 Bose Institute. All rights reserved. For queries, please contact Dr. Sudipto Saha
(<a class="link" href="mailto:[email protected]">[email protected]</a>,
<a class="link" href="mailto:[email protected]">[email protected]</a>).
</p>
</div>
<!--<script>createDownloadLink();</script>-->
</body>
</html>