<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">

<head>

<meta name=Generator content="Microsoft Word 12 (filtered medium)">
<style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EstiloCorreo17
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;}
@page Section1
        {size:612.0pt 792.0pt;
        margin:70.85pt 3.0cm 70.85pt 3.0cm;}
div.Section1
        {page:Section1;}
-->
</style>
<!--[if gte mso 9]><xml>
 <o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
 <o:shapelayout v:ext="edit">
  <o:idmap v:ext="edit" data="1" />
 </o:shapelayout></xml><![endif]-->
</head>

<body lang=ES link=blue vlink=purple>

<div class=Section1>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'>Dear all,<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'>I have no idea how complicated that would be and I don&#8217;t want to
increase your todo list, but I wonder if you could add a text entry in the
chimera .py file that you could acces through an editor window (integrated in
chimera would be perfect). I would find such thing extremely useful.<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'>Best,<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'>JD<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0cm 0cm 0cm'>

<p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>De:</span></b><span
style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'> Jean-Didier
Maréchal [mailto:jeandidier.marechal@gmail.com] <br>
<b>Enviado el:</b> jueves, 13 de noviembre de 2008 9:23<br>
<b>Para:</b> Eric Pettersen<br>
<b>CC:</b> chimera-dev@cgl.ucsf.edu<br>
<b>Asunto:</b> Re: [chimera-dev] python equivalent for Axis<o:p></o:p></span></p>

</div>

<p class=MsoNormal><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='margin-bottom:12.0pt'>Hi Eric, <br>
thanks a lot for this that's just perfect! <br>
<br>
I'm afraid that I have another question. Could you tell me what is the easiest
way to rotate only one model or a given selection of a model around an axis
passing through its center of rotation?<br>
<br>
What I am trying to do is to rotate only one model (or a subset of one model :a
water molecule,&nbsp; a ligand etc..) around one of these calculated axis.
Basically, I am trying to pilot in my script a similar thing that the
&quot;movement--&gt; movement mouse mode&quot; does with the &quot;move
selection mode&quot;. I thought I had clear in mind how of deal with Xform, but
I can't get work and get mixed up. I looked at the MoveSelection scripts for
inspiring me but I get stuck. <br>
<br>
Thanks for any help<br>
<br>
JD<br>
&nbsp;<o:p></o:p></p>

<div>

<p class=MsoNormal>2008/11/10 Eric Pettersen &lt;<a
href="mailto:pett@cgl.ucsf.edu" target="_blank">pett@cgl.ucsf.edu</a>&gt;<o:p></o:p></p>

<p class=MsoNormal>Hi JD,<br>
&nbsp; &nbsp; &nbsp; &nbsp;The StructMeasure.bestLine routine almost does what
you want, but although it returns the eigenvectors, it doesn't return the
eigenvalues (!) which makes it kind of useless. &nbsp;I'll be fixing that in
tonight's build. &nbsp;At any rate, you can just conscript the underlying code:
&nbsp;if your list of atoms is in the variable &quot;atoms&quot;, then this
will get you the eigenvectors/values:<br>
<br>
&nbsp; &nbsp; &nbsp; &nbsp;coords = chimera.numpyArrayFromAtoms(atoms)<br>
&nbsp; &nbsp; &nbsp; &nbsp;centroid = coords.mean(0)<br>
&nbsp; &nbsp; &nbsp; &nbsp;centered = coords - centroid<br>
&nbsp; &nbsp; &nbsp; &nbsp;from numpy.linalg import svd<br>
&nbsp; &nbsp; &nbsp; &nbsp;ignore, vals, vecs = svd(centered)<br>
<span style='color:#888888'><br>
--Eric</span><o:p></o:p></p>

<div>

<div>

<p class=MsoNormal style='margin-bottom:12.0pt'><br>
<br>
On Nov 8, 2008, at 7:00 AM, Dr. Jean-Didier Maréchal wrote:<o:p></o:p></p>

<p class=MsoNormal style='margin-bottom:12.0pt'>Dear all,<br>
<br>
Sorry to bother you again with a similar kind of question, but I'd like my<br>
script to stock in an array the three resulting vectors of the new<br>
implemented calculation of the axes for a given set of selected atoms. The<br>
truth is that I find the right python call for the axis function. I imported<br>
StructMeasure and tried different ways around but I can't find my way<br>
through. I don't know if I don't give the wrong arguments or have the wrong<br>
syntaxes.<br>
<br>
Thanks a lot for any help,<br>
<br>
JD<br>
<br>
<br>
-----Mensaje original-----<br>
De: <a href="mailto:chimera-dev-bounces@cgl.ucsf.edu" target="_blank">chimera-dev-bounces@cgl.ucsf.edu</a><br>
[mailto:<a href="mailto:chimera-dev-bounces@cgl.ucsf.edu" target="_blank">chimera-dev-bounces@cgl.ucsf.edu</a>]
En nombre de<br>
<a href="mailto:chimera-dev-request@cgl.ucsf.edu" target="_blank">chimera-dev-request@cgl.ucsf.edu</a><br>
Enviado el: jueves, 06 de noviembre de 2008 21:00<br>
Para: <a href="mailto:chimera-dev@cgl.ucsf.edu" target="_blank">chimera-dev@cgl.ucsf.edu</a><br>
Asunto: Chimera-dev Digest, Vol 58, Issue 2<br>
<br>
Send Chimera-dev mailing list submissions to<br>
&nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:chimera-dev@cgl.ucsf.edu"
target="_blank">chimera-dev@cgl.ucsf.edu</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
&nbsp; &nbsp; &nbsp; &nbsp;<a
href="http://www.cgl.ucsf.edu/mailman/listinfo/chimera-dev" target="_blank">http://www.cgl.ucsf.edu/mailman/listinfo/chimera-dev</a><br>
or, via email, send a message with subject or body 'help' to<br>
&nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:chimera-dev-request@cgl.ucsf.edu"
target="_blank">chimera-dev-request@cgl.ucsf.edu</a><br>
<br>
You can reach the person managing the list at<br>
&nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:chimera-dev-owner@cgl.ucsf.edu"
target="_blank">chimera-dev-owner@cgl.ucsf.edu</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of Chimera-dev digest...&quot;<br>
<br>
<br>
Today's Topics:<br>
<br>
&nbsp;1. atom spec. in BNF (David A. C. Beck)<br>
&nbsp;2. Re: atom spec. in BNF (Eric Pettersen)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Wed, 5 Nov 2008 14:03:02 -0800 (PST)<br>
From: &quot;David A. C. Beck&quot; &lt;<a href="mailto:dacb@u.washington.edu"
target="_blank">dacb@u.washington.edu</a>&gt;<br>
Subject: [chimera-dev] atom spec. in BNF<br>
To: <a href="mailto:chimera-dev@cgl.ucsf.edu" target="_blank">chimera-dev@cgl.ucsf.edu</a><br>
Message-ID:<br>
&nbsp; &nbsp; &nbsp; &nbsp;&lt;<a
href="mailto:Pine.LNX.4.64.0811051401230.9881@homer23.u.washington.edu"
target="_blank">Pine.LNX.4.64.0811051401230.9881@homer23.u.washington.edu</a>&gt;<br>
Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed<br>
<br>
Does anyone have BNF notation for the atom specification 'language' used<br>
by Chimera? &nbsp;Thanks,<br>
&nbsp;- David<br>
<br>
--<br>
David A. C. Beck, Ph.D.<br>
<a href="mailto:dacb@u.washington.edu" target="_blank">dacb@u.washington.edu</a><br>
Valerie Daggett Laboratory<br>
University of Washington, Seattle<br>
<br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Wed, 5 Nov 2008 14:26:16 -0800<br>
From: Eric Pettersen &lt;<a href="mailto:pett@cgl.ucsf.edu" target="_blank">pett@cgl.ucsf.edu</a>&gt;<br>
Subject: Re: [chimera-dev] atom spec. in BNF<br>
To: &quot;David A. C. Beck&quot; &lt;<a href="mailto:dacb@u.washington.edu"
target="_blank">dacb@u.washington.edu</a>&gt;<br>
Cc: <a href="mailto:chimera-dev@cgl.ucsf.edu" target="_blank">chimera-dev@cgl.ucsf.edu</a><br>
Message-ID: &lt;<a
href="mailto:88F81EBE-CCD4-495F-9316-FEA5D095965D@cgl.ucsf.edu" target="_blank">88F81EBE-CCD4-495F-9316-FEA5D095965D@cgl.ucsf.edu</a>&gt;<br>
Content-Type: text/plain; charset=&quot;us-ascii&quot;<br>
<br>
On Nov 5, 2008, at 2:03 PM, David A. C. Beck wrote:<o:p></o:p></p>

<p class=MsoNormal>Does anyone have BNF notation for the atom specification
'language'<br>
used<br>
by Chimera?<o:p></o:p></p>

<p class=MsoNormal><br>
I don't think so. &nbsp;What's the use case here? &nbsp;If you're in the
context<br>
of Chimera, you should be able to use Chimera's own atom-spec parsing<br>
facilities, e.g. chimera.specifier.evalSpec(). &nbsp;Outside of Chimera,<br>
I'm aware of a pretty extensive but not totally complete parser in<br>
perl: &nbsp;Chemistry::MidasPattern - Select atoms in macromolecules -<br>
<a href="http://search.cpan.org" target="_blank">search.cpan.org</a><br>
<br>
--Eric<br>
<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp;Eric Pettersen<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp;UCSF Computer Graphics Lab<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp;<a href="http://www.cgl.ucsf.edu" target="_blank">http://www.cgl.ucsf.edu</a><br>
<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL:<br>
<a
href="http://www.cgl.ucsf.edu/pipermail/chimera-dev/attachments/20081105/4e237100/"
target="_blank">http://www.cgl.ucsf.edu/pipermail/chimera-dev/attachments/20081105/4e237100/</a><br>
attachment-0001.html<br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
Chimera-dev mailing list<br>
<a href="mailto:Chimera-dev@cgl.ucsf.edu" target="_blank">Chimera-dev@cgl.ucsf.edu</a><br>
<a href="http://www.cgl.ucsf.edu/mailman/listinfo/chimera-dev" target="_blank">http://www.cgl.ucsf.edu/mailman/listinfo/chimera-dev</a><br>
<br>
<br>
End of Chimera-dev Digest, Vol 58, Issue 2<br>
******************************************<br>
<br>
_______________________________________________<br>
Chimera-dev mailing list<br>
<a href="mailto:Chimera-dev@cgl.ucsf.edu" target="_blank">Chimera-dev@cgl.ucsf.edu</a><br>
<a href="http://www.cgl.ucsf.edu/mailman/listinfo/chimera-dev" target="_blank">http://www.cgl.ucsf.edu/mailman/listinfo/chimera-dev</a><o:p></o:p></p>

<p class=MsoNormal><o:p>&nbsp;</o:p></p>

</div>

</div>

</div>

<p class=MsoNormal><o:p>&nbsp;</o:p></p>

</div>

</body>

</html>