You are reading the documentation for version 1.3 of OpenStructure. You may also want to read the documentation for:
1.1
1.2
1.4
1.5
1.6
1.7
1.7.1
1.8
1.9
1.10
1.11
2.0
2.1
2.2
2.3
2.3.1
devel
dssp - Secondary structure assignment¶Introduction¶DSSP is a program developed by Wolfgang Kabsch and Chris Sander to assign secondary structure states to protein structures. The assignment is based on hydrogen bonding patterns and geometric features. The program can be downloaded from http://swift.cmbi.ru.nl/gv/dssp/. Examples¶The following example assigns secondary structure states to an entity by using the DSSP program. from ost.bindings import dssp
ent=io.LoadPDB('1ake.pdb')
dssp.AssignDSSP(ent)
Now we fetch structure information plus solvent accessibility for an entity using the mmCIF interface. from ost.bindings import dssp
ent=io.LoadMMCIF('1ake.cif')
dssp.AssignDSSP(ent, extract_burial_status=True)
for chain in ent.chains:
if chain.is_polypeptide:
for res in chain.residues:
print res.GetFloatProp('relative_solvent_accessibility')
DSSP bindings Usage¶
|
ContentsSearchEnter search terms or a module, class or function name. Previous topicbindings – Interfacing external programs Next topicblast - Search related sequences in databases You are here
|