12 01 2010 chemoinformatics Python pluto Tweet
こんな感じで。 titleとかはmol.title("newtitle")にしたほうがいいのかこのままでいいのか決めかねているのでそのうちちゃんと考える。
エタンをエチレンに変えてみた
>>> from pluto import *
>>> mol = Molecule.readstring("CC\tethane")
>>> mol.bond([1,2]).order(2)
>>> mol.title = "ethylene"
>>> mol.writestring()
'C=C\tethylene\n'
あとはmolecule同士のの結合とatomの追加と削除を実装すればよさそう