annotate data/js/custom.js @ 2:b6fd86c539ea
Fix pysam version in riboplot (was 0.7.7 instead of 0.8.3).
Fix move sys import to the top in ribocount.py, riboplot.py.
Minor:
* Include an empty conditional when no RNA coverage is required.
* Remove output directories after zip file is created.
author |
Vimalkumar Velayudhan <vimal@biotechcoder.com> |
date |
Thu, 02 Jul 2015 11:53:59 +0100 |
parents |
ca58e9466cbf |
children |
|
rev |
line source |
0
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
1 $(document).ready(function()
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
2 {
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
3 $("#counts-table").tablesorter({sortList: [[2,1]]});
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
4 //assign the sortStart event
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
5 $("#counts-table").bind("sortStart", function() {
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
6 $("#overlay").show();
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
7 }).bind("sortEnd",function() {
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
8 $("#overlay").hide();
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
9 });
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
10 }
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
11 );
|