structure_db
structure_database_factory
module-attribute
structure_database_factory: Annotated[StructureDatabaseFactory, 'Calling this factory method returns the single instance of the Database class located at the "source" keyword argument'] = StructureDatabaseFactory()
Calling this factory method returns the single instance of the Database class located at the "source" keyword argument
StructureDatabase
StructureDatabase(models: AnyStr | Path = None, full_models: AnyStr | Path = None, oriented: AnyStr | Path = None, oriented_asu: AnyStr | Path = None, refined: AnyStr | Path = None, stride: AnyStr | Path = None, **kwargs)
Bases: Database
A Database which holds structural data in particular
Parameters:
-
models
(AnyStr | Path
, default:None
) –The path to the specified directory with stores these particular files
-
full_models
(AnyStr | Path
, default:None
) –The path to the specified directory with stores these particular files
-
oriented
(AnyStr | Path
, default:None
) –The path to the specified directory with stores these particular files
-
oriented_asu
(AnyStr | Path
, default:None
) –The path to the specified directory with stores these particular files
-
refined
(AnyStr | Path
, default:None
) –The path to the specified directory with stores these particular files
-
stride
(AnyStr | Path
, default:None
) –The path to the specified directory with stores these particular files
-
**kwargs
–
Source code in symdesign/resources/structure_db.py
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 |
|
orient_structures
orient_structures(structure_identifiers: Iterable[str], sym_entry: SymEntry = None, by_file: bool = False) -> tuple[dict[str, tuple[str, ...]], dict[tuple[str, ...], list[ProteinMetadata]]]
Given structure identifiers and their corresponding symmetry, retrieve, orient, and save oriented files to the Database, then return metadata for each
Parameters:
-
structure_identifiers
(Iterable[str]
) –The names of all entity_ids requiring orientation
-
sym_entry
(SymEntry
, default:None
) –The SymEntry used to treat each passed Entity as symmetric. Default assumes no symmetry
-
by_file
(bool
, default:False
) –Whether to parse the structure_identifiers as file paths. Default treats as PDB EntryID/EntityID
Returns:
-
dict[str, tuple[str, ...]]
–The tuple consisting of ( A map of the entire Pose name to each contained Entity name, A mapping of the UniprotID's to their ProteinMetadata instance for every Entity loaded
-
dict[tuple[str, ...], list[ProteinMetadata]]
–)
Source code in symdesign/resources/structure_db.py
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 |
|
preprocess_metadata_for_design
preprocess_metadata_for_design(metadata: list[ProteinMetadata], script_out_path: AnyStr = os.getcwd(), batch_commands: bool = False) -> list[str] | list
Assess whether structural data requires any processing prior to design calculations. Processing includes relaxation "refine" into the energy function and/or modeling missing segments "loop model"
Parameters:
-
metadata
(list[ProteinMetadata]
) –An iterable of ProteinMetadata objects of interest with the following attributes: model_source, symmetry_group, and entity_id
-
script_out_path
(AnyStr
, default:getcwd()
) –Where should Entity processing commands be written?
-
batch_commands
(bool
, default:False
) –Whether commands should be made for batch submission
Returns: Any instructions if processing is needed, otherwise an empty list
Source code in symdesign/resources/structure_db.py
728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 |
|
StructureDatabaseFactory
StructureDatabaseFactory(**kwargs)
Return a StructureDatabase instance by calling the Factory instance with the StructureDatabase source name
Handles creation and allotment to other processes by saving expensive memory load of multiple instances and allocating a shared pointer to the named StructureDatabase
Source code in symdesign/resources/structure_db.py
1099 1100 |
|
__call__
__call__(source: str = None, sql: bool = False, **kwargs) -> StructureDatabase
Return the specified StructureDatabase object singleton
Parameters:
-
source
(str
, default:None
) –The StructureDatabase source path, or name if SQL database
-
sql
(bool
, default:False
) –Whether the StructureDatabase is a SQL database
Returns: The instance of the specified StructureDatabase
Source code in symdesign/resources/structure_db.py
1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 |
|
get
get(source: str = None, **kwargs) -> StructureDatabase
Return the specified Database object singleton
Other Parameters:
-
source
(str
) –str = None - The StructureDatabase source path, or name if SQL database
-
sql
–bool = False - Whether the StructureDatabase is a SQL database
Returns:
-
StructureDatabase
–The instance of the specified StructureDatabase
Source code in symdesign/resources/structure_db.py
1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 |
|
fetch_pdb_file
fetch_pdb_file(pdb_code: str, asu: bool = True, location: AnyStr = putils.pdb_db, **kwargs) -> AnyStr | None
Fetch PDB object from PDBdb or download from PDB server
Parameters:
-
pdb_code
(str
) –The PDB ID/code. If the biological assembly is desired, supply 1ABC_1 where '_1' is assembly ID
-
asu
(bool
, default:True
) –Whether to fetch the ASU
-
location
(AnyStr
, default:pdb_db
) –Location of a local PDB mirror if one is linked on disk
Other Parameters:
-
assembly
–int = None - Location of a local PDB mirror if one is linked on disk
-
out_dir
–AnyStr = os.getcwd() - The location to save retrieved files if fetched from PDB
Returns:
-
AnyStr | None
–The path to the file if located successfully
Source code in symdesign/resources/structure_db.py
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
|
download_structures
download_structures(structure_identifiers: Iterable[str], out_dir: str = os.getcwd(), asu: bool = False) -> list[Structure]
Retrieves/saves structure model files, given EntryIDs/EntityIDs, then returns a Structure for each identifier
Defaults to fetching the biological assembly file, prioritizing the assemblies as predicted very high/high from QSBio, then using the first assembly if QSBio is missing
Parameters:
-
structure_identifiers
(Iterable[str]
) –The names of all entity_ids requiring orientation
-
out_dir
(str
, default:getcwd()
) –The directory to write downloaded files to
-
asu
(bool
, default:False
) –Whether to get the asymmetric unit from the PDB instead of the biological assembly
Returns:
-
list[Structure]
–The requested Pose/Entity instances
Source code in symdesign/resources/structure_db.py
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
|
query_qs_bio
query_qs_bio(entry_id: str) -> int
Retrieve the first matching Very High/High confidence QSBio assembly from a PDB EntryID
Parameters:
-
entry_id
(str
) –The 4 character PDB EntryID (code) to query
Returns:
-
int
–The integer of the corresponding PDB Assembly ID according to QSBio
Source code in symdesign/resources/structure_db.py
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 |
|