Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Enhort
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Michael Menzel
Enhort
Commits
4f7e6429
Commit
4f7e6429
authored
Mar 30, 2020
by
Michael Menzel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
background model count set to max of min bg or position count
parent
fbed82d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
backend/src/main/java/de/thm/run/AnalysisHelper.java
backend/src/main/java/de/thm/run/AnalysisHelper.java
+1
-1
No files found.
backend/src/main/java/de/thm/run/AnalysisHelper.java
View file @
4f7e6429
...
...
@@ -111,7 +111,7 @@ class AnalysisHelper {
SiteFactory
factory
=
SiteFactoryFactory
.
getInstance
().
get
(
sites
.
getAssembly
());
bg
[
0
]
=
factory
.
getByLogo
(
LogoCreator
.
createLogo
(
sites
),
minSites
);
}
else
if
(
covariants
.
isEmpty
())
{
bg
[
0
]
=
BackgroundModelFactory
.
createBackgroundModel
(
sites
.
getAssembly
(),
sites
.
getPositionCount
());
//check if minSites is larger
bg
[
0
]
=
BackgroundModelFactory
.
createBackgroundModel
(
sites
.
getAssembly
(),
Math
.
max
(
sites
.
getPositionCount
(),
cmd
.
getMinBg
()));
}
else
{
try
{
bg
[
0
]
=
BackgroundModelFactory
.
createBackgroundModel
(
covariants
,
sites
,
minSites
,
smooth
);
...
...
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