Simple package to display molecules images in bokeh interactive charts.
Project description
MolBokeh
MolBokeh is a simple package for viewing the image of molecules in interactive graphics from the Bokeh package without the need to run a web application such as flask or dash in the backend, thus facilitating integration with other tools and codes.
Installation
pip3 install molbokeh
Simple usage
For more detailed usage examples, look the notebook at example/how_to_use.ipynb
or open in Google Colab (Opt1), Colab (Opt2)
import pandas as pd
from MolBokeh import MolBokeh
from bokeh.plotting import figure,show
from bokeh.models import ColumnDataSource
path = 'data.csv'
df = pd.read_csv(path)
source = ColumnDataSource(df)
fig = figure(width=600, height=500,tools="pan,box_zoom,wheel_zoom,zoom_in,zoom_out,reset,save,hover")
fig.scatter(x='MolWt', y='MolLogP', source=source, size=12,alpha=0.6)
## Adding molecules
fig = MolBokeh().add_molecule(fig=fig,
source=source,
smilesColName='Smiles_canon',
hoverAdditionalInfo=['MolWt','MolLogP','nRing','qed','TPSA'],
molSize=(100,100))
show(fig)
Parameters info
Parameter | Type | Default | Description |
---|---|---|---|
fig |
bokeh.plotting._figure.figure |
required | Bokeh plot object created from source(df) |
source |
bokeh.models.sources.ColumnDataSource |
required | Bokeh data type used to plot initial chart. |
smilesColName |
str |
required | Smiles column name in dataframe used to create source object |
hoverAdditionalInfo |
None or list |
None |
List of column names (variables) to be shown within the graphs hover. |
molSize |
tuple |
(150,150) |
Size of the image of the molecule to be shown within the hover, also changes the size of the hover frame |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
MolBokeh-1.0.1.tar.gz
(5.1 kB
view details)
Built Distribution
File details
Details for the file MolBokeh-1.0.1.tar.gz
.
File metadata
- Download URL: MolBokeh-1.0.1.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.8.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33c15fe1730df7e92af1a37dd90249ba45ac4e02f53cc5d25fb099fe3ad7b115 |
|
MD5 | 12684d5a5acdbed47b1ab9d6d58cfee1 |
|
BLAKE2b-256 | f4e29a2c1d36faf7c7282492070de9262c8dbfbea00dab1f1bf1c8e206d45d66 |
File details
Details for the file MolBokeh-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: MolBokeh-1.0.1-py3-none-any.whl
- Upload date:
- Size: 5.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.8.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ace28f90c244d066b4b0234f6d461ec1424c104eed0ff131c45613647606421 |
|
MD5 | 8d2cfaff3c775c81252ccdade7ba4c87 |
|
BLAKE2b-256 | ae8f2db9633940599bd46438fc654c48ab9636bb83947b5d3315ad623d028fdd |