> Get [GMXvg v0.3 here](https://github.com/TheBiomics/GMXvg/releases/tag/v0.3) for Ubuntu and Windows.
> DOI for the v0.3 https://doi.org/10.5281/zenodo.6563932
- Commandline based GROMACS XVG File plotting utility.
- Discovers all the XVG files in the current or subdirectories and converts them in specified file formats (default JPG).
- Logs the summary of plots in a file (CSV file) to quickly access the plot values along with their standard deviation values.
- This tool may be an alternative to
xmgrace
.
The utility was developed and tested for following OS. However, we expect it to work on all windows and linux environment.
Install using pypi or other directly from source using python's pip module:
pip install gmxvg
gmxvg --version
gmxvg --<key>=<value>
: Double dash separated by equal signgmxvg -<key> <val1> <val2> <val3>
Single dash (single dash is not recommended) and multiple values
Use gmxvg -h
to see all options.
path_base
: Base path if running from different directorycsv_filename
: File name for CSV output else default will be usedcsv_filepath
: Path where CSV output file will be storedpath_move
: Path where generated images will be moved (will be deleted from the dir where XVG are stored)path_copy
: Path where generated images will be copied (source graphics will be there)pattern_xvg
: Pattern to specify XVG images for conversion e.g., --new.xvg, old--temp-300.xvgmerge_patterns
: Pattern to select XVGs to group their output e.g., Protein-*-RMSD.xvgexport_ext
: Type of outputs, e.g., JPEG, PNG, JPG, PDF (Anything supported by Matplotlib)dpi
: Resolution of the output, e.g., 72 for quick visualisation and 600 for many publicationsflag_plot_mean
: yes|no; Use yes to enable plotting average lineflag_plot_std
: yes|no; Use yes to enable plotting standard deviation linesflag_export_csv
: yes|no; If results should be exported in the form of CSV (includes directory name, file name, average of lines plotted and their standard deviation)flag_export_plot
: yes|no; To specify if graphics should be exported or not
- Download GMXvg executable file (Windows 10/11) (or check latest or compatible executable for improved features) and copy/paste the exe file in the directory where XVG is contained. It will discover all xvg extension files in current or child folders and process them automatically.
- After execution all xvgs will be converted to jpg. For example, "rmsd-protein.xvg" will be converted to "rmsd-protein.dpi300.jpeg".
- After execution a CSV file containing mean and standard deviation of of the plotted lines in each xvg. For example, for gyration plot "gyration.xvg", the CSV file will show following columns
dir
: where xvg was storedfile
: name of the processed xvg fileplot
: label of the plotted linemean
: Mean of the plotted linestd
: Standard deviation for the plotted line
- Example result output
- To obtain customised output or results see commandline operations and customisation section.
The utility finds *.xvg files in a directory or sub-directory. It need not to specify a file. This utility is made for bulk conversion of XVG files and extract the results in a separate directory.
This will discover XVG files in the subdirectory where gmxvg
executable is present and plot XVG in JPEG Format
gmxvg
gmxvg -b <path-to-dir-containing-xvg-files>
gmxvg --dpi 96 300 600 --path_copy <path-to-aggregate-results-outside>
gmxvg --export_ext JPEG pdf
- To merge multiple xvg files having ending (e.g., /complex1/lig.xvg, /complex2/lig.xvg, /complex3/lig.xvg) passed to
-merge_patterns RMSD.xvg
so that it will combine all to plot one file.--uid_part -1
parameter can be useful to define the Legend of the merged graphs.
gmxvg --dpi 96 -merge_patterns RMSD-of-Ligand.xvg RMSD-of-Protein-C-Alpha.xvg Gyration-of-Protein.xvg NPT-Temperature.xvg Inter-Ligand-Protein-H-Bonds.xvg --replacements "Receptor1--Lig2":p53-miR5 "Recptor2--Lig3":p53-miR3 --path_move <path-to-output-dir>/graphs
-
Example to merge Protein-RMSD.xvg and Ligand-RMSD.xvg files in the same directory.
gmxvg -merge_patterns RMSD.xvg -uid_part -1
-
Use
-replacements
options to replace any text in the plot will change the labels and legends of the plot
- To make any changes, fork this repository
- To contribute, create a pull request after you fork or comment
python -m venv <path-to>-env
for Windows andsudo apt-get install python3.8-venv
for Ubuntu- Install missing packages
<path-to>-env/Scripts/activate
for Windows andsource <path-to>-env/bin/activate
for Ubuntupip install pyinstaller
pyinstaller gmxvg --onefile
- GUI or web interface through local server for interactive visualisation
- Edit labels or text for invidiual graphs through GUI
- Small executable size
- Fast Executable
- Webserver to convert and combine graphs
- We recommend you going through the code to access the precision and quality of the generated results before you use.
- The code is free to be used by students, scholars, and professors.
- Version 0.4 details
- DOI: doi:10.5281/zenodo.7395525
- Authors: Vishal Kumar Sahu and Dr. Soumya Basu
- Title: GMXvg: GROMACS XVG Graph Plotting Tool Version 0.4
- Month & Year: December, 2022
- Published on: Zenodo
- Use
pip cache purge
in case of installation issue