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
c3e549fa
Commit
c3e549fa
authored
Jul 01, 2020
by
Piotr Gawron
Browse files
more types are not supported by CellDesigner
parent
fc873fef
Pipeline
#29195
passed with stage
in 13 minutes and 42 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
c3e549fa
...
...
@@ -16,6 +16,10 @@ minerva (15.0.2) stable; urgency=medium
panel
(#
1245
)
*
Bug
fix
:
bqmodel
:
isInstanceOf
and
bqmodel
:
hasInstance
relation
types
were
not
handled
properly
(#
1281
)
*
Bug
fix
:
"bqmodel:isInstanceOf"
,
"bqmodel:hasInstance"
,
"bqbiol:hasProperty"
,
"bqbiol:isPropertyOf"
and
"bqbiol:hasTaxon"
relation
types
are
not
supported
by
CellDedigner
and
are
now
transformed
during
export
into
something
readable
by
CellDesigner
(#
1281
)
--
Piotr
Gawron
<
piotr
.
gawron
@
uni
.
lu
>
Mon
,
29
Jun
2020
11
:
00
:
00
+
0200
...
...
converter-CellDesigner/src/main/java/lcsb/mapviewer/converter/model/celldesigner/CommonXmlParser.java
View file @
c3e549fa
...
...
@@ -54,6 +54,10 @@ public class CommonXmlParser {
RELATION_TYPES_SUPPORTED_BY_CELL_DESIGNER
=
new
HashSet
<>();
RELATION_TYPES_SUPPORTED_BY_CELL_DESIGNER
.
addAll
(
Arrays
.
asList
(
MiriamRelationType
.
values
()));
RELATION_TYPES_SUPPORTED_BY_CELL_DESIGNER
.
remove
(
MiriamRelationType
.
BQ_MODEL_IS_DERIVED_FROM
);
RELATION_TYPES_SUPPORTED_BY_CELL_DESIGNER
.
remove
(
MiriamRelationType
.
BQ_BIOL_HAS_PROPERTY
);
RELATION_TYPES_SUPPORTED_BY_CELL_DESIGNER
.
remove
(
MiriamRelationType
.
BQ_BIOL_IS_PROPERTY_OF
);
RELATION_TYPES_SUPPORTED_BY_CELL_DESIGNER
.
remove
(
MiriamRelationType
.
BQ_MODEL_IS_INSTANCE_OF
);
RELATION_TYPES_SUPPORTED_BY_CELL_DESIGNER
.
remove
(
MiriamRelationType
.
BQ_MODEL_HAS_INSTANCE
);
}
private
DocumentBuilderFactory
dbFactory
;
...
...
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