[PyMOL] RMS over a MD trajectory.

2015-05-06 Thread Albert Solernou
Hi,
I am trying to compute the RMS between a PDB file and a Gromacs 
trajectory. I can see that align does things correctly when:
  align trj, pdb1, mobile_state=1
i. e., when I align the first snapshot of the trajectory with the PDB 
file. I also understand that PyMOL does compute the RMS along the 
trajectory if I simply:
  align trj, pdb1
as it is told in:
  http://www.pymolwiki.org/index.php/Align
However, I am unable to get the list of RMS values printed out. How 
could I do that?

Thanks,
Albert

-- 
-
   Dr Albert Solernou
   EPSRC Research Fellow,
   Department of Physics and Astronomy,
   University of Leeds
   Tel: +44 (0)1133 431451


--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
PyMOL-users mailing list (PyMOL-users@lists.sourceforge.net)
Info Page: https://lists.sourceforge.net/lists/listinfo/pymol-users
Archives: http://www.mail-archive.com/pymol-users@lists.sourceforge.net


[PyMOL] Modified DNA bases

2015-05-06 Thread Werther, Rachel A
Is there a way to mutate a cytosine to 5-methylcytosine in Pymol?  Can it be 
done using the GUI?
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
PyMOL-users mailing list (PyMOL-users@lists.sourceforge.net)
Info Page: https://lists.sourceforge.net/lists/listinfo/pymol-users
Archives: http://www.mail-archive.com/pymol-users@lists.sourceforge.net

Re: [PyMOL] Modified DNA bases

2015-05-06 Thread Osvaldo Martin
Hi Rachel,

You can do it using the PyMOL built-in Builder
http://www.pymolwiki.org/index.php/Builder

Cheers,
Osvaldo.


On Tue, May 5, 2015 at 2:18 PM, Werther, Rachel A rwert...@fredhutch.org
wrote:

 Is there a way to mutate a cytosine to 5-methylcytosine in Pymol?  Can it
 be done using the GUI?


 --
 One dashboard for servers and applications across Physical-Virtual-Cloud
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 ___
 PyMOL-users mailing list (PyMOL-users@lists.sourceforge.net)
 Info Page: https://lists.sourceforge.net/lists/listinfo/pymol-users
 Archives: http://www.mail-archive.com/pymol-users@lists.sourceforge.net

​
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
PyMOL-users mailing list (PyMOL-users@lists.sourceforge.net)
Info Page: https://lists.sourceforge.net/lists/listinfo/pymol-users
Archives: http://www.mail-archive.com/pymol-users@lists.sourceforge.net

Re: [PyMOL] RMS over a MD trajectory.

2015-05-06 Thread Thomas Holder
Hi Albert,

Please pay attention to the difference between all-atom RMSD and RMSD after 
outlier rejection.
http://pymolwiki.org/index.php/Align#RMSD

If your trj and pdb1 have identical topology and matching atom identifiers, 
then you can also use cmd.rms().
http://pymolwiki.org/index.php/Rms

Cheers,
  Thomas

On 06 May 2015, at 11:56, Albert Solernou a.soler...@leeds.ac.uk wrote:

 Terribly useful Carsten!
 
 I could easily do a loop and get the RMS along the trajectory:
  k = []
  for i in range(1,101): k.append(cmd.align(trj,pdb1,mobile_state=i))
  for i in range(100): print k[i][0]
 
 Cheers,
 Albert
 
 
 On 05/06/2015 04:20 PM, Schubert, Carsten [JRDUS] wrote:
 Hi Al,
 
 you would need to go through the Python API:
 
 python
 rms=cmd.align(mobCA,tarCA, quiet=0)
 print rms
 python end
 
 rms contains a tuple with various parameters related to the superposition. 
 The first value in the tuple i.e. rms[0] should be the RMS value.
 
 HTH
 
  Carsten
 
 -Original Message-
 From: Albert Solernou [mailto:a.soler...@leeds.ac.uk]
 Sent: Wednesday, May 06, 2015 8:32 AM
 To: pymol-users@lists.sourceforge.net
 Subject: [PyMOL] RMS over a MD trajectory.
 
 Hi,
 I am trying to compute the RMS between a PDB file and a Gromacs trajectory. 
 I can see that align does things correctly when:
   align trj, pdb1, mobile_state=1
 i. e., when I align the first snapshot of the trajectory with the PDB file. 
 I also understand that PyMOL does compute the RMS along the trajectory if I 
 simply:
   align trj, pdb1
 as it is told in:
   http://www.pymolwiki.org/index.php/Align
 However, I am unable to get the list of RMS values printed out. How could I 
 do that?
 
 Thanks,
 Albert
 
 --
 -
Dr Albert Solernou
EPSRC Research Fellow,
Department of Physics and Astronomy,
University of Leeds
Tel: +44 (0)1133 431451

-- 
Thomas Holder
PyMOL Principal Developer
Schrödinger, Inc.


--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
PyMOL-users mailing list (PyMOL-users@lists.sourceforge.net)
Info Page: https://lists.sourceforge.net/lists/listinfo/pymol-users
Archives: http://www.mail-archive.com/pymol-users@lists.sourceforge.net


Re: [PyMOL] Difficulty with Pymol segfault in CentOS 7 VM

2015-05-06 Thread Thomas Holder
Hi Derek,

Before you load anything, do:
PyMOL set use_shaders, 0

You will still see the flickering issue, but PyMOL will not crash.

I'm not up-to-date with the situation in VMware, but in Parallels you have to 
install the Parallels-Tools in the client OS to get usable graphics. So it's 
basically a graphics driver issue.

Cheers,
  Thomas

On 05 May 2015, at 18:18, Derek Ashley Thomas derekatho...@gmail.com wrote:

 Hello,
 
 I have recently installed Pymol 1.7.6 (also tested with 1.7.4 and 1.6.0) 
 using gcc 4.8.3-9 on CentOS 7. The operating system is installed in VMware 
 workstation 10.0.5 with hardware acceleration enabled. I installed the 
 scripts and modules in an independent directory as described here:
 http://www.pymolwiki.org/index.php/Linux_Install
 
 Pymol starts up and appears to run fine, but anytime I quit or load any XYZ 
 file, the program quits unexpedidly and claims there is a segmentation fault. 
 The Representations demo also causes the problem. I am uncertain where to 
 get further details to pinpoint the library causing the fault, but I would 
 like some advice to see if there is anything I can do to correct the problem. 
 I attempted mono and many of the commandline options, but nothing is helping.
 
 Interestingly, I ran the pymol benchmark tool from the commandline, which 
 does not cause a segfault. In fact, after opening pymol using the `-b` flag, 
 I can then load any XYZ file without segfault. However, the view keeps 
 blinking during movement. It may also be of interest to note that I have used 
 opencascade without any problems as a 3d rendering and cad visualization 
 software on this same VM.
 
 Thank you,
 Derek Thomas

-- 
Thomas Holder
PyMOL Principal Developer
Schrödinger, Inc.
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
PyMOL-users mailing list (PyMOL-users@lists.sourceforge.net)
Info Page: https://lists.sourceforge.net/lists/listinfo/pymol-users
Archives: http://www.mail-archive.com/pymol-users@lists.sourceforge.net


Re: [PyMOL] RMS over a MD trajectory.

2015-05-06 Thread Schubert, Carsten [JRDUS]
Hi Al,

you would need to go through the Python API:

python
rms=cmd.align(mobCA,tarCA, quiet=0)
print rms
python end

rms contains a tuple with various parameters related to the superposition. The 
first value in the tuple i.e. rms[0] should be the RMS value.

HTH 

Carsten

-Original Message-
From: Albert Solernou [mailto:a.soler...@leeds.ac.uk] 
Sent: Wednesday, May 06, 2015 8:32 AM
To: pymol-users@lists.sourceforge.net
Subject: [PyMOL] RMS over a MD trajectory.

Hi,
I am trying to compute the RMS between a PDB file and a Gromacs trajectory. I 
can see that align does things correctly when:
  align trj, pdb1, mobile_state=1
i. e., when I align the first snapshot of the trajectory with the PDB file. I 
also understand that PyMOL does compute the RMS along the trajectory if I 
simply:
  align trj, pdb1
as it is told in:
  http://www.pymolwiki.org/index.php/Align
However, I am unable to get the list of RMS values printed out. How could I do 
that?

Thanks,
Albert

--
-
   Dr Albert Solernou
   EPSRC Research Fellow,
   Department of Physics and Astronomy,
   University of Leeds
   Tel: +44 (0)1133 431451


--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
PyMOL-users mailing list (PyMOL-users@lists.sourceforge.net)
Info Page: https://lists.sourceforge.net/lists/listinfo/pymol-users
Archives: http://www.mail-archive.com/pymol-users@lists.sourceforge.net

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
PyMOL-users mailing list (PyMOL-users@lists.sourceforge.net)
Info Page: https://lists.sourceforge.net/lists/listinfo/pymol-users
Archives: http://www.mail-archive.com/pymol-users@lists.sourceforge.net


Re: [PyMOL] RMS over a MD trajectory.

2015-05-06 Thread Albert Solernou
Terribly useful Carsten!

I could easily do a loop and get the RMS along the trajectory:
  k = []
  for i in range(1,101): k.append(cmd.align(trj,pdb1,mobile_state=i))
  for i in range(100): print k[i][0]

Cheers,
Albert


On 05/06/2015 04:20 PM, Schubert, Carsten [JRDUS] wrote:
 Hi Al,

 you would need to go through the Python API:

 python
 rms=cmd.align(mobCA,tarCA, quiet=0)
 print rms
 python end

 rms contains a tuple with various parameters related to the superposition. 
 The first value in the tuple i.e. rms[0] should be the RMS value.

 HTH

   Carsten

 -Original Message-
 From: Albert Solernou [mailto:a.soler...@leeds.ac.uk]
 Sent: Wednesday, May 06, 2015 8:32 AM
 To: pymol-users@lists.sourceforge.net
 Subject: [PyMOL] RMS over a MD trajectory.

 Hi,
 I am trying to compute the RMS between a PDB file and a Gromacs trajectory. I 
 can see that align does things correctly when:
align trj, pdb1, mobile_state=1
 i. e., when I align the first snapshot of the trajectory with the PDB file. I 
 also understand that PyMOL does compute the RMS along the trajectory if I 
 simply:
align trj, pdb1
 as it is told in:
http://www.pymolwiki.org/index.php/Align
 However, I am unable to get the list of RMS values printed out. How could I 
 do that?

 Thanks,
 Albert

 --
 -
 Dr Albert Solernou
 EPSRC Research Fellow,
 Department of Physics and Astronomy,
 University of Leeds
 Tel: +44 (0)1133 431451


 --
 One dashboard for servers and applications across Physical-Virtual-Cloud
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 ___
 PyMOL-users mailing list (PyMOL-users@lists.sourceforge.net)
 Info Page: https://lists.sourceforge.net/lists/listinfo/pymol-users
 Archives: http://www.mail-archive.com/pymol-users@lists.sourceforge.net

-- 
-
   Dr Albert Solernou
   EPSRC Research Fellow,
   Department of Physics and Astronomy,
   University of Leeds
   Tel: +44 (0)1133 431451


--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
PyMOL-users mailing list (PyMOL-users@lists.sourceforge.net)
Info Page: https://lists.sourceforge.net/lists/listinfo/pymol-users
Archives: http://www.mail-archive.com/pymol-users@lists.sourceforge.net