Skip to content

Commit

Permalink
fix for overview table creation
Browse files Browse the repository at this point in the history
  • Loading branch information
RickGelhausen committed Apr 24, 2020
1 parent d14094f commit 7147d21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/overview_excel.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def generate_reparation_dict(reparation_path):
create a dictionary containing all important reparation input
"""

reparation_df = pd.read_csv(reparation_path, sep="\t", comment="#")
reparation_df = pd.read_csv(reparation_path, header=None, sep="\t", comment="#")
prefix_columns = 9

reparation_dict = {}
Expand Down Expand Up @@ -242,7 +242,7 @@ def generate_deepribo_dict(deepribo_path):
create a dictionary containing all important deepribo input
"""

deepribo_df = pd.read_csv(deepribo_path, sep="\t", comment="#")
deepribo_df = pd.read_csv(deepribo_path, header=None, sep="\t", comment="#")
prefix_columns = 9

deepribo_dict = {}
Expand Down

0 comments on commit 7147d21

Please sign in to comment.