Skip to content

Commit

Permalink
fix output columns
Browse files Browse the repository at this point in the history
  • Loading branch information
rodvrees committed Jun 27, 2024
1 parent df18861 commit 4665fdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion im2deep/im2deep.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def predict_ccs(
if write_output:
LOGGER.info("Writing output file...")
output_file = open(output_file, "w")
output_file.write("seq,modifications,charge,predicted CCS\n")
output_file.write("modified_seq,charge,predicted CCS\n")
for peptidoform, charge, CCS in zip(
psm_list_pred_df["peptidoform"],
psm_list_pred_df["charge"],
Expand Down

0 comments on commit 4665fdc

Please sign in to comment.