While this code will work for one, original post is asking about downloading all structures of complexes.
• 0 views
•
link
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!
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)
Log in to answer this question.