nanohedra_parsing
retrieve_pose_transformation_from_nanohedra_docking
retrieve_pose_transformation_from_nanohedra_docking(pose_file: AnyStr) -> list[dict]
Gather pose transformation information for the Pose from Nanohedra output
Parameters:
-
pose_file
(AnyStr
) –The file containing pose information from Nanohedra output
Returns: The pose transformation arrays as found in the pose_file
Source code in symdesign/utils/nanohedra_parsing.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
|
get_components_from_nanohedra_docking
get_components_from_nanohedra_docking(pose_file: AnyStr) -> list[str]
Gather information on the docking componenet identifiers for the docked Pose from a Nanohedra output
Parameters:
-
pose_file
(AnyStr
) –The file containing pose information from Nanohedra output
Returns: The names of the models used during Nanohedra
Source code in symdesign/utils/nanohedra_parsing.py
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
|
get_sym_entry_from_nanohedra_directory
get_sym_entry_from_nanohedra_directory(nanohedra_dir: AnyStr) -> SymEntry
Handles extraction of Symmetry info from Nanohedra outputs.
Parameters:
-
nanohedra_dir
(AnyStr
) –The path to a Nanohedra master output directory
Raises: FileNotFoundError: If no nanohedra master log file is found SymmetryError: If no symmetry is found Returns: The SymEntry specified by the Nanohedra docking run
Source code in symdesign/utils/nanohedra_parsing.py
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
|