Skip to content

Commit

Permalink
Small changes for FlashLFQ writer
Browse files Browse the repository at this point in the history
Fixed retention time division by 60.
Time is required in minutes for FlashLFQ, it's already in minutues
  • Loading branch information
unholyparrot committed Nov 25, 2024
1 parent 6b8fbfd commit 27a1e3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mokapot/writers/flashlfq.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def _format_flashlfq(conf):
out_df["Base Sequence"] = base_seq
out_df["Full Sequence"] = seq
out_df["Peptide Monoisotopic Mass"] = peptides.loc[passing, mass_column]
out_df["Scan Retention Time"] = peptides.loc[passing, rt_column] / 60
out_df["Scan Retention Time"] = peptides.loc[passing, rt_column]
out_df["Precursor Charge"] = peptides.loc[passing, charge_column]

if isinstance(proteins, str):
Expand Down

0 comments on commit 27a1e3e

Please sign in to comment.