Skip to content

Commit

Permalink
GUI: use "--reconstruct_subtracted_bodies" in continuation as well (a…
Browse files Browse the repository at this point in the history
…s reported by Dr. Yanagisawa)

Call this 3.0.8 (hopefully final version in 3.0.x)
  • Loading branch information
biochem-fan committed Oct 14, 2019
1 parent dab3bd4 commit 5a8f827
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
#ifndef MACROS_H
#define MACROS_H

#define RELION_VERSION "3.0.7"
#define RELION_VERSION "3.0.8"

#include <math.h>
#include <signal.h>
Expand Down
6 changes: 3 additions & 3 deletions src/pipeline_jobs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3891,9 +3891,6 @@ bool RelionJob::getCommandsMultiBodyJob(std::string &outputname, std::vector<std
Node node(joboptions["fn_in"].getString(), joboptions["fn_in"].node_type);
inputNodes.push_back(node);

if (joboptions["do_subtracted_bodies"].getBoolean())
command += " --reconstruct_subtracted_bodies ";

// Sampling
int iover = 1;
command += " --oversampling " + floatToString((float)iover);
Expand All @@ -3916,6 +3913,9 @@ bool RelionJob::getCommandsMultiBodyJob(std::string &outputname, std::vector<std

}

if (joboptions["do_subtracted_bodies"].getBoolean())
command += " --reconstruct_subtracted_bodies ";

// Always do compute stuff
if (!joboptions["do_combine_thru_disc"].getBoolean())
command += " --dont_combine_weights_via_disc";
Expand Down

0 comments on commit 5a8f827

Please sign in to comment.