Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
MPIBP-Hummer
BioEM
Commits
7ba51510
Commit
7ba51510
authored
Sep 26, 2017
by
Luka Stanisic
Browse files
bugfix: map is by default squared
parent
7c401d9e
Pipeline
#18633
passed with stage
in 46 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
map.cpp
View file @
7ba51510
...
...
@@ -542,7 +542,11 @@ int bioem_RefMap::read_MRC(const char* filename,bioem_param& param)
}
}
}
if
(
param
.
notsqure
)
exit
(
1
);
if
(
param
.
notsqure
)
{
cout
<<
"ERROR param.notsqure is TRUE
\n
"
;
exit
(
1
);
}
//Normaling maps to zero mean and unit standard deviation
if
(
!
param
.
notnormmap
){
st
/=
float
(
nr
*
nc
);
...
...
param.cpp
View file @
7ba51510
...
...
@@ -97,6 +97,7 @@ int bioem_param::readParameters(const char* fileinput)
ignorepointsout
=
false
;
printrotmod
=
false
;
ignorePDB
=
false
;
notsqure
=
false
;
NotUn_angles
=
0
;
priorMod
=
1
;
//Default
...
...
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