Skip to content

Commit

Permalink
Merge pull request #31 from CCBR/v1.0.3
Browse files Browse the repository at this point in the history
v1.0.3
  • Loading branch information
kopardev authored Feb 21, 2024
2 parents 996be32 + 1b2a5f4 commit 8fd4238
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
## Development Version

## v1.0.3

- fix: bug in reannotate diamond results .. Fixed!

## v1.0.2

- fix: fix #28 typo in `erv` wrapper
- fix: fix #29 `--version` not printing

## v1.0.1

- feat: aggregate raw counts for hervquant (plus TPM) #24
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.1
1.0.3
5 changes: 4 additions & 1 deletion workflow/scripts/reprocess_annotated_diamond.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,10 @@ def main():
print("Unknown found in line:")
print("\t".join(l))
new_tid = get_taxid(l[1])
new_lineage = taxid2lineage[new_tid]
try:
new_lineage = taxid2lineage[new_tid]
except:
new_lineage = "Unknown"
l[12] = new_tid
l[14] = new_lineage
print("new_taxid=", new_tid)
Expand Down

0 comments on commit 8fd4238

Please sign in to comment.