Friends,<br><br>I have just begun to explore the chimera-python linkage. I loaded a pdb file using chimera.openModels function. Then i tried to loop through the residues and display atom information based on a condition.<br>
<br>>>>for r in mymodel.residues:                  <b>#this works for me</b><br>            if r.type=='ARG': print r.atoms<br><br>>>>for r in mymodel.residues:                <b>#this dose not work. I know there is a ARG residue with id 151.</b><br>
             if <a href="http://r.id">r.id</a>=='151': print r.atoms<br><br>I dnt understand how atom attributes are packaged within a residue. Kindly write me few examples of accessing atom information from a residue.<br>
<br>Thanks,<br>Bala<br><br><br>