cat.pdb(..., renumber=FALSE, rechain=TRUE)
read.pdb
. Produce a new concatenated PDB object from two or more smaller PDB objects.
This is a basic utility function for creating a concatenated PDB object based on multipe smaller PDB objects.
"pdb"
. See read.pdb
for
further details.
Grant, B.J. et al. (2006) Bioinformatics 22, 2695--2696.
## Read a PDB file from the RCSB online database pdb1 <- read.pdb("1etl")Note: Accessing on-line PDB filepdb2 <- read.pdb("1hel")Note: Accessing on-line PDB file## Concat new.pdb <- cat.pdb(pdb1, pdb2, pdb1, rechain=TRUE, renumber=TRUE) ## Write to file write.pdb(new.pdb, file="concat.pdb")