Learn R Programming

bio3d (version 2.4-4)

sdENM: Index for the sdENM ff

Description

A dictonary of spring force constants for the sdENM force field.

Usage

data(sdENM)

Arguments

Format

An array of 27 matrices containg the spring force constants for the ‘sdENM’ force field (see Dehouch et al for more information). Each matrix in the array holds the force constants for all amino acid pairs for a specific distance range.

See examples for more details.

References

Skjaerven, L. et al. (2014) BMC Bioinformatics 15, 399. Grant, B.J. et al. (2006) Bioinformatics 22, 2695--2696. Dehouck Y. et al. (2013) PLoS Comput Biol 9:e1003209.

Examples

Run this code
## Load force constant data
data(sdENM)

## force constants for amino acids A, C, D, E, and F
## in distance range [4, 4.5)
sdENM[1:5, 1:5, 1]

## and distance range [4.5, 5)
sdENM[1:5, 1:5, 2]

## amino acid pair A-P, at distance 4.2
sdENM["A", "P", 1]

if (FALSE) {
## for use in NMA
pdb <- read.pdb( system.file("examples/1hel.pdb", package="bio3d") )
modes <- nma(pdb, ff="sdenm")
}

Run the code above in your browser using DataLab