Hi Elaine,
I hope all is well. Previously you helped me iterate through lists of pdb files, annotate the contacts between the antibody and antigen using the command findclash. Now, I was hoping to iterate over each residue of the antigen (in this case labeled as chain T) and identify all antibody residues that contact that particular antigen residue. I have copied my script below, but the iteration over the residues isn't working. I was wondering if you could help me with this? Also, do you know if there is a way to append to a file for each pdb instead of saving a different file for each residue in my case?
Thanks a lot,
Ellen
import chimera
import os
from chimera import runCommand as rc # use 'rc' as shorthand for runCommand
from chimera import replyobj # for emitting status messages
from chimera.tkgui import saveReplyLog
from chimera import selection
# change to folder with data files
os.chdir("/home/eshrock/scratch/")
out_path = '/home/eshrock/scratch/findclash_results/'
# gather the names of .pdb files in the folder
file_names = [fn for fn in os.listdir(".") if fn.endswith(".pdb")]
# loop through the files, opening, processing, and closing each in turn
for fn in file_names:
replyobj.status("Processing " + fn) # show what file we're working on
rc("open " + fn)
rc("select :.T")
for res in list(chimera.selection.residues):
save_file_name = out_path + fn + "_" + res +'_findclash.txt'
rc("findclash :.H:.L test " + res + " overlapCutoff -1.0 hbondAllowance 0 namingStyle simple saveFile " + save_file_name)
rc("close all")
rc("stop now")