def contact_area(p1, p2, d, color = None, offset = None, slab = None,
smooth = False, optimize = True):
import os
import chimera
from Measure import contactarea
from chimera import *
Path = "/Users/kevinwang/desktop/VEGFR_NO_LIGAND/results/clustering/pdbfit/split"
filelist = os.listdir(Path)
for x in filelist:
#if x.startswith("trp.pdb."):
if (x == "trp.pdb.00001"):
print x
opened = chimera.openModels.open(x, type ="PDB")
runCommand('surface')
y = contactarea.contact_area('0.1', '0.2', 2.5)
text_file = open("buriedArea.txt", "w")
text_file.write(y)
text_file.close()