Skip to content

Commit

Permalink
repair InitialModel GUI to apply C10,C11...C19 symmetry when requeste…
Browse files Browse the repository at this point in the history
…d after initial model run without applying symmetry
  • Loading branch information
huwjenkins committed Jan 22, 2024
1 parent 90d239e commit 560dcf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pipeline_jobs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3561,7 +3561,7 @@ bool RelionJob::getCommandsInimodelJob(std::string &outputname, std::vector<std:
command2 += " --i " + fn_model;
command2 += " --o " + outputname + "initial_model.mrc";

if ( joboptions["do_run_C1"].getBoolean() && !(fn_sym.contains("C1") || fn_sym.contains("c1")) )
if ( joboptions["do_run_C1"].getBoolean() && !(fn_sym == "C1" || fn_sym == "c1") )
{
command2 += " --sym " + joboptions["sym_name"].getString();
}
Expand Down

0 comments on commit 560dcf4

Please sign in to comment.