visualize {Rpdb}R Documentation

Visualize a Molecular Structure

Description

Use the rgl library to visualize in 3D a molecular structure.

Usage

visualize(...)

## S3 method for class 'coords'
visualize(
  x,
  elename = NULL,
  cryst1 = NULL,
  conect = NULL,
  mode = NULL,
  type = "l",
  xyz = NULL,
  abc = NULL,
  pbc.box = NULL,
  lwd = 2,
  lwd.xyz = lwd,
  lwd.abc = lwd,
  lwd.pbc.box = lwd,
  cex.xyz = 2,
  cex.abc = 2,
  col = NULL,
  bg = "#FAFAD2",
  radii = "rvdw",
  add = FALSE,
  windowRect = c(0, 0, 800, 600),
  FOV = 0,
  userMatrix = diag(4),
  ...
)

## S3 method for class 'data.frame'
visualize(
  x,
  elename = NULL,
  cryst1 = NULL,
  conect = NULL,
  mode = NULL,
  type = "l",
  xyz = NULL,
  abc = NULL,
  pbc.box = NULL,
  lwd = 2,
  lwd.xyz = lwd,
  lwd.abc = lwd,
  lwd.pbc.box = lwd,
  cex.xyz = 2,
  cex.abc = 2,
  col = NULL,
  bg = "#FAFAD2",
  radii = "rvdw",
  add = FALSE,
  windowRect = c(0, 0, 800, 600),
  FOV = 0,
  userMatrix = diag(4),
  ...
)

## S3 method for class 'matrix'
visualize(
  x,
  elename = NULL,
  cryst1 = NULL,
  conect = NULL,
  mode = NULL,
  type = "l",
  xyz = NULL,
  abc = NULL,
  pbc.box = NULL,
  lwd = 2,
  lwd.xyz = lwd,
  lwd.abc = lwd,
  lwd.pbc.box = lwd,
  cex.xyz = 2,
  cex.abc = 2,
  col = NULL,
  bg = "#FAFAD2",
  radii = "rvdw",
  add = FALSE,
  windowRect = c(0, 0, 800, 600),
  FOV = 0,
  userMatrix = diag(4),
  ...
)

## S3 method for class 'atoms'
visualize(
  x,
  cryst1 = NULL,
  conect = NULL,
  mode = NULL,
  type = "l",
  xyz = NULL,
  abc = NULL,
  pbc.box = NULL,
  lwd = 2,
  lwd.xyz = lwd,
  lwd.abc = lwd,
  lwd.pbc.box = lwd,
  cex.xyz = 2,
  cex.abc = 2,
  col = NULL,
  bg = "#FAFAD2",
  radii = "rvdw",
  add = FALSE,
  windowRect = c(0, 0, 800, 600),
  FOV = 0,
  userMatrix = diag(4),
  ...
)

## S3 method for class 'pdb'
visualize(
  x,
  mode = NULL,
  type = "l",
  xyz = NULL,
  abc = NULL,
  pbc.box = NULL,
  lwd = 2,
  lwd.xyz = lwd,
  lwd.abc = lwd,
  lwd.pbc.box = lwd,
  cex.xyz = 2,
  cex.abc = 2,
  col = NULL,
  bg = "#FAFAD2",
  radii = "rvdw",
  add = FALSE,
  windowRect = c(0, 0, 800, 600),
  FOV = 0,
  userMatrix = diag(4),
  ...
)

## S3 method for class 'character'
visualize(
  x,
  mode = NULL,
  type = "l",
  xyz = NULL,
  abc = NULL,
  pbc.box = NULL,
  lwd = 2,
  lwd.xyz = lwd,
  lwd.abc = lwd,
  lwd.pbc.box = lwd,
  cex.xyz = 2,
  cex.abc = 2,
  col = NULL,
  bg = "#FAFAD2",
  radii = "rvdw",
  add = FALSE,
  windowRect = c(0, 0, 800, 600),
  FOV = 0,
  userMatrix = diag(4),
  ...
)

Arguments

...

further arguments passed to or from other methods.

x

an object or the name of a PDB file containing the molecular structure to visualize.

elename

a character vector containing the atomic names used to chose atom colors and radii.

cryst1

an object of class ‘cryst1’. See cryst1

conect

an object of class ‘conect’. See conect

mode

a single element character vector indicating the visualization mode (See details).

type

a character string indicating the visualization style (See details).

xyz

a logical value indicating whether the x, y and z axes have to be added to the scene. See details

abc

a logical value indicating whether the a, b and c axes have to be added to the scene. See details

pbc.box

a logical value indicating whether the pbc box has to be added to the scene. See details

lwd

a numeric value indication the line width used to plot the axes, the pbc box and atomic bonds when type = "l" (see details).

lwd.xyz

a numeric value indicating the line width used to plot the x, y and z axes.

lwd.abc

a numeric value indicating the line width used to plot the a, b and c axes.

lwd.pbc.box

a numeric value indicating the line width used to plot the pbc box.

cex.xyz

a numeric value indicating the magnification used to plot the labels of the x, y and z axes.

cex.abc

a numeric value indicating the magnification used to plot the labels of the a, b and c axes.

col

a vector indicating the colors to use to plot each atom.

bg

the color of the background

radii

either a character string indicating the type of radii or a numeric vector specifying the radii of each atom to use to plot atoms as spheres (see details).

add

a logical value indicating whether the plot has be to added to a existing scene (see rgl.cur and open3d).

windowRect

a vector of four integers indicating the left, top, right and bottom of the displayed window in pixels (see par3d).

FOV

the field of view. This controls the degree of parallax in the perspective view (see par3d).

userMatrix

a 4 by 4 matrix describing user actions to display the scene (see par3d).

Details

Three different visualization styles are allowed.

When xyz, abc or pbc.box are NULL, the axis or pbc box are are added depending if a ‘cryst1’ object can be found.
Two different interactive visualization modes are avalable:

When mode=NULL the interactive mode is disabled. To escape the interactive mode press the ESC key.

Value

Return (using invisible) a two-column data.frame containing the IDs and type indicators of the objects added to the scene.

See Also

addXYZ, addABC, addPBCBox, par3d, select3d, measure, info3d

Examples

x <- read.pdb(system.file("examples/PCBM_ODCB.pdb", package="Rpdb"))
visualize(x, type = "l", mode = NULL)
visualize(x, type = "s", radii = "rcov", mode = NULL)
visualize(x, type = "s", radii = "rvdw", mode = NULL)
visualize(x, type = "p", mode = NULL)
visualize(subset(x, resid != 1), type = "l", mode = NULL)
visualize(subset(x, resid == 1), type = "s", add = TRUE, mode = NULL)


[Package Rpdb version 2.3.4 Index]