The models miss the 40 first aa of the sequence.What might be wrong?Thanks>P1;1gmy_A.pdbstructureX:1gmy_A.pdb: 0 :A: 253 :A:undefined:undefined:-1.00:-1.00KLPASFDAREQWPQCPTIKEIRDQGSCGSCWAFGAVEAISDRICIHTNAHVSVEVSAEDLLTCCGSMCGDGCNGGYPAEAWNFWTRKGLVSGGLYESHVGCRPYSIPPCEHHVNGSR-PPCTGEG-DTPKCSKICEPGYSPTYKQDKHYGYNSYSVSNSEKDIMAEIYKNGPVEGAFSVYSDFLLYKSGVYQHVTGEMMGGHAIRILGWGVENGTPYWLVANSWNTDWGDNGFFKILRGQDHCGIESEVVAGIPRT*>P1;Q8I7B2_sequence--------------------IPDQSSCGSCWAVAGVGAMSDRVCIHSNGMMQPELSAIDLVSCC-SYCGNGCQGGSPPAAWDYWWRNGIVTGGTLENPTGCLPYPFPQCRHPGSRSQLNPCPRYTYPTPSCYPYCQAGYDKTYEKDKVYGKTSYNVDRHEYTIMEEIMKNGPVEAGFIVYTDFAVYKSGIYHHVSGRYAGKHAIRIIGWGVENGVKYWLTANSWNVGWGENGYFRILRGTDECRIESIVVAGMPR-*# Homology modelling by the automodel classfrom modeller.automodel import * # Load the automodel classlog.verbose() # request verbose outputenv = environ() # create a new MODELLER environment to build this model in# directories for input atom filesenv.io.atom_files_directory = './'a = automodel(env,alnfile = 'test_fasciola.ali', # alignment filenameknowns = '1gmy_A.pdb', # codes of the templatessequence = 'Q8I7B2_sequence') # code of the targeta.starting_model= 1 # index of the first modela.ending_model = 1 # index of the last model# (determines how many models to calculate)a.make() # do the actual homology modelling