-
Notifications
You must be signed in to change notification settings - Fork 7
/
cancer.html
executable file
·445 lines (405 loc) · 24.9 KB
/
cancer.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class=""> <!--<![endif]-->
<head>
<title>fathmm - Analyze Cancer-Associated Variants</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Analyze Cancer-Associated Variants">
<meta name="keywords" content="Cancer, Cancer Associated Mutation, Driver Mutation, Passenger Mutation, Missense Mutation, Amino Acid Substitutions, Hidden Markov Models, HMMs, Single Nucleotide Polymorphisms, SNPs, Non Synonymous Mutation, nsSNPs, fathmm">
<meta name="author" content="Hashem A. Shihab">
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
<link rel="icon" type="image/png" href="./img/favicon.ico">
<!-- HTML5 "Upscaling" -->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href="./css/bootstrap.css" rel="stylesheet">
<link href="./css/bootstrap-responsive.css" rel="stylesheet">
<link href="./css/fathmm.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="./js/bootstrap.min.js"></script>
<script type="text/javascript" src="./js/jquery.min.js"></script>
<script type="text/javascript" src="./js/jquery.flot.js"></script>
<script type="text/javascript" src="./js/jquery.flot.crosshair.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-29568329-3']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<a id="top"></a>
<div class="container">
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="">fathmm</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="https://github.com/HAShihab/fathmm">Download</a></li>
</ul>
<form class="navbar-form pull-right" action="./cgi-bin/results.cgi" method="post" enctype="multipart/form-data">
<input class="span3" type="text" id="session" name="session" placeholder="Enter Your Job/Session Identifier">
<button type="submit" class="btn">Fetch Results</button>
</form>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="hero-unit">
<h2>Analyze Cancer-Associated Variants</h2>
</div>
<ul class="nav nav-tabs" id="myTab">
<li id="new-tab" class="active">
<a href="#new" onclick="javascript: remove();" data-toggle="tab">New Submission</a>
</li>
<li id="eg-tab">
<a href="#new" onclick="javascript: put();" data-toggle="tab">Use Example</a>
</li>
<li id="doc-tab">
<a href="#documentation" data-toggle="tab">Help/Documentation</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="new">
<div class="row">
<div class="span12">
<form class="form-horizontal" id="myForm" name="myForm" action="./cgi-bin/submit.cgi" method="post" enctype="multipart/form-data">
<legend><h3>Enter Your Mutations:</h3></legend>
<input type="hidden" name="weighted" id="weighted" value="CANCER">
<div class="row-fluid">
<div class="span12">
<div class="well well-large">
<div class="row-fluid">
<div class="span11">
<div class="row-fluid">
<div class="span7">
<div class="control-group">
<label class="control-label" for="batch">User Input</label>
<div class="controls">
<textarea id="batch" name="batch" type="text" class="span11" style="resize: none;" rows="5"></textarea>
<a href="#documentation" data-toggle="tab" class="icon-question-sign" onclick="javascript: $('#new-tab').removeClass('active'); $('#eg-tab').removeClass('active'); $('#doc-tab').addClass('active');"></a>
</div>
</div>
</div>
<div class="help-inline span5">
<div class="row-fluid">
<div class="span12">
<div class="row-fluid">
<div class="span12">
<div class="control-group">
<label class="control-label" for="phenotypes">Prediction Threshold</label>
<div class="controls">
<input id="threshold" name="threshold" type="text" class="span11" value="-0.75">
<a href="#documentation" data-toggle="tab" class="icon-question-sign" onclick="javascript: $('#new-tab').removeClass('active'); $('#eg-tab').removeClass('active'); $('#doc-tab').addClass('active');"></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row-fluid">
<div class="span12">
<div class="row-fluid">
<div class="span12">
<div class="control-group pull-right">
<div class="controls">
<button type="reset" class="btn">Clear</button>
<button type="submit" class="btn">Submit</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="tab-pane" id="documentation">
<div class="row">
<div class="span3" id="navparent">
<ul class="nav nav-list navex">
<li><a href="#overview"><i class="icon-chevron-right"></i> Overview</a></li>
<li><a href="#format"><i class="icon-chevron-right"></i> Input Format</a></li>
<li><a href="#format_batch"><i class="icon-chevron-right"></i> Batch Submission</a></li>
<li><a href="#cutoff"><i class="icon-chevron-right"></i> Prediction Threshold</a></li>
<li><a href="#vcf"><i class="icon-chevron-right"></i> Annotating VCF's</a></li>
</ul>
</div>
<div class="span9">
<section id="overview">
<h1>Overview:</h1>
<br />
<p>
Our cancer-specific algorithm is capable of <b>predicting the functional effects of cancer-associated protein missense mutations</b> by combining
sequence conservation within hidden Markov models (HMMs), representing the alignment of homologous sequences and conserved
protein domains, with cancer-specific "pathogenicity weights", representing the overall tolerance of the corresponding model
to cancer mutations.
<br /><br />
For more information, please refer to the following publications:
<br /><br />
Shihab HA, Gough J, Cooper DN, Day INM, Gaunt, TR. (2013). Predicting the Functional Consequences of Cancer-Associated Amino Acid Substitutions.
<i>Bioinformatics</i> <b>29</b>:1504-1510.
<a href="http://www.ncbi.nlm.nih.gov/pubmed/23620363"><img src="./img/pubmed.png" alt="Cancer-Specific Paper"></a>
<br /><br />
Shihab HA, Gough J, Cooper DN, Stenson PD, Barker GLA, Edwards KJ, Day INM, Gaunt, TR. (2013). Predicting the Functional, Molecular and Phenotypic
Consequences of Amino Acid Substitutions using Hidden Markov Models. <i>Hum. Mutat.</i>, <b>34</b>:57-65
<a href="http://www.ncbi.nlm.nih.gov/pubmed/23033316"><img src="./img/pubmed.png" alt="fathmm Paper"></a>
</p>
<br />
<a href='./cancer.html#top'>Back to Top ...</a>
</section>
<br />
<section id="format">
<h1>Input Format:</h1>
<br />
<p>
Our software accepts one of the following formats (see <a href="./about.html#vcf">here</a> for annotating VCF files):
<br /><br />
<ul>
<li>
<code><protein> <substitution></code>
</li>
<li>
<code>dbSNP rs identifiers</code>
</li>
</ul>
<br />
In the above, <code><protein></code> is the protein identifier and <code><substitution></code> is the amino acid substitution in the conventional one
letter format. At present, <b>our server accepts SwissProt/TrEMBL, RefSeq and Ensembl protein identifiers</b>, e.g.:
<br /><br />
<pre>
P43026 L441P
</pre>
or:
<br /><br />
<pre>
rs137854462
</pre>
</p>
<br />
<a href='./cancer.html#top'>Back to Top ...</a>
</section>
<br />
<section id="format_batch">
<h1>Batch Submission:</h1>
<br />
<p>
<b>
It is possible to submit multiple amino acid substitutions as a 'Batch Submission' via our server</b>. Here, all amino acid substitutions for a protein can be
entered on a single line and should be separated by a comma, e.g:
<br /><br />
<pre>
P43026 L441P
ENSP00000325527 N548I,E1073K,C2307S
</pre>
<br />
<b>Note: this option is not available when analysing dbSNP rs identifiers</b>.
</p>
<br />
<a href='./cancer.html#top'>Back to Top ...</a>
</section>
<br />
<section id="cutoff">
<h1>Prediction Threshold:</h1>
<br />
<p>
As described in our paper, our server uses a default prediction threshold of -0.75. Here, predictions with scores less than this indicate the
mutation is potentially associated with cancer; however, <b>our prediction threshold this can be adjusted and tuned to cater
for your individual needs</b>. For example, if you are interested in minimising the number of false positives in your analysis, then you should opt
for a more conservative threshold, e.g. -3.0; however, if you are interested in capturing a large proportion of cancer-associated mutations (regardless of
the number of false positives), then a less stringent threshold should be selected, e.g. 0.0 or higher. To inform you of this choice, the specificity and sensitivity
of our software at various prediction thresholds can be seen using the below interactive graph:
<br /><br />
<center><div id="placeholder" style="width:600px; height:300px"></div></center>
<br />
<center>Prediction Threshold</center>
</p>
<br />
<a href='./cancer.html#top'>Back to Top ...</a>
</section>
<br />
<section id="vcf">
<h1>VCF Annotation:</h1>
<br />
<p>
Unfortunately, due to disk space constraints, we are unable to annotate Variant Call Format (VCF) files on your behalf. However, the consequences of all VCF variants
can be derived using the <b><a href="http://www.ensembl.org/info/docs/variation/vep/index.html">Ensembl Variant Effect Predictor (VEP)</a></b>.
Once annotated, the following script <b><a href="./parseVCF.py">(available here)</a></b> is capable of parsing these annotations and will provide you with a list of protein
consequences which can then be used as input into our server/software.
<br /><br />
Additional help on using our script is available by typing the following command:
<br /><br />
<pre>python parseVCF.py --help</pre>
</p>
<br />
<a href='./cancer.html#top'>Back to Top ...</a>
</section>
</div>
</div>
</div>
</div>
<hr>
<footer>
<p>
If you have found this resource useful, please cite the following work:
<br />
<a href="http://www.ncbi.nlm.nih.gov/pubmed/23033316">Shihab HA, Gough J, Cooper DN, Stenson PD, Barker GLA, Edwards KJ, Day INM, Gaunt, TR. (2013). Predicting the Functional, Molecular and Phenotypic Consequences of Amino Acid Substitutions using Hidden Markov Models. Hum. Mutat., <b>34</b>, 57-65 </a>
</p>
<p>
We welcome any comments and/or suggestions that you may have regarding our software and server - please send an email directly to [email protected]
</p>
</footer>
</div>
<script type="text/javascript" src="./js/bootstrap.min.js"></script>
<script type="text/javascript" src="./js/jquery.min.js"></script>
<script type="text/javascript" src="./js/jquery.flot.js"></script>
<script type="text/javascript" src="./js/jquery.flot.crosshair.js"></script>
<script type="text/javascript">
$("#new-tab").click(function() {
$('#myForm')[0].reset();
});
$("#eg-tab").click(function() {
$('#myForm')[0].reset();
document.forms['myForm'].elements['batch'].value = "P43026 L441P\nENSP00000269305 E258A,R280G,G302E";
});
</script>
<script type="text/javascript">
$(function() {
var Specificity = [];
var Sensitivity = [];
Specificity.push([-3.0, 0.99]);
Sensitivity.push([-3.0, 0.45]);
Specificity.push([-2.75, 0.98]);
Sensitivity.push([-2.75, 0.50]);
Specificity.push([-2.5, 0.98]);
Sensitivity.push([-2.5, 0.55]);
Specificity.push([-2.25, 0.97]);
Sensitivity.push([-2.25, 0.59]);
Specificity.push([-2.0, 0.97]);
Sensitivity.push([-2.0, 0.66]);
Specificity.push([-1.75, 0.96]);
Sensitivity.push([-1.75, 0.74]);
Specificity.push([-1.5, 0.94]);
Sensitivity.push([-1.5, 0.80]);
Specificity.push([-1.25, 0.93]);
Sensitivity.push([-1.25, 0.85]);
Specificity.push([-1.0, 0.90]);
Sensitivity.push([-1.0, 0.89]);
Specificity.push([-0.75, 0.88]);
Sensitivity.push([-0.75, 0.91]);
Specificity.push([-0.5, 0.87]);
Sensitivity.push([-0.5, 0.92]);
Specificity.push([-0.25, 0.85]);
Sensitivity.push([-0.25, 0.92]);
Specificity.push([0, 0.81]);
Sensitivity.push([0, 0.94]);
Specificity.push([0.25, 0.77]);
Sensitivity.push([0.25, 0.96]);
Specificity.push([0.5, 0.73]);
Sensitivity.push([0.5, 0.96]);
Specificity.push([0.75, 0.68]);
Sensitivity.push([0.75, 0.97]);
Specificity.push([1, 0.61]);
Sensitivity.push([1, 0.97]);
plot = $.plot("#placeholder", [
{ data: Specificity, label: "Specificity=-0.00"},
{ data: Sensitivity, label: "Sensitivity=-0.00" }
], {
series: {
lines: {
show: true
}
},
crosshair: {
mode: "x"
},
grid: {
hoverable: true,
autoHighlight: false
},
yaxis: {
min: 0,
max: 1,
show: false
},
xaxis: {
min: -3.0,
max: 1.0,
ticks: 15
},
legend: {
position: "se"
}
});
var legends = $("#placeholder .legendLabel");
legends.each(function () {
$(this).css('width', $(this).width());
});
var updateLegendTimeout = null;
var latestPosition = null;
function updateLegend() {
updateLegendTimeout = null;
var pos = latestPosition;
var axes = plot.getAxes();
if (pos.x < axes.xaxis.min || pos.x > axes.xaxis.max ||
pos.y < axes.yaxis.min || pos.y > axes.yaxis.max) {
return;
}
var i, j, dataset = plot.getData();
for (i = 0; i < dataset.length; ++i) {
var series = dataset[i];
for (j = 0; j < series.data.length; ++j) {
if (series.data[j][0] > pos.x) {
break;
}
}
var y,
p1 = series.data[j - 1],
p2 = series.data[j];
if (p1 == null) {
y = p2[1];
} else if (p2 == null) {
y = p1[1];
} else {
y = p1[1] + (p2[1] - p1[1]) * (pos.x - p1[0]) / (p2[0] - p1[0]);
}
legends.eq(i).text(series.label.replace(/=.*/, "=" + y.toFixed(2)));
}
}
$("#placeholder").bind("plothover", function (event, pos, item) {
latestPosition = pos;
if (!updateLegendTimeout) {
updateLegendTimeout = setTimeout(updateLegend, 50);
}
});
});
</script>
</body>
</html>