Python wrapper around Bacting.
Based on the example from the Bacting page, you can do:
from pybacting import cdk
print(cdk.fromSMILES("COC"))Or you can use some of the more pythonic functions that wrap the functions
exposed through the pybacting.cdk object:
import pybacting
print(pybacting.from_smiles("COC"))Before installing, you'll need to make sure Maven (mvn) and Java 17 are available on your
path. If you're on mac, use brew install maven.
$ pip install pybactingInstall the latest code from GitHub:
$ pip install git+https://github.com/BlueObelisk/pybactingDownload and install from source in development mode:
$ git clone https://github.com/BlueObelisk/pybacting
$ cd pybacting
$ pip install --editable .