Skip to content
Snippets Groups Projects

issue with genomic data overlay for few genomes

Merged Piotr Gawron requested to merge 1546-genomic-issue into devel_16.0.x
2 files
+ 6
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -51,7 +51,7 @@ function AliasInfoWindow(params) {
};
var dbOverlaySearchChanged = function (arg) {
return self.update().then(function(){
return self.update().then(function () {
if (arg.object instanceof ChemicalDbOverlay) {
$("a:contains(chemical)", self.getContent()).click();
} else if (arg.object instanceof DrugDbOverlay) {
@@ -438,7 +438,9 @@ AliasInfoWindow.prototype.createGenomicDiv = function (params) {
return Promise.all(promises).then(function (result) {
promises = [];
result.forEach(function (overlayEntries) {
overlaysData = overlaysData.concat(overlayEntries);
if (overlayEntries !== undefined) {
overlaysData = overlaysData.concat(overlayEntries);
}
});
return Promise.all(promises);
}).then(function () {
Loading