Thank you Eric. Would something like this work.
C:\Program Files\Chimera\bin\chimera.exe
view.chimera<- function(pdb, exepath = "/Program Files(x86)/Chimera/bin/chimera.exe", ...) {
## Change exepath to the location of your vmd
tovmd <- tempfile()
write.pdb(pdb, file = tovmd, ...)
cmd <- paste(exepath, "vmd -pdb ", tovmd, sep="")
cat(cmd)
os1 <- .Platform$OS.type
if (os1 == "windows") {
## Insert cmd for calling vmd on windows
## system(shQuote(cmd))
}
else {
system(cmd)
}
unlink(tovmd)
}
pdb <- read.pdb("4q21")
view.chimera(pdb)
It doesnt seem to be able to run. I am thinking of what to put in the "window" because that is what goes to the cmd line. Thanks.
Amitoj
On Thu, May 27, 2010 at 2:53 PM, Eric Pettersen
<pett@cgl.ucsf.edu> wrote:
On May 27, 2010, at 12:27 AM, Amitoj Chopra wrote:
Is there any way to use the R script and bio3d package to open a pdb with Chimera using R? Thank you.
Hi Amitoj,
If R can run external system commands then this is possible. Use bio3d to write a PDB file and then use R to start Chimera from the command line with the PDB file name as an argument, as documented here:
If you don't know how to run external commands from R, you would probably have to ask about that on the R mailing list.
--Eric
Eric Pettersen
UCSF Computer Graphics Lab