I'm using Pymol to measure the distance between two atoms of a nucleic acid. I have a pdb. file from molecular dynamics calculation. When I open that file in pymol I have multiple states of the molecule. I want to measure the distance between two specific atoms and for each state, and export the distances to a file. Then I can visualise the distribution in distance. Can anyone please suggest a method to do this using pymol.
measure distance between two atoms, in each state, in pymol
453 Views Asked by gwarr At
1
There are 1 best solutions below
Related Questions in PYTHON
- php Variable name must change in for loop
- register_shutdown_function is not getting called
- Query returning zero rows despite entries existing
- Retrieving *number* pages by page id
- Automatically closing tags in form input?
- How to resize images with PHP PARSE SDK
- how to send email from localhost using codeigniter?
- Mariadb max Error while sending QUERY packet PID
- Multiusers login redirect different page in php
- Imaginary folder when I use "DirectoryIterator" in PHP?
Related Questions in BIOINFORMATICS
- php Variable name must change in for loop
- register_shutdown_function is not getting called
- Query returning zero rows despite entries existing
- Retrieving *number* pages by page id
- Automatically closing tags in form input?
- How to resize images with PHP PARSE SDK
- how to send email from localhost using codeigniter?
- Mariadb max Error while sending QUERY packet PID
- Multiusers login redirect different page in php
- Imaginary folder when I use "DirectoryIterator" in PHP?
Related Questions in PYMOL
- php Variable name must change in for loop
- register_shutdown_function is not getting called
- Query returning zero rows despite entries existing
- Retrieving *number* pages by page id
- Automatically closing tags in form input?
- How to resize images with PHP PARSE SDK
- how to send email from localhost using codeigniter?
- Mariadb max Error while sending QUERY packet PID
- Multiusers login redirect different page in php
- Imaginary folder when I use "DirectoryIterator" in PHP?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
my attempt , code using
1m82.pdb
as example molecule anddistance("dist_1m82" , "/1m82/A/A/U`22/P" , "/1m82/A/A/U`22/N1" , mode = 0)
as distance command (you could useget_distance
if you don't want/need to create a distance object:output:
picture , distances are drawn as light yellow dashed lines :
As per the
part of your question, I need to create a
.py
file like:runnable.py
:then add at the end of my first script these lines :
of course
runnable.py
is in the same folder of my main scriptthis will get you an extra window a matplotlib one like this one:
where, this need to be checked you'll find the distribution of the calculated distance.
Unfortunately you get an Error too, better a warning like:
but at least it'll run fast.
Trying to put the
runnable.py
inside main script or reverting to use :from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg
will result in:
with the window showinh the right histogram (the one above), at this point a
pymol
window very slow to load and sending out the message above tens of time.I guess this second part needs more time to be answered.
Addendum
redefining
runnable.py
asrunnable_2.py
so that my script carries:and
runnable_2.py
, copied and adapted from https://www.pythonguis.com/tutorials/plotting-matplotlib/is:I get the histogram depicted above (now being a PyMOL window , not a matplotlib one) without any sort of error.
While using
from pymol.Qt import QtWidgets, QtCore
and therunnable_2.py
QWidgets inside the main script (so not started bycmd.do('run
, ...)`keeps being slow to present the histogram and carries the:
I guess I am missing something like this post for pymol using PyQt:
Create a new Tk window/thread in the PyMOL session and output matplotlib graph on it