Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/3dem/relion-devel
Browse files Browse the repository at this point in the history
  • Loading branch information
scheres committed Aug 22, 2024
2 parents 2454dfe + d49ecf2 commit 26f902f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
RELION 5.0-beta
===============
RELION 4.0.2
============

RELION (for REgularised LIkelihood OptimisatioN) is a stand-alone computer
program for Maximum A Posteriori refinement of (multiple) 3D reconstructions
Expand Down
8 changes: 4 additions & 4 deletions src/motioncorr_runner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,10 @@ void MotioncorrRunner::initialise()
}
}

// Make sure fn_out ends with a slash
if (fn_out[fn_out.length() - 1] != '/')
fn_out += "/";

// First backup the given list of all micrographs
std::vector<int> optics_group_given_all = optics_group_micrographs;
std::vector<FileName> fn_mic_given_all = fn_micrographs;
Expand Down Expand Up @@ -383,10 +387,6 @@ void MotioncorrRunner::initialise()
}
}

// Make sure fn_out ends with a slash
if (fn_out[fn_out.length()-1] != '/')
fn_out += "/";

// Make all output directories if necessary
FileName prevdir="";
for (size_t i = 0; i < fn_micrographs.size(); i++)
Expand Down

0 comments on commit 26f902f

Please sign in to comment.