Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Devrim Gunyel
core
Commits
d04da2a3
Commit
d04da2a3
authored
Jun 07, 2019
by
Piotr Gawron
Browse files
color parameter is not ignored in gene variants
parent
b5b17383
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
d04da2a3
...
@@ -22,6 +22,7 @@ minerva (12.3.1~beta.1) unstable; urgency=low
...
@@ -22,6 +22,7 @@ minerva (12.3.1~beta.1) unstable; urgency=low
*
Bug
fix
:
when
changing
data
in
edit
user
dialog
there
was
a
need
to
click
*
Bug
fix
:
when
changing
data
in
edit
user
dialog
there
was
a
need
to
click
close
button
twice
(#
818
)
close
button
twice
(#
818
)
*
Bug
fix
:
empty
type
for
data
overlay
is
allowed
(#
827
)
*
Bug
fix
:
empty
type
for
data
overlay
is
allowed
(#
827
)
*
Bug
fix
:
genetic
variants
data
overlay
was
ignoring
color
parameter
(#
827
)
minerva
(
13.1.0
~
beta
.0
)
unstable
;
urgency
=
low
minerva
(
13.1.0
~
beta
.0
)
unstable
;
urgency
=
low
*
Feature
:
annotators
are
more
flexible
-
you
can
define
set
of
input
and
*
Feature
:
annotators
are
more
flexible
-
you
can
define
set
of
input
and
...
...
service/src/main/java/lcsb/mapviewer/services/utils/ColorSchemaReader.java
View file @
d04da2a3
...
@@ -435,7 +435,7 @@ public class ColorSchemaReader {
...
@@ -435,7 +435,7 @@ public class ColorSchemaReader {
}
}
}
}
for
(
ColorSchema
colorSchema
:
schemasByName
.
values
())
{
for
(
ColorSchema
colorSchema
:
schemasByName
.
values
())
{
if
(
colorSchema
instanceof
GeneVariationColorSchema
)
{
if
(
colorSchema
instanceof
GeneVariationColorSchema
&&
colorSchema
.
getColor
()
==
null
)
{
colorSchema
.
setColor
(
getGeneVariantsColor
(((
GeneVariationColorSchema
)
colorSchema
).
getGeneVariations
()));
colorSchema
.
setColor
(
getGeneVariantsColor
(((
GeneVariationColorSchema
)
colorSchema
).
getGeneVariations
()));
}
}
}
}
...
@@ -446,7 +446,7 @@ public class ColorSchemaReader {
...
@@ -446,7 +446,7 @@ public class ColorSchemaReader {
* Gets color that should be assigned to {@link GeneVariationColorSchema}.
* Gets color that should be assigned to {@link GeneVariationColorSchema}.
*
*
* @param geneVariations
* @param geneVariations
* list of v
i
ariants
* list of variants
* @return {@link Color} that should be assigned to
* @return {@link Color} that should be assigned to
* {@link GeneVariationColorSchema}
* {@link GeneVariationColorSchema}
*/
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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