Skip to content

Commit

Permalink
fix print
Browse files Browse the repository at this point in the history
  • Loading branch information
fdila committed Apr 11, 2022
1 parent fdca2fa commit 172e0d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utilities/results_utils/result_statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def main(args):

df_stats.set_index("sequence", inplace=True)
df_stats = df_stats.sort_values("sequence")
print(df_stats)
print(df_stats.reset_index().to_string(index=False))

if(args.output_file is not None):
df_stats.to_csv(args.output_file, na_rep='NaN')
Expand Down

0 comments on commit 172e0d0

Please sign in to comment.