datamol.io
¶
read_csv(urlpath, smiles_column=None, mol_column='mol', **kwargs)
¶
Read a CSV file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
urlpath |
Union[str, os.PathLike, IO]
|
Path to a file or a file-like object. Path can be remote or local. |
required |
smiles_column |
Optional[str]
|
Use this column to build a mol column. |
None
|
mol_column |
str
|
Name to give to the mol column. If not None a mol column will be build. Avoid when loading a very large file. |
'mol'
|
**kwargs |
Any
|
Arguments to pass to |
{}
|
Returns:
Name | Type | Description |
---|---|---|
df |
pd.DataFrame
|
a |
Source code in datamol/io.py
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 |
|
read_excel(urlpath, sheet_name=0, smiles_column=None, mol_column='mol', **kwargs)
¶
Read an excel file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
urlpath |
Union[str, os.PathLike, IO]
|
Path to a file or a file-like object. Path can be remote or local. |
required |
sheet_name |
Optional[Union[str, int, list]]
|
see |
0
|
mol_column |
str
|
Name to give to the mol column. If not None a mol column will be build. Avoid when loading a very large file. |
'mol'
|
mol_column |
str
|
name to give to the mol column. |
'mol'
|
**kwargs |
Any
|
Arguments to pass to |
{}
|
Returns:
Name | Type | Description |
---|---|---|
df |
pd.DataFrame
|
a |
Source code in datamol/io.py
54 55 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 81 |
|
read_molblock(molblock, sanitize=True, strict_parsing=True, remove_hs=True, fail_if_invalid=False)
¶
Read a Mol block.
Note that potential molecule properties are not read.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
molblock |
str
|
String containing the Mol block. |
required |
sanitize |
bool
|
Whether to sanitize the molecules. |
True
|
strict_parsing |
bool
|
If set to false, the parser is more lax about correctness of the contents. |
True
|
remove_hs |
bool
|
Whether to remove the existing hydrogens in the SDF files. |
True
|
fail_if_invalid |
bool
|
If set to true, the parser will raise an exception if the molecule is invalid instead of returning None. |
False
|
Source code in datamol/io.py
197 198 199 200 201 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 |
|
read_sdf(urlpath, sanitize=True, as_df=False, smiles_column='smiles', mol_column=None, include_private=False, include_computed=False, strict_parsing=True, remove_hs=True)
¶
Read an SDF file.
Note: This function is meant to be used with dataset that fit in-memory.
For a more advanced usage we suggest you to use directly Chem.ForwardSDMolSupplier
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
urlpath |
Union[str, os.PathLike, IO]
|
Path to a file or a file-like object. Path can be remote or local. |
required |
sanitize |
bool
|
Whether to sanitize the molecules. |
True
|
as_df |
bool
|
Whether to return a list mol or a pandas DataFrame. |
False
|
smiles_column |
Optional[str]
|
Name of the SMILES column. Only relevant if |
'smiles'
|
mol_column |
Optional[str]
|
Name of the mol column. Only relevant if |
None
|
include_private |
bool
|
Include private properties in the columns. Only relevant if
|
False
|
include_computed |
bool
|
Include computed properties in the columns. Only relevant if
|
False
|
strict_parsing |
bool
|
If set to false, the parser is more lax about correctness of the contents. |
True
|
remove_hs |
bool
|
Whether to remove the existing hydrogens in the SDF files. |
True
|
Source code in datamol/io.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 121 122 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 |
|
read_smi(urlpath)
¶
Read a list of smiles from am .smi
file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
urlpath |
Union[str, pathlib.Path, io.IOBase, fsspec.core.OpenFile]
|
Path to a file or a file-like object. Path can be remote or local. Note: file-like object are not supported yet. |
required |
Source code in datamol/io.py
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 |
|
to_molblock(mol, include_stereo=True, conf_id=-1, kekulize=True, force_V3000=False)
¶
Convert a molecule to a mol block string.
Note that any molecule properties are lost.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
mol |
Mol
|
A molecule. |
required |
include_stereo |
bool
|
Toggles inclusion of stereochemical information in the output. |
True
|
conf_id |
int
|
Selects which conformation to output. |
-1
|
kekulize |
bool
|
Triggers kekulization of the molecule before it's written, as suggested by the MDL spec. |
True
|
force_V3000 |
bool
|
Force generation a V3000 mol block (happens automatically with more than 999 atoms or bonds). |
False
|
Source code in datamol/io.py
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 |
|
to_sdf(mols, urlpath, smiles_column='smiles', mol_column=None)
¶
Write molecules to a file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
mols |
Union[Mol, Sequence[Mol], pd.DataFrame]
|
a dataframe, a molecule or a list of molecule. |
required |
urlpath |
Union[str, os.PathLike, IO]
|
Path to a file or a file-like object. Path can be remote or local. |
required |
smiles_column |
Optional[str]
|
Column name to extract the molecule. |
'smiles'
|
mol_column |
Optional[str]
|
Column name to extract the molecule. It takes
precedence over |
None
|
Source code in datamol/io.py
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 |
|
to_smi(mols, urlpath, error_if_empty=False)
¶
Save a list of molecules in an .smi
file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
mols |
Sequence[Mol]
|
a list of molecules. |
required |
urlpath |
Union[str, os.PathLike, IO]
|
Path to a file or a file-like object. Path can be remote or local. |
required |
error_if_empty |
bool
|
whether to raise and error if the input list is empty. |
False
|
Source code in datamol/io.py
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 |
|
to_xlsx(mols, urlpath, smiles_column='smiles', mol_column='mol', mol_size=[300, 300])
¶
Write molecules to an Excel file with a molecule column as an RDKit rendered image.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
mols |
Union[Mol, Sequence[Mol], pd.DataFrame]
|
a dataframe, a molecule or a list of molecule. |
required |
urlpath |
Union[str, os.PathLike]
|
Path to a file or a file-like object. Path can be remote or local. |
required |
smiles_column |
Optional[str]
|
Column name to extract the molecule. |
'smiles'
|
mol_column |
str
|
Column name to extract the molecule. It takes
precedence over |
'mol'
|
Source code in datamol/io.py
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 |
|