Last chance! 50% off unlimited learning
Sale ends in
Produce a new smaller XYZ object, containing a subset of atoms.
# S3 method for xyz
trim(xyz, row.inds = NULL, col.inds = NULL, …)
a numeric vector specifying which rows of the xyz matrix to return.
a numeric vector specifying which columns of the xyz matrix to return.
additional arguments passed to and from functions.
Returns an object of class xyz
with the Cartesian coordinates
stored in a matrix object with dimensions M x 3N, where N is the
number of atoms, and M number of frames.
This function provides basic functionality for subsetting a matrix of class ‘xyz’ while also maintaining the class attribute.
Grant, B.J. et al. (2006) Bioinformatics 22, 2695--2696.
# NOT RUN {
## Read a PDB file from the RCSB online database
pdb <- read.pdb("1bg2")
## Select calpha atoms
sele <- atom.select(pdb, "calpha")
## Trim XYZ
trim(pdb$xyz, col.inds=sele$xyz)
## Equals to
pdb$xyz[, sele$xyz, drop=FALSE]
# }
Run the code above in your browser using DataLab