There are 859 a.a. in one chain and 853 a.a. in the other chain. I didn't type the exact number of a.a. here.
The following is the script I used for alignment:
from modeller import *
env = environ() aln = alignment(env) mdl = model(env, file='dimer', model_segment=('FIRST:A','LAST:A')) aln.append_model(mdl, align_codes='dimerAB', atom_files='dimer.pdb') # I used "dimerAB" to point out both chain A and chain B for alignment. I don't know whether it is correct.
aln.append(file='hetero.ali', align_codes='hetero') aln.align2d() aln.write(file='hetero-dimerAB.ali', alignment_format='PIR') aln.write(file='hetero-dimerAB.pap', alignment_format='PAP')
The script running result showed the two chain of the heterodimer aligned to one chain of the template. Would you kindly tell me how I can get the correct alignment? Thank you.
Xiongzhuo Gao
BMCB Department
University of New Hampshier Durham, New Hampshire 03824