Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
minerva
core
Merge requests
!1464
split operator was not exported
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
split operator was not exported
1676-export-of-truncation
into
devel_16.1.x
Overview
0
Commits
1
Pipelines
1
Changes
2
Merged
Piotr Gawron
requested to merge
1676-export-of-truncation
into
devel_16.1.x
2 years ago
Overview
0
Commits
1
Pipelines
1
Changes
2
Expand
Closes
#1676 (closed)
0
0
Merge request reports
Compare
devel_16.1.x
devel_16.1.x (base)
and
latest version
latest version
b4554ffd
1 commit,
2 years ago
2 files
+
6
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
pathvisio/src/main/java/lcsb/mapviewer/wikipathway/xml/ModelToGPML.java
+
4
−
1
Options
@@ -243,7 +243,7 @@ public class ModelToGPML {
PolylineData
res
=
new
PolylineData
();
NodeOperator
and
=
start
.
getNodeOperatorForInput
();
//
NodeOperator split = end.getNodeOperatorForOutput();
NodeOperator
split
=
end
.
getNodeOperatorForOutput
();
PolylineData
startLine
=
start
.
getLine
();
Point2D
ps
=
startLine
.
getStartPoint
();
@@ -257,6 +257,9 @@ public class ModelToGPML {
if
(
and
!=
null
)
{
res
.
addLines
(
and
.
getLine
().
getLines
());
}
if
(
split
!=
null
)
{
res
.
addLines
(
split
.
getLine
().
reverse
().
getLines
());
}
PolylineData
endLine
=
end
.
getLine
();
Point2D
pe
=
endLine
.
getEndPoint
();
Loading