Skip to content

Commit

Permalink
DEV: Save coverage values with header
Browse files Browse the repository at this point in the history
  • Loading branch information
Vini2 committed Mar 14, 2023
1 parent 43e6249 commit 577268b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions metacoag_utils/support/combine_cov.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ def main():

# Save dataframe to file
final_df.to_csv(output_path + "coverage.tsv", sep="\t", index=False, header=False)
final_df.to_csv(output_path + "coverage_with_header.tsv", sep="\t", index=False, header=True)
print(f"The combined coverage values can be found at {output_path}coverage.tsv")

# Exit program
Expand Down

0 comments on commit 577268b

Please sign in to comment.