
2 Apr
2009
2 Apr
'09
8:23 p.m.
I was writing some python code involving PDB data. looking at pre-existing code involving PDB: m = om.open(pdb_path, 'PDB')[0] rlist = m.residues for r in rlist: lc = 'monomer residue %d' % (r.id.position) if r.isHelix: lc += ' HELIX' elif r.isSheet: lc += ' SHEET' I was trying to track down the data structure for r/rlist, to see if there are any other parameters I could use besides isHelix, isSheet, and id.position. where would that be located in the Chimera package? thanks, Matt