-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathmols2pdb.py
executable file
·71 lines (55 loc) · 2.43 KB
/
mols2pdb.py
1
2
3
4
5
6
7
8
9
10
11
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
64
65
66
67
68
69
70
71
#!/usr/bin/env python3
# author : Alina Kutlushina
# date : 15.05.2020
# license : BSD-3
#==============================================================================
__author__ = 'alina'
import os
import argparse
import numpy as np
from rdkit import Chem
from rdkit.Chem import AllChem
from multiprocessing import Pool
from read_input import read_input
def read_molfiles(input, output_path):
for mol, mol_name in read_input(input):
yield mol, mol_name, output_path
def map_write_pdb(args):
return write_pdb_file(*args)
def write_pdb_file(mol, mol_name, output_path):
if mol.GetNumConformers() == 0 or not mol.GetConformer(0).Is3D():
mol = Chem.AddHs(mol)
AllChem.EmbedMolecule(mol)
else:
mol = Chem.AddHs(mol, addCoords=True)
mol.SetProp('_Name', mol_name)
Chem.MolToPDBFile(mol, os.path.join(output_path, mol_name + '.pdb'), flavor=4)
def convert_to_pdb(input, output_path, nprocess):
"""
1. Add hydrogens
2. Obtain a molecule coordinates if input molecules have 2D structures
"""
p = Pool(nprocess)
for _ in p.imap_unordered(map_write_pdb,
read_molfiles(input, output_path),
chunksize=10):
continue
def main():
parser = argparse.ArgumentParser(description='Convert input molecules to individual PDB files. '
'Hydrogens will be added and a random conformer will be generated '
'if the molecule does not have 3D coordinates.',
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument('-i', '--input', metavar='FILENAME', type=str, required=True,
help='input path to .smi or .sdf file')
parser.add_argument('-o', '--output_path', metavar='DIRNAME', type=str, required=True,
help='path to a folder where will store molecules in pdb format files')
parser.add_argument('-c', '--ncpu', type=int, default=1,
help='number of cpu to use for calculation.')
args = parser.parse_args()
output_path = args.output_path
os.makedirs(output_path, exist_ok=True)
convert_to_pdb(input=os.path.abspath(args.input),
output_path=os.path.abspath(output_path),
nprocess=args.ncpu)
if __name__ == '__main__':
main()