r1144: output debugging message to stderr
This commit is contained in:
parent
f123871451
commit
298284d754
|
|
@ -1602,7 +1602,7 @@ void bwt_bwtgen2(const char *fn_pac, const char *fn_bwt, int block_size)
|
||||||
{
|
{
|
||||||
BWTInc *bwtInc;
|
BWTInc *bwtInc;
|
||||||
bwtInc = BWTIncConstructFromPacked(fn_pac, block_size, block_size);
|
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);
|
BWTSaveBwtCodeAndOcc(bwtInc->bwt, fn_bwt, 0);
|
||||||
BWTIncFree(bwtInc);
|
BWTIncFree(bwtInc);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
2
main.c
2
main.c
|
|
@ -4,7 +4,7 @@
|
||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
|
|
||||||
#ifndef PACKAGE_VERSION
|
#ifndef PACKAGE_VERSION
|
||||||
#define PACKAGE_VERSION "0.7.15-r1142-dirty"
|
#define PACKAGE_VERSION "0.7.15-r1144-dirty"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int bwa_fa2pac(int argc, char *argv[]);
|
int bwa_fa2pac(int argc, char *argv[]);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue