No input PDB file found: check filename >

Issue #896 new
imren bayil created an issue

Hi,ı am new user for bio3d ,I am trying to load my pdf file and dcd file,

dcdfile <- system.file("R/new1.dcd", package = "bio3d")

pdbfile <- system.file("R/step3_input.pdb", package="bio3d") then,dcd <- read.dcd(dcdfile)
Error in read.dcd(dcdfile) : No input DCD file found with name: What s my wrong ? Could you anybody guide me ?

Comments (2)

  1. Xinqiu Yao

    Hi,

    If you are reading your own files, you don’t need “system.file()” (that is for using files shipped with the bio3d package). Simply call

    dcd <- read.dcd("R/new1.dcd")

    and

    pdb <- read.pdb("R/step3_input.pdb").

  2. Log in to comment