Skip to content
Snippets Groups Projects
Commit 6a3f17a4 authored by Rafal Gumienny's avatar Rafal Gumienny
Browse files

fix: SCHWED-3128 Enable selections for lDDT references

parent 7a99285c
No related branches found
No related tags found
No related merge requests found
......@@ -276,7 +276,13 @@ int main (int argc, char **argv)
if (!ref) {
exit(-1);
}
ref_list.push_back(ref.CreateFullView());
if (settings.sel != ""){
std::cout << "Performing \"" << settings.sel << "\" selection on reference " << ref_filename << std::endl;
ref_list.push_back(ref.Select(settings.sel));
}
else {
ref_list.push_back(ref.CreateFullView());
}
}
CleanlDDTReferences(ref_list);
glob_dist_list = PreparelDDTGlobalRDMap(ref_list, settings);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment