Changeset 6353 for trunk/EDIT4/EDB_root_bact.cxx
- Timestamp:
- 14/01/10 15:10:39 (2 years ago)
- Files:
-
- 1 modified
-
trunk/EDIT4/EDB_root_bact.cxx (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/EDIT4/EDB_root_bact.cxx
r6348 r6353 71 71 } 72 72 73 74 73 if (!gb_datamode) { // didn't find this species 75 74 char dummy[150]; 76 all_found++; 77 sprintf(dummy,"%ld. %s\n",all_found, str); 78 GBS_strcat(not_found_message,dummy); 75 not_found_counter++; 76 if (not_found_counter <= MAX_SHOWN_MISSING_SPECIES) { 77 sprintf(dummy,"%ld. %s\n", not_found_counter, str); 78 GBS_strcat(not_found_message,dummy); 79 } 79 80 return ED4_R_BREAK; 80 81 } 81 82 82 // check whether sequence has data in desired alignment83 // check whether sequence has data in desired alignment 83 84 bool has_alignment = 0 != GB_entry(gb_datamode,ED4_ROOT->alignment_name); 84 85 if (!has_alignment) { 85 86 if (datamode == ED4_D_SPECIES) { // only warn about species w/o data (SAIs are skipped silently) 86 87 char dummy[150]; 87 all_found++; 88 sprintf(dummy,"%ld. %s (no data in alignment)\n",all_found, str); 89 GBS_strcat(not_found_message,dummy); 88 not_found_counter++; 89 if (not_found_counter <= MAX_SHOWN_MISSING_SPECIES) { 90 sprintf(dummy,"%ld. %s (no data in alignment)\n", not_found_counter, str); 91 GBS_strcat(not_found_message,dummy); 92 } 90 93 } 91 94 return ED4_R_BREAK; … … 134 137 local_count_position += max(name_coords, seq_coords); 135 138 name_coords = seq_coords = 0; 136 species_read ++;137 139 138 140 if (!(multi_species_manager->flag.hidden)) { … … 577 579 sequence_terminal->parent->resize_requested_by_child(); 578 580 579 species_read ++;580 581 (*y) += height_terminal + height_spacer; 581 582
