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 authored and biochem-fan committed Jan 23, 2024
1 parent 1dc50f5 commit c3974ae
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 @@ -3413,7 +3413,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 c3974ae

Please sign in to comment.