Changeset 6141 for trunk/CONVERTALN/paup.c
- Timestamp:
- 14/08/09 16:29:27 (3 years ago)
- Files:
-
- 1 modified
-
trunk/CONVERTALN/paup.c (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/CONVERTALN/paup.c
r5390 r6141 61 61 eof=macke_in_name(ifp); 62 62 } else error(63, 63 "UNKNOW input format when converting to PAUP format.");63 "UNKNOWN input format when converting to PAUP format."); 64 64 if(eof==EOF) break; 65 65 if(informat==ALMA) { … … 75 75 Cpystr(temp, data.macke.seqabbr); 76 76 } else error(118, 77 "UNKNOW input format when converting to PAUP format.");77 "UNKNOWN input format when converting to PAUP format."); 78 78 79 79 total_seq++; … … 93 93 if(out_of_memory) { 94 94 /* cannot hold all seqs into mem. */ 95 fprintf(stderr, 96 "Rerun the conversion throught one seq. by one seq. base.\n"); 95 fprintf(stderr, "Out of memory: Rerun the conversion sequence by sequence.\n"); 97 96 98 97 destroy_FILE_BUFFER(ifp); fclose(ofp); … … 127 126 128 127 fprintf(ofp, 129 "[! RDP - the Rib somal Database Project, (%s).]\n", today);128 "[! RDP - the Ribosomal Database Project, (%s).]\n", today); 130 129 131 130 fprintf(ofp, … … 188 187 eof=macke_in_name(ifp); 189 188 } else error(127, 190 "UNKNOW input format when converting to PAUP format.");189 "UNKNOWN input format when converting to PAUP format."); 191 190 192 191 if(eof==EOF) break; … … 204 203 (data.macke.name, 0, temp, TOKENNUM); 205 204 } else error(70, 206 "UNKNOW input format when converting to PAUP format.");205 "UNKNOWN input format when converting to PAUP format."); 207 206 208 207 Freespace(&name); … … 239 238 240 239 fprintf(ofp, 241 "[! RDP - the Rib somal Database Project, (%s).]\n", today);240 "[! RDP - the Ribosomal Database Project, (%s).]\n", today); 242 241 243 242 fprintf(ofp, … … 253 252 /* ----------------------------------------------------------- 254 253 * Function paup_verify_name(). 255 * Verify short_id in P UAP format.254 * Verify short_id in PAUP format. 256 255 */ 257 256 void … … 345 344 346 345 fprintf(ofp, 347 "[! RDP - the Rib somal Database Project, (%s).]\n",346 "[! RDP - the Ribosomal Database Project, (%s).]\n", 348 347 today); 349 348
