Skip to content

Commit

Permalink
fix missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
ammarcsj committed Apr 22, 2024
1 parent 532c74b commit c654c9b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions directlfq/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,8 @@ def remove_potential_quant_id_duplicates(data_df):
entries_removed = before_drop - after_drop
LOGGER.info(f"Duplicate quant_ids detected. {entries_removed} rows removed from input df.")

return data_df


def sort_input_df_by_protein_id(data_df):
return data_df.sort_values(by = config.PROTEIN_ID,ignore_index=True)
Expand Down

0 comments on commit c654c9b

Please sign in to comment.