Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
372283e5
Commit
372283e5
authored
Dec 19, 2019
by
Piotr Gawron
Browse files
warning message improved
parent
e5ed2a53
Pipeline
#17987
canceled with stage
in 1 minute and 38 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
372283e5
...
...
@@ -11,6 +11,8 @@ minerva (14.0.6) stable; urgency=medium
(regression 14.0.0, #1057)
* Bug fix: genetic variant overlay improperly processed elements identified
by miriam identifiers, like uniprot (#1059)
* Bug fix: invalid information was provided for genetic variants overlay when
map organism was defined (#1060)
-- Piotr Gawron <piotr.gawron@uni.lu> Wed, 18 Dec 2019 12:00:00 +0200
...
...
frontend-js/src/main/js/map/window/AliasInfoWindow.js
View file @
372283e5
...
...
@@ -463,7 +463,11 @@ AliasInfoWindow.prototype.createGenomicDiv = function (params) {
}
if
(
geneticInformation
)
{
if
(
genomeUrls
.
length
===
0
)
{
contentElement
.
innerHTML
=
"
No organism defined for this project, cannot display variant data
"
;
if
(
self
.
getCustomMap
().
getProject
().
getOrganism
()
===
undefined
)
{
contentElement
.
innerHTML
=
"
No organism defined for this project, cannot display variant data.
"
;
}
else
{
contentElement
.
innerHTML
=
"
No reference genome defined for this MINERVA instance, cannot display variant data.
"
;
}
}
else
{
for
(
i
=
0
;
i
<
overlaysData
.
length
;
i
++
)
{
if
(
globalGeneVariants
[
i
].
length
>
0
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment