You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So i have performed the ligand-protein network by using commands:
net=LigNetwork.from_ifp(df, lmol,
# replace with `kind="frame", frame=0` for the other depictionkind="aggregate", threshold=.3,
rotation=270)
net.display()
i would like to know how to save this image?
Thank you
The text was updated successfully, but these errors were encountered:
It is not currently possible to save the network as an image, you can only save it as an HTML document by replacing net.display() with net.save("output.html"), and optional arguments for save include width="100%", height="500px", fontsize=20.
If you really need an image the only way is to take a screenshot.
### Added
- Improved the documentation on how to properly restrict interactions to ignore the protein backbone (Issue #22), how to fix the empty dataframe issue when no bond information is present in the PDB file (Issue #15), how to save the LigNetwork diagram (Issue #21), and some clarifications on using `fp.generate`
### Fixed
- Mixing residue type with interaction type in the interactive legend of the LigNetwork would incorrectly display/hide some residues on the canvas
- MOL2 files starting with a comment (`#`) would lead to an error
So i have performed the ligand-protein network by using commands:
i would like to know how to save this image?
Thank you
The text was updated successfully, but these errors were encountered: