In [1]:
import sqlite3
In [3]:
conn = sqlite3.connect('reactionroute.db')
In [4]:
c = conn.cursor()
In [6]:
for row in c.execute('select * from jobArchive'):
print row
In [10]:
from GaussianHelper import *
In [8]:
ls
In [9]:
cd search
In [11]:
molDict = logParser('gaussian/CC[CH2+].[Br-]0.log')
In [12]:
molDict
Out[12]:
In [17]:
mol = pybel.readfile('log', 'gaussian/CC[CH2+].[Br-]0.log').next()
In [18]:
mol.write('can')
Out[18]:
In [19]:
import reactionroute
In [21]:
reactionroute.getCanonicalSmiles(mol.OBMol)
Out[21]:
In [22]:
mol.write('smi')
Out[22]:
In [23]:
mol.charge
Out[23]:
In [ ]: