diff --git a/GetBox Plugin.py b/GetBox Plugin.py index 9bc5fa6..3d56299 100644 --- a/GetBox Plugin.py +++ b/GetBox Plugin.py @@ -34,6 +34,7 @@ def __init__(self): self.menuBar.addmenuitem('GetBox Plugin', 'command','GetBoxHelp',label = 'Advanced usage',command = lambda s=self : GetBoxHelp()) self.menuBar.addmenuitem('GetBox Plugin', 'command','AutoBox',label = 'Autodetect box',command = lambda s=self : autobox()) self.menuBar.addmenuitem('GetBox Plugin', 'command','GetBox',label = 'Get box from selection (sele) ', command = lambda s=self : getbox()) + self.menuBar.addmenuitem('GetBox Plugin', 'command','Remove HETATM',label = 'Remove HETATM ', command = lambda s=self : rmhet()) # to deal with print def printf(str): @@ -65,7 +66,10 @@ def GetBoxHelp(): * showbox [minX, maxX, minY, maxY, minZ, maxZ] this function creates a box based on the input axis, used to visualize box or amend box coordinate e.g. showbox 2,3,4,5,6,7 - + + * rmhet + remove HETATM, remove all HETATM in the screen + Notes: * If you have any questions or advice, please do not hesitate to contact me (mwxiao AT hnu DOT edu DOT cn), thank you!''' diff --git a/README.md b/README.md index ca9a01f..4e20fcc 100644 --- a/README.md +++ b/README.md @@ -145,7 +145,7 @@ cmd.select("ChaHet","hetatm & chain A") # 选中A链中小分子 cmd.show("sticks", "ChaHet") # 以stick模式显示小分子,以便于手动选定配体 getbox("ChaHet",extending) # 以配体几何中心为盒子中心,生成盒子,extending是指将配体盒子延长的大小 ``` -
+