Skip to content

Commit

Permalink
Moved molecule timeout to 8 sec, 30 is rediculous
Browse files Browse the repository at this point in the history
  • Loading branch information
tjkessler committed Jun 7, 2019
1 parent 757e2ad commit d7feab3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions padelpy/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


def from_smiles(smiles: str, output_csv: str=None, descriptors: bool=True,
fingerprints: bool=False, timeout: int=30) -> OrderedDict:
fingerprints: bool=False, timeout: int=8) -> OrderedDict:
''' from_smiles: converts SMILES string to QSPR descriptors/fingerprints
Args:
Expand Down Expand Up @@ -76,7 +76,7 @@ def from_smiles(smiles: str, output_csv: str=None, descriptors: bool=True,


def from_mdl(mdl_file: str, output_csv: str=None, descriptors: bool=True,
fingerprints: bool=False, timeout: int=30) -> list:
fingerprints: bool=False, timeout: int=8) -> list:
''' from_mdl: converts MDL file into QSPR descriptors/fingerprints;
multiple molecules may be represented in the MDL file
Expand Down

0 comments on commit d7feab3

Please sign in to comment.