This is a test version of Biostars. For the public version, visit https://www.biostars.org.
How to download all structures of complexes in PDB

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

1 answer

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)

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

What would you suggest? =]

Log in to answer this question.