Changeset 6141 for trunk/NTREE/ad_transpro.cxx
- Timestamp:
- 14/08/09 16:29:27 (3 years ago)
- Files:
-
- 1 modified
-
trunk/NTREE/ad_transpro.cxx (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/NTREE/ad_transpro.cxx
r6060 r6141 338 338 #define SYNC_LENGTH 4 339 339 // every X in amino-alignment, it represents 1 to 3 bases in DNA-Alignment 340 // SYNC_LENGTH is the # of codons which will be sync ronized (ahead!)340 // SYNC_LENGTH is the # of codons which will be synchronized (ahead!) 341 341 // before deciding "X was realigned correctly" 342 342 … … 505 505 delete sync_possible_with_catchup; 506 506 failed = 1; 507 fail_reason = "Can't sync ronize after 'X'";507 fail_reason = "Can't synchronize after 'X'"; 508 508 break; 509 509 } … … 521 521 else if (!synchronizeCodons(protein, d, x_count, x_count*3, &catchUp, allowed_code, allowed_code_left)) { 522 522 failed = 1; 523 fail_reason = "Can't sync ronize after 'X'";523 fail_reason = "Can't synchronize after 'X'"; 524 524 break; 525 525 } … … 641 641 nt_assert(strlen(buffer) == (unsigned)ali_len); 642 642 643 // re-alignment suc essfull643 // re-alignment successful 644 644 error = GB_write_string(gb_dest_data, buffer); 645 645 if (!error) error = GBT_write_string(gb_species, "codon_start", "1"); // after re-alignment codon_start is always 1
