builder
#
Functions:
-
build_molecules_with_rdkit
–For the given core molecule and list of attachment points
-
split
–Return the smaller part of the molecule or one that that contains the prespecified atom.
-
merge_R_group
–function originally copied from
-
get_attachment_atom
–In the R-group or a linker, search for the position of the attachment point (R atom)
-
is_linker
–Check if the molecule is a linker by checking if it has 2 R-group points
build_molecules_with_rdkit
#
build_molecules_with_rdkit(scaffold: Mol, r_group: Mol, attachment_point: int = None, keep_components: int = None)
For the given core molecule and list of attachment points and r groups enumerate the possible molecules and return a list of them.
:param scaffold: The core scaffold molecule to attach the r groups to, or a list of them. :param r_group: The list of rdkit molecules which should be considered r groups or the RGroup Grid with highlighted molecules. :param attachment_point: The list of atom index in the core ligand that the r groups should be attached to. If it is empty, connecting points are sought out and matched.
Source code in fegrow/builder.py
12 13 14 15 16 17 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 54 55 56 57 58 59 60 61 62 63 |
|
split
#
split(molecule, splitting_atom, keep_neighbour_idx=None)
Return the smaller part of the molecule or one that that contains the prespecified atom.
:param molecule: RDKit Molecule :param splitting_atom: RDKit Atom, the growing vector used to divide the molecule into submolecules. :param splitting_atom: The index of the neighbouring atom on the side of the molecule that should be kept as the scaffold. :return:
Source code in fegrow/builder.py
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 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 121 122 123 124 |
|
merge_R_group
#
merge_R_group(scaffold, RGroup, replace_index, keep_cue_idx=None)
function originally copied from https://github.com/molecularsets/moses/blob/master/moses/baselines/combinatorial.py
Source code in fegrow/builder.py
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 |
|
get_attachment_atom
#
get_attachment_atom(R_group)
In the R-group or a linker, search for the position of the attachment point (R atom) and extract the atom (currently only single bond supported). In case of the linker, the R1 atom is selected. rgroup: fragment passed as rdkit molecule return: tuple (ratom, ratom_neighbour), where the ratom_neighbour is the surviving atom
Source code in fegrow/builder.py
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 |
|
is_linker
#
is_linker(rmol)
Check if the molecule is a linker by checking if it has 2 R-group points
Source code in fegrow/builder.py
255 256 257 258 259 260 261 262 263 264 265 |
|