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
c612d9fb
Commit
c612d9fb
authored
Jun 05, 2020
by
Piotr Gawron
Browse files
truncation/association/dissocation points are represented as a dot
parent
fa0d8ac8
Pipeline
#27659
failed with stage
in 11 minutes and 47 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
c612d9fb
minerva
(
15.0.0
~
beta
.5
)
unstable
;
urgency
=
medium
*
Backward
incompatible
:
truncation
/
association
/
dissocation
points
are
represented
as
a
dot
in
all
new
images
/
uploaded
maps
(#
1265
)
*
Bug
fix
:
export
to
GPML
uses
proper
arrow
types
(#
1262
)
*
Bug
fix
:
export
to
GPML
uses
dashed
lines
in
reactions
when
possible
(#
1262
)
...
...
converter-graphics/src/main/java/lcsb/mapviewer/converter/graphics/bioEntity/reaction/ReactionConverter.java
View file @
c612d9fb
...
...
@@ -359,7 +359,8 @@ public class ReactionConverter extends BioEntityConverter<Reaction> {
// bigger connecting point circles in SBGN view
if
(
sbgnFormat
)
{
radius
*=
SBGN_RADIUS_MULTIPLIER
;
}
else
if
(
operator
instanceof
AndOperator
||
operator
instanceof
SplitOperator
)
{
}
else
if
(
operator
instanceof
AndOperator
||
operator
instanceof
SplitOperator
||
operator
instanceof
DissociationOperator
||
operator
instanceof
AssociationOperator
||
operator
instanceof
TruncationOperator
)
{
radius
=
1.5
;
fillColor
=
operator
.
getLine
().
getColor
();
}
...
...
model/src/main/java/lcsb/mapviewer/model/map/reaction/AssociationOperator.java
View file @
c612d9fb
...
...
@@ -50,7 +50,7 @@ public class AssociationOperator extends NodeOperator {
@Override
public
String
getOperatorText
()
{
return
"
&
"
;
return
""
;
}
@Override
...
...
model/src/main/java/lcsb/mapviewer/model/map/reaction/DissociationOperator.java
View file @
c612d9fb
...
...
@@ -49,7 +49,7 @@ public class DissociationOperator extends NodeOperator {
@Override
public
String
getOperatorText
()
{
return
"
○
"
;
return
""
;
}
@Override
...
...
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