load_rmsf function

Loading function for rmsf()

Loading function for rmsf()

Returns a list of vector pairs of datapoint indices and RMSF values.

load_rmsf( files, mdEngine = "GROMOS" )

Arguments

  • files: Vector of paths to input text files.
  • mdEngine: Argument distinguishes between input formats based on the molecular dynamics engine used. Currently available: "GROMOS", "GROMACS" and "AMBER".

Returns

A list of vectors, alternately holding atom indices and their respective values.

Examples

# GROMOS load_rmsf( c( system.file( "extdata/rmsf_example_1.txt.gz", package = "MDplot" ), system.file( "extdata/rmsf_example_2.txt.gz", package = "MDplot" ) ) ) # GROMACS load_rmsf( c( system.file( "extdata/rmsf_example_GROMACS.txt.gz", package = "MDplot" ) ), mdEngine = "GROMACS" ) # AMBER load_rmsf( c( system.file( "extdata/rmsf_example_AMBER.txt.gz", package = "MDplot" ) ), mdEngine = "AMBER" )

Author(s)

Christian Margreitter