Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reading a .pdb file

I have a lot of files in .pdb format, some of them downloaded, but until now I can't use or read what's inside, so I'm looking for how to read and view the .pdb file format from MS Windows XP.

Any of you that may know how to open it?

like image 284
jones Avatar asked Jan 11 '10 05:01

jones


People also ask

What is .PDB file extension?

A program database file (extension . pdb) is a binary file that contains type and symbolic debugging information gathered over the course of compiling and linking the project. A PDB file is created when you compile a C/C++ program with /ZI or /Zi or a Visual Basic, Visual C#, or JScript program with the /debug option.

What is a PDB file in Windows?

Program database (PDB) is a file format (developed by Microsoft) for storing debugging information about a program (or, commonly, program modules such as a DLL or EXE). PDB files commonly have a . pdb extension. A PDB file is typically created from source files during compilation.

What is PDB book file?

PDB is an eBook or database format used in the Palm OS platform. PDB files support royalty free eBooks because it does not provide Digital Rights Management (DRM). PDB supports the basic eBooks with basic format. It is used in Palm devices.

How do I read a PDB file in Python?

Read PDB files.Write a function readPDBfile(filename) that will read the atoms for a protein stored in pdb file whose name is given as the argument. Your function should return a Python tuple containing 4 values: (anum, aname, resno, coords) . anum should be an array with the serial number for each atom.


1 Answers

If you mean PDB as in a "program database" that the debugger uses:

PDB files contain data about a file such as an EXE or DLL that is used to aid in debugging. There are public interfaces that allow you to extract data from the file. See examples here:

  • http://blogs.msdn.com/jmstall/archive/2005/08/25/pdb2xml.aspx
  • http://www.codeproject.com/KB/bugs/PdbParser.aspx

If you mean PDB as in a Palm Pilot Database, then I know nothing about it, but the file format is available here:

  • http://www.hotpaw.com/rhn/palm/pdb.txt
like image 163
Eilon Avatar answered Sep 30 '22 03:09

Eilon