「view this page in B3 βῆτα server」

Revisions №20622

branch: rosetta:commits 「№20622」
Commited by: Rocco Moretti
GitHub commit link: 「26484dedf0f1404f」
Difference from previous tested commit:  code diff
Commit date: 2024-12-17 00:26:02
linux.clang.cxx11thread.serialization.python310.release.PyRosetta.conda.Release linux.clang.cxx11thread.serialization.python311.release.PyRosetta.conda.Release linux.clang.cxx11thread.serialization.python312.release.PyRosetta.conda.Release linux.clang.cxx11thread.serialization.python38.release.PyRosetta.conda.Release linux.clang.cxx11thread.serialization.python39.release.PyRosetta.conda.Release m1.clang.cxx11thread.serialization.python310.release.PyRosetta.conda.Release m1.clang.cxx11thread.serialization.python311.release.PyRosetta.conda.Release m1.clang.cxx11thread.serialization.python312.release.PyRosetta.conda.Release m1.clang.cxx11thread.serialization.python313.release.PyRosetta.conda.Release m1.clang.cxx11thread.serialization.python39.release.PyRosetta.conda.Release mac.clang.cxx11thread.serialization.python310.release.PyRosetta.conda.Release mac.clang.cxx11thread.serialization.python311.release.PyRosetta.conda.Release mac.clang.cxx11thread.serialization.python312.release.PyRosetta.conda.Release mac.clang.cxx11thread.serialization.python313.release.PyRosetta.conda.Release mac.clang.cxx11thread.serialization.python38.release.PyRosetta.conda.Release mac.clang.cxx11thread.serialization.python39.release.PyRosetta.conda.Release ubuntu.clang.cxx11thread.serialization.python310.release.PyRosetta.conda.Release ubuntu.clang.cxx11thread.serialization.python311.release.PyRosetta.conda.Release ubuntu.clang.cxx11thread.serialization.python312.release.PyRosetta.conda.Release ubuntu.clang.cxx11thread.serialization.python313.release.PyRosetta.conda.Release ubuntu.clang.cxx11thread.serialization.python38.release.PyRosetta.conda.Release ubuntu.clang.cxx11thread.serialization.python39.release.PyRosetta.conda.Release m1.clang.cxx11thread.serialization.python312.release.rosetta.conda.release mac.clang.cxx11thread.serialization.python312.release.rosetta.conda.release ubuntu.clang.cxx11thread.serialization.python312.release.rosetta.conda.release

Fix issue related to PackerTask usage in homodimer_design. (#115) With a -pack_min_runs of 2 or greater, there's a chance that the sequence of the structure changes. This is a problem for a fixed PackerTask run, as `task_is_valid( pose )` fails if the base residue types don't match up properly. This is an issue found in Discussion #112 The fix is simple -- just use the TaskFactory which we already have lying around instead of manually generating the packer task. (The PackRotamersMover will properly re-apply the TaskFactory.) We can also make the interface of PackRotamersMover a bit nicer.

...