r1144: output debugging message to stderr

This commit is contained in:
Heng Li 2017-06-08 16:06:13 -04:00
parent f123871451
commit 298284d754
2 changed files with 2 additions and 2 deletions

View File

@ -1602,7 +1602,7 @@ void bwt_bwtgen2(const char *fn_pac, const char *fn_bwt, int block_size)
{
BWTInc *bwtInc;
bwtInc = BWTIncConstructFromPacked(fn_pac, block_size, block_size);
printf("[bwt_gen] Finished constructing BWT in %u iterations.\n", bwtInc->numberOfIterationDone);
fprintf(stderr, "[bwt_gen] Finished constructing BWT in %u iterations.\n", bwtInc->numberOfIterationDone);
BWTSaveBwtCodeAndOcc(bwtInc->bwt, fn_bwt, 0);
BWTIncFree(bwtInc);
}

2
main.c
View File

@ -4,7 +4,7 @@
#include "utils.h"
#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION "0.7.15-r1142-dirty"
#define PACKAGE_VERSION "0.7.15-r1144-dirty"
#endif
int bwa_fa2pac(int argc, char *argv[]);