readXVG | R Documentation |
XVG is the default format file of the GROMACS molecular dynamics package, contains data formatted to be imported into the Grace 2-D plotting program.
readXVG(file)
file |
A .XVG output file of the GROMACS molecular dynamics package |
GROMACS (GROningen MAchine for Chemical Simulations) is a molecular dynamics package designed for simulations of proteins, lipids and nucleic acids. It is free, open source software released under the GNU General Public License.
The file format used by GROMACS is XVG. This format can be displayed in graphical form through the GRACE program on UNIX/LINUX systems and the GNUPlot program on Windows. XVG files are plain text files containing tabular data separated by tabulators and two types of comments which contain data labels. Although manual editing is possible, this is not a viable option when working with multiple files of this type.
For ease of reading, information management and data plotting, the functions read.xvg
and plot.xvg
were incorporated.
Latest: J. Sebastian Paez <jpaezpae@purdue.edu> and hongbo-zhu-cn <@github>
Original: Daniel Osorio <dcosorioh@unal.edu.co>
Pronk, S., Pall, S., Schulz, R., Larsson, P., Bjelkmar, P., Apostolov, R., ... & Lindahl, E. (2013). GROMACS 4.5: a high-throughput and highly parallel open source molecular simulation toolkit. Bioinformatics, 29 (7), 845-854.
# READING FILE
XVGfile <- system.file("xvg-files/epot.xvg",package="Peptides")
readXVG(XVGfile)
# Time (ps) Potential
# 1 1 6672471040
# 2 2 6516461568
# 3 3 6351947264
# 4 4 6183133184
# 5 5 6015310336
# 6 6 5854271488
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.