Known issue: Difference between revisions

From Relion
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
= Known issues =
== Release 1.1 ==
== Release 1.1 ==


*
  * There is a nasty bug in the reconstruction algorithm, which mostly seems to affect reconstructions from many particles. The effects on the reconstruction can be disastrous: instead of seeing the molecule, one may end up with a stripy pattern. The bug can be circumvented by changing line 658 in src/backprojector.cpp
from:
double myfsc = XMIPP_MAX(0., DIRECT_A1D_ELEM(fsc, i));
to:
double myfsc = XMIPP_MAX(0.001, DIRECT_A1D_ELEM(fsc, i));

Revision as of 10:46, 9 November 2012

Release 1.1

  * There is a nasty bug in the reconstruction algorithm, which mostly seems to affect reconstructions from many particles. The effects on the reconstruction can be disastrous: instead of seeing the molecule, one may end up with a stripy pattern. The bug can be circumvented by changing line 658 in src/backprojector.cpp

from: double myfsc = XMIPP_MAX(0., DIRECT_A1D_ELEM(fsc, i)); to: double myfsc = XMIPP_MAX(0.001, DIRECT_A1D_ELEM(fsc, i));