<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Hi Thiru,<div><span class="Apple-tab-span" style="white-space:pre">  </span>The short answer is no.  I have such a command on my to-do list, but it hasn't happened yet.  So you would have to resort to Python.  So a script like this would write areaSAS and areasSES to a file named ~/out for example:</div><div><br></div><div>from chimera import openModels, Molecule</div><div>import os</div><div>out = open(os.path.expanduser("~/out", "w"))</div><div>for m in openModels.list(modelTypes=[Molecule]):</div><div><span class="Apple-tab-span" style="white-space:pre"> </span>for r in m.residues:</div><div><span class="Apple-tab-span" style="white-space:pre">         </span>print>>out, r, r.areaSAS, r.areaSES</div><div>out.close()</div><div><br></div><div>You could put that in a file (say ~/getArea.py) and then run it with "open ~/getArea.py".</div><div><br></div><div>--Eric</div><div><br><div><div>On Oct 1, 2009, at 2:08 PM, Thiruvarangan Ramaraj wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><table cellspacing="0" cellpadding="0" border="0"><tbody><tr><td valign="top" style="font: inherit;">Hi Elaine,<br><br>Thanks for your reply. I figured out how to save it using the GUI, but I was wondering if there is a command line option to accomplish this. Sorry I should have made my question clear.<br><br>Thank You.<br><br>-Thiru<br><br>--- On <b>Thu, 10/1/09, Elaine Meng <i><<a href="mailto:meng@cgl.ucsf.edu">meng@cgl.ucsf.edu</a>></i></b> wrote:<br><blockquote style="border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;"><br>From: Elaine Meng <<a href="mailto:meng@cgl.ucsf.edu">meng@cgl.ucsf.edu</a>><br>Subject: Re: [Chimera-users] Solvent Accessible Surface Area<br>To: "Thiruvarangan Ramaraj" <<a href="mailto:thiruvaranganr@yahoo.com">thiruvaranganr@yahoo.com</a>><br>Cc: "<a href="mailto:chimera-users@cgl.ucsf.edu">chimera-users@cgl.ucsf.edu</a> BB" <<a href="mailto:chimera-users@cgl.ucsf.edu">chimera-users@cgl.ucsf.edu</a>><br>Date: Thursday, October 1, 2009, 2:57 PM<br><br><div class="plainMail">Hi Thiru,<br>You can save attribute values to a file from the Render by Attribute tool. Start that tool (under Tools... Depiction, for example), then choose "File.. Save Attributes" from its menu.  In the resulting dialog, you can specify which attribute you want to save.<br><br>General information on attributes:<br><<a href="http://www.cgl.ucsf.edu/chimera/docs/ContributedSoftware/defineattrib/defineattrib.html#attribdef" target="_blank">http://www.cgl.ucsf.edu/chimera/docs/ContributedSoftware/defineattrib/defineattrib.html#attribdef</a>><br><br>Saving attributes:<br><<a href="http://www.cgl.ucsf.edu/chimera/docs/ContributedSoftware/render/render.html#saving" target="_blank">http://www.cgl.ucsf.edu/chimera/docs/ContributedSoftware/render/render.html#saving</a>><br><br>I hope this helps,<br>Elaine<br>-----<br>Elaine C. Meng, Ph.D.<br>UCSF Computer Graphics Lab (Chimera team) and Babbitt Lab<br>Department of Pharmaceutical Chemistry<br>University of California, San Francisco<br><br>On Oct 1, 2009, at 1:39 PM, Thiruvarangan Ramaraj wrote:<br><br>> Hi Elaine,<br>> Thanks For your help.<br>> Just another question, Where are the values for attributes areaSAS and areaSES stored, is there a way to extract these values for the residues and write it to a file.<br>> Thank You<br>> -Thiru<br><br></div></blockquote></td></tr></tbody></table><br>       _______________________________________________<br>Chimera-users mailing list<br><a href="mailto:Chimera-users@cgl.ucsf.edu">Chimera-users@cgl.ucsf.edu</a><br>http://www.cgl.ucsf.edu/mailman/listinfo/chimera-users<br></blockquote></div><br></div></body></html>