Skip to content

Commit

Permalink
Merge pull request #324 from gbouras13/dev
Browse files Browse the repository at this point in the history
v1.6.1
  • Loading branch information
gbouras13 authored Jan 17, 2024
2 parents 4ad7b91 + c285df5 commit b1173c8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
History
=======

1.6.1 (2024-01-17)
------------------

* Fixes a bug that was removing tRNAs from the `.tbl` output format #323.

1.6.0 (2024-01-11)
------------------

Expand Down
2 changes: 1 addition & 1 deletion bin/post_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -1165,7 +1165,7 @@ def create_tbl(
self.total_gff["Method"] == f"tRNAscan-SE_{self.trna_version}"
]
# keep only trnas and pseudogenes
trna_df.contig = trna_df.start.astype(str)
trna_df.contig = trna_df.contig.astype(str)
trna_df.start = trna_df.start.astype(int)
trna_df.stop = trna_df.stop.astype(int)
trna_df[["attributes", "locus_tag"]] = trna_df["attributes"].str.split(
Expand Down
2 changes: 1 addition & 1 deletion bin/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.6.0"
__version__ = "1.6.1"
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Pygments==2.15.0
pymdown-extensions==10.0
jinja2==3.0.3
jinja2>=3.1.3
Markdown==3.3.7

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def package_files(directory):

setup(
name="Pharokka",
version="1.6.0",
version="1.6.1",
author="George Bouras",
author_email="george.bouras@adelaide.edu.au",
description="Fast phage annotation tool",
Expand Down

0 comments on commit b1173c8

Please sign in to comment.