Skip to content

Commit

Permalink
v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shenwei356 committed May 21, 2020
1 parent deb74fd commit 525fe1d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
- v0.10.1
- `unikmer inter`: fix bug.
- `unikmer diff`: fix bug.
- v0.10.0
- `unikmer`: fix loading custom taxonomy files.
- `unikmer count`:
Expand Down
4 changes: 2 additions & 2 deletions unikmer/cmd/diff.go
Original file line number Diff line number Diff line change
Expand Up @@ -404,8 +404,8 @@ Tips:
qCode = mc1[ii].Code
qtaxid = mc1[ii].Taxid
} else if qCode == code {
if compareTaxid && (qtaxid == taxid ||
taxondb.LCA(taxid, qtaxid) == qtaxid) {
if compareTaxid && (qtaxid == taxid || // keep k-mer with same taxid
taxondb.LCA(taxid, qtaxid) == qtaxid) { // keep k-mer which is son of query
mc2 = append(mc2, mc1[ii])
}

Expand Down
2 changes: 1 addition & 1 deletion unikmer/cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
)

// VERSION is the version
var VERSION = "0.10.1"
var VERSION = "0.10.0"

// versionCmd represents the version command
var versionCmd = &cobra.Command{
Expand Down

0 comments on commit 525fe1d

Please sign in to comment.