Software
How to save high resolution images in Pymol using command line?

Previously, we have provided a tutorial on saving good-quality images using Pymol GUI. In this article, we are going to save high-resolution images using the Pymol commands.
Open Pymol by typing Pymol in a terminal or by double-clicking the shortcut or by launching the Pymol app. Now follow the steps explained below.
Opening an input file
Go to File --> Open --> Select an input PDB file.
Setting display
You can set some parameters such as background color, view, and so on. Details are provided in the previous article.
Saving image
You can also ‘draw‘ an image but the resolution will not be high. Therefore, we will use the ‘ray‘ command. But if you want to draw an image anyway then use the following command.
> draw 1600
1600 is the dimension of image, you can set it to any number.
Saving image with transparent background
> set ray_opaque_background, 0
> ray
> png /path/to/folder/ex.png, dpi=1000
For example, you want to save this image in ‘Downloads‘, then
> png /home/user/Downloads/ex.png, dpi=1000
If you are saving on Windows, then remember to use ‘\’ as shown below
> png path\to\folder\ex.png, dpi=1000
Saving image with background color
You can set the background color either by GUI (go to Display –> Background –> White) or by using the following command.
> bg_color white
Define any color in place of ‘white’ in the above command.
Now, let’s save the image with background color.
> set ray_opaque_background, 1
> ray
> png /path/to/folder/ex.png, dpi=1000
References
- The PyMOL Molecular Graphics System, Version 1.2r3pre, Schrödinger, LLC.
Software
How to install Kpax on Ubuntu (Linux)?

Kpax is a bioinformatics program to search and align protein structures [1]. It is currently available for Linux platforms only. In this article, we are going to install the latest version of Kpax (5.1.3) on Ubuntu (Linux). (more…)
Secondary structure
How to run do_dssp command (mkdssp) in Gromacs 2022?

In the latest version of GROMACS (2022) [1], there are some issues regarding the gmx do_dssp command. Apparently, this command either does not run displaying a fatal error, or if it runs then it does not read any frame from MD simulation files. In this article, we are going to run the same command for GROMACS 2022. (more…)
You must be logged in to post a comment Login