-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathget_total_charge.py
executable file
·34 lines (27 loc) · 1.07 KB
/
get_total_charge.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
import argparse
import sys
from rdkit import Chem
from rdkit.Chem import rdmolops
def calc(fname):
mol = Chem.MolFromMolFile(fname)
if mol:
charge = rdmolops.GetFormalCharge(mol)
else:
sys.stderr.write('Molecule from file {} cannot be parsed'.format(fname))
return None
return charge
def main():
parser = argparse.ArgumentParser(description='''Returns the formal charge for the molecule using RDKiT''')
parser.add_argument('-i', '--input', metavar='FILENAME', required=True,
help='input file with compound. Supported formats: *.mol.')
parser.add_argument('-o', '--output', metavar='FILENAME', required=False, default=None,
help='Output text file. If omitted output will be in stdout.')
args = parser.parse_args()
formal_charge = calc(args.input)
if args.output is None:
sys.stdout.write(str(formal_charge))
else:
with open(args.output, 'a') as out:
out.write('\t'.join([args.input, str(formal_charge)])+'\n')
if __name__ == '__main__':
main()