Skip to content
Snippets Groups Projects
Commit d55e47f4 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

Merge branch 'ittm-error-posttranslational-modification' into 'devel_11.0.x'

Ittm error posttranslational modification and drugbank connector fix

See merge request piotr.gawron/minerva!147
parents 1a00e9ce 20bb58d2
No related branches found
No related tags found
3 merge requests!15111.0.5 and 11.0.6 merged into master,!150merge of 11.0.6 into 11.1.x,!147Ittm error posttranslational modification and drugbank connector fix
minerva (11.0.5) stable; urgency=medium
* Bug fix: fix on connection to drugbank database
* Bug fix: posttranslational modification data was sometimes unavailable
in search results panel
-- Piotr Gawron <piotr.gawron@uni.lu> Thu, 30 Nov 2017 16:00:00 +0200
minerva (11.0.4) stable; urgency=medium minerva (11.0.4) stable; urgency=medium
* Bug fix: fix on connection to taxonomy database * Bug fix: fix on connection to taxonomy database
* Bug fix: color coding for reactions (wrong color was chosen) * Bug fix: color coding for reactions (wrong color was chosen)
......
...@@ -106,7 +106,7 @@ BioEntity.prototype.getType = function() { ...@@ -106,7 +106,7 @@ BioEntity.prototype.getType = function() {
BioEntity.prototype.getOther = function(type) { BioEntity.prototype.getOther = function(type) {
if (this._other !== undefined) { if (this._other !== undefined) {
return this._other[type]; return (type === undefined) ? this._other : this._other[type];
} }
}; };
......
---clear drugbank cache
delete from cachequery where type = (select iddb from cache_type where classname='lcsb.mapviewer.annotation.services.DrugbankHTMLParser');
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment