Difference between revisions of "User:Hongbo zhu"

From PyMOLWiki
Jump to navigation Jump to search
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
Hongbo Zhu
 
Hongbo Zhu
  
Postdoctoral Researcher @ Structural Bioinformatics Group, BIOTEC, TU-Dresden, Germany.
+
Postdoctoral Researcher @ MPI for Developmental Biology, Tuebingen, Germany.
  
 
[http://www.pymolwiki.org/index.php/MSMS MSMS plugin for PyMOL]
 
[http://www.pymolwiki.org/index.php/MSMS MSMS plugin for PyMOL]
  
 
[http://www.pymolwiki.org/index.php/DSSP DSSP & Stride plugin for PyMOL]
 
[http://www.pymolwiki.org/index.php/DSSP DSSP & Stride plugin for PyMOL]
 +
 +
[[FetchLocal]]
 +
 +
hongbo(d o t)zhu(d o t)cn(a t)gmail
 +
 +
<source lang="python">
 +
""" To quickly check the structure of a protein in PyMOL,
 +
    you may just fetch/load it and display it as cartoon.
 +
    fetch_ac: Fetch as cartoon,
 +
    load_ac:  Load as cartoon.
 +
"""
 +
from pymol import cmd
 +
 +
def fetch_ac(*args, **kwargs):
 +
    """
 +
        Fetch structure and display it as cartoon.
 +
    """
 +
    cmd.fetch(*args, **kwargs)
 +
    cmd.show_as('cartoon')
 +
 +
def load_ac(*args, **kwargs):
 +
    """
 +
        Load structure as cartoon.
 +
    """
 +
    cmd.load(*args, **kwargs)
 +
    cmd.show_as('cartoon')
 +
 +
 +
cmd.extend("fetch_ac", fetch_ac)
 +
cmd.extend("load_ac", load_ac)
 +
</source>

Latest revision as of 07:50, 21 September 2012

Hongbo Zhu

Postdoctoral Researcher @ MPI for Developmental Biology, Tuebingen, Germany.

MSMS plugin for PyMOL

DSSP & Stride plugin for PyMOL

FetchLocal

hongbo(d o t)zhu(d o t)cn(a t)gmail

""" To quickly check the structure of a protein in PyMOL, 
    you may just fetch/load it and display it as cartoon. 
    fetch_ac: Fetch as cartoon, 
    load_ac:  Load as cartoon.
"""
from pymol import cmd

def fetch_ac(*args, **kwargs):
    """
        Fetch structure and display it as cartoon. 
    """
    cmd.fetch(*args, **kwargs)
    cmd.show_as('cartoon')

def load_ac(*args, **kwargs):
    """
        Load structure as cartoon. 
    """
    cmd.load(*args, **kwargs)
    cmd.show_as('cartoon')


cmd.extend("fetch_ac", fetch_ac)
cmd.extend("load_ac", load_ac)