-
net=fp.plot_lignetwork(ligand_mol, kind="aggregate", threshold=0.2, |
Beta Was this translation helpful? Give feedback.
Answered by
cbouy
Nov 27, 2023
Replies: 1 comment 1 reply
-
If you want to save the plot you have to use the net = LigNetwork.from_fingerprint(fp, lig_mol,
threshold=float(threshold),
rotation=270)
net.save(os.path.join(output_name + ".html"))
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
tjrong123
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you want to save the plot you have to use the
LigNetwork
class directly, like in your other issue #169:fp.plot_lignetwork
is only useful to display the plot in an interactive Jupyter Notebook, it doesn't return the underlyingLigNetwork
object