From 1e6b3d6356b6a5de90576ed65bc76775ec1d4f2c Mon Sep 17 00:00:00 2001 From: mschwoerer <82171591+mschwoer@users.noreply.github.com> Date: Tue, 21 Jan 2025 12:58:04 +0100 Subject: [PATCH] reorder --- alphabase/psm_reader/keys.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/alphabase/psm_reader/keys.py b/alphabase/psm_reader/keys.py index 216f38e0..c2349519 100644 --- a/alphabase/psm_reader/keys.py +++ b/alphabase/psm_reader/keys.py @@ -44,6 +44,7 @@ class PsmDfCols(metaclass=ConstantsClass): MOBILITY = "mobility" PEPTIDE_FDR = "peptide_fdr" PROTEIN_FDR = "protein_fdr" + INTENSITY = "intensity" RAW_NAME = "raw_name" CHARGE = "charge" @@ -58,9 +59,6 @@ class PsmDfCols(metaclass=ConstantsClass): _GENES = "genes" _QUERY_ID = "query_id" - # part of psm_reader_yaml, but not directly referenced - INTENSITY = "intensity" - class LibPsmDfCols(metaclass=ConstantsClass): """Constants for accessing the columns of a Library PSM dataframe."""