Skip to content

Commit

Permalink
fix issue with parsing gff headers
Browse files Browse the repository at this point in the history
  • Loading branch information
gbouras13 committed Mar 12, 2024
1 parent dbcb25e commit c31939f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion bin/processes.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,7 @@ def tidy_phanotate_output(out_dir):
names=col_list,
skiprows=2,
dtype=dtype_dict,
comment='#' # to skip the headers
)
# get rid of the headers and reset the index
phan_df = phan_df[phan_df["start"] != "#id:"]
Expand Down Expand Up @@ -438,8 +439,8 @@ def tidy_prodigal_output(out_dir, gv_flag):
delimiter="\t",
index_col=False,
names=col_list,
skiprows=3,
dtype=dtype_dict,
comment='#' # to skip the headers
)

# meta mode brings in some Nas so remove them
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.7.0"
__version__ = "1.7.1"
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.7.0",
version="1.7.1",
author="George Bouras",
author_email="george.bouras@adelaide.edu.au",
description="Fast phage annotation tool",
Expand Down

0 comments on commit c31939f

Please sign in to comment.