How to download all structures of complexes in PDB
1
0
Entering edit mode
2.4 years ago
sunyeping ▴ 110

Dear all,

Does anyone know how to download all structures of complexes in PDB? For complex I mean the structures containing more than one chains which forms biological interactions with each other? Is there any search filter in pdb

With many thanks in advance!

pdb • 835 views
ADD COMMENT
0
Entering edit mode
2.4 years ago
M.O.L.S ▴ 100
enter code here
# Import Bio.PDB
  import Bio.PDB

# create a parser and dont mention the warnings. 
 parser = Bio.PDB.PDBParser(QUIET=True)

# Get the structure/s from a file
  structures = parser.get_structure(' put the name of the structure/s here ' ,  ' put the filename here e.g protein.pdb ' )
  print(structures)
ADD COMMENT
0
Entering edit mode

While this code will work for one, original post is asking about downloading all structures of complexes.

ADD REPLY
0
Entering edit mode

What would you suggest? =]

ADD REPLY

Login before adding your answer.

Traffic: 1822 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6