Skip to content

Commit

Permalink
Information not resetting fixed
Browse files Browse the repository at this point in the history
Bug fix:
• Fixed bug where information does not reset on loading new datasets

In progress:
• MEDIAN control data
• Getting the eFP-Seq Browser to work for internet explorer

TODO:
• Make eFP Overview more responsive to screen's resolution
• TMM or TPM and median for additional normalization methods
• Expand the creation of the private database to include adding from public and private database to your creation
• Add group/sorting option to the eFP tissue column

Known bugs:
• After generating new data, scrolling up doesn’t work unless the user scrolls down first
• Does not work on IE
• Google Drive repos do not work for IGB links
• Download page as an image does not render SVGs in Microsoft Edge
  • Loading branch information
AlexJSully committed Nov 28, 2018
1 parent ad648ac commit 8d4404d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
5 changes: 1 addition & 4 deletions cgi-bin/core/custom.js
Original file line number Diff line number Diff line change
Expand Up @@ -1328,8 +1328,6 @@ function populate_efp_modal(status) {
efp_RPKM_values = [];

for (i = 0; i < eFPSortedSRA.length; i++) {
if (isNaN(parseFloat(sraDict[eFPSortedSRA[i]]["RPKM"])) == false)

if (isNaN(parseFloat(sraDict[eFPSortedSRA[i]]["RPKM"])) == false) {
efp_RPKM_values.push(parseFloat(sraDict[eFPSortedSRA[i]]["RPKM"]));
}
Expand Down Expand Up @@ -1486,7 +1484,6 @@ function get_user_XML_display() {
xml_title;
match_title = {};
title_list = [];
dataLoopInt = 0;
// Unnamed dataset name number:
var unnamed_title_num = 1;
var private_version_num = 1;
Expand Down Expand Up @@ -1560,8 +1557,8 @@ function get_user_XML_display() {
*/
var datalist = [];
var datalist_Title = {};
var dataLoopInt = 0;
function create_data_list(size) {
datalist = [];// Reset
datalist_Title = {}; // Reset
for (i = 0; i < size; i++) {
$.ajax({
Expand Down
7 changes: 3 additions & 4 deletions cgi-bin/core/custom.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1123,6 +1123,7 @@ <h3>Right click to download as image</h3>
progress_percent = 0;
base_src = dataset_dictionary[document.getElementById("xmldatabase").value];
sraDict = {};
sraCountDic = {};
generate_loading_screen();
count_bam_num();
checkPreload();
Expand Down

0 comments on commit 8d4404d

Please sign in to comment.