Skip to content

Commit

Permalink
fix error where # in header #300
Browse files Browse the repository at this point in the history
  • Loading branch information
gbouras13 committed May 23, 2024
1 parent 3e02ff7 commit d167603
Show file tree
Hide file tree
Showing 4 changed files with 430 additions and 4 deletions.
5 changes: 2 additions & 3 deletions bin/processes.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,9 +377,8 @@ def tidy_phanotate_output(out_dir):
delimiter="\t",
index_col=False,
names=col_list,
skiprows=2,
dtype=dtype_dict,
comment="#", # to skip the headers
skiprows=2, # to skip the headers
dtype=dtype_dict
)
# get rid of the headers and reset the index
phan_df = phan_df[phan_df["start"] != "#id:"]
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.1"
__version__ = "1.7.2"
Loading

0 comments on commit d167603

Please sign in to comment.