forked from DerrickWood/kraken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
64 lines (55 loc) · 2.32 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
v0.10.4-beta:
* use GRCh38 for human genome library
* enable input via stdin (/dev/fd/0)
* enable compressed (gzip/bzip2) input
* enable auto-detection of fasta/fastq/gz/bz2
* simplified add_to_library.sh code to speed up large additions
* use RNA genomes for viral genome library
* scan .ffn (RNA) files for genomic data when building databases
* updates to README file
* handle paired-end reads with --paired option
* provide MetaPhlAn-compatible output with kraken-mpa-report
v0.10.3-beta:
* remove Fatal.pm use in kraken-report
* fixed false success message on make failure in installer
* explicitly require g++ as C++ compiler in Makefile
* change to quickfile.cpp to do proper syncing on close
* fixed kraken-build bug w/ --work-on-disk (cause of some major build stalls)
* changed hash size calculation to use Perl
* close input files explicitly in db_sort/db_shrink to reduce reported memory
* allow db_shrink to work in RAM
* updates to README file
v0.10.2-beta:
* fixed kraken-report bug w/ --show-zeros
* fixed kraken-report installation bug
* updates to README file
v0.10.1-beta:
* fixed 2nd bug in build_kraken.sh in calculating hash size (thanks T. Antao)
* fixed bug in add_to_library.sh for some bash versions (thanks T. Antao)
* fixed issue where search window wasn't cached until a failure (query speedup)
* added $KRAKEN_DIR fallback for kraken/kraken-build (thanks S. Koren)
v0.10.0-beta:
* added CHANGELOG
* fixed quick mode hit list output
* updated README citation
* changed minimizer sort order (query speedup), changes database structure
* use linear search with small windows (query speedup)
* changed query procedure (query speedup); search w/o 1st calculating minimizer
* changed readlink in installer to perl Cwd::abs_path (portability)
* removed MAP_POPULATE for preloading, uses read loop instead (bugfix/port.)
* added --work-on-disk switch to kraken-build
* added kraken-report script
* fixed bug in build_kraken.sh in calculating hash size (thanks T. Antao)
v0.9.1b:
* fixed bug to allow kraken-build --shrink
v0.9.0b:
* full rewrite
* minimizers used to speed queries, prefix index removed
v0.3:
* DB build parallelized, Jellyfish removed from LCA assignment
v0.2:
* full rewrite, most progs. changed to C++
* Jellyfish removed from classification step
* prefix index used to speed queries
v0.1:
* initial version, mostly Perl