from Bio.PDB import PDBParser
from Bio.PDB import Selection
structure = PDBParser().get_structure('4GBX', '4GBX.pdb') # load your molecule
atom_list = Selection.unfold_entities(structure[0]['E'], 'A') # 'A' is for Atoms in the chain 'E'
When I unfold chain E in the PDB 4GBX using the code above, the last 2 Oxygen atoms in atom_list
belong to water heteroatoms in the same chain. How can I get a list of only protein residue atoms and avoid other ligands or water molecules in the selection?
question code :
output:
answer as per comments :
output :