From 852a1b43be909f9250509da223e1a76c802046ad Mon Sep 17 00:00:00 2001 From: Yuki Matsuzawa Date: Thu, 16 Jul 2026 11:29:25 +0900 Subject: [PATCH] Add GCMS normalized feature export Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- src/MSDIAL5/MsdialGuiApp/Model/Gcms/GcmsMethodModel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MSDIAL5/MsdialGuiApp/Model/Gcms/GcmsMethodModel.cs b/src/MSDIAL5/MsdialGuiApp/Model/Gcms/GcmsMethodModel.cs index a5910e1e2..c407f4e5b 100644 --- a/src/MSDIAL5/MsdialGuiApp/Model/Gcms/GcmsMethodModel.cs +++ b/src/MSDIAL5/MsdialGuiApp/Model/Gcms/GcmsMethodModel.cs @@ -88,8 +88,8 @@ public GcmsMethodModel(AnalysisFileBeanModelCollection analysisFileBeanModelColl [ new ExportType("Raw data (Height)", new LegacyQuantValueAccessor("Height", storage.Parameter), "Height", stats, true), new ExportType("Raw data (Area)", new LegacyQuantValueAccessor("Area", storage.Parameter), "Area", stats), - //new ExportType("Normalized data (Height)", new LegacyQuantValueAccessor("Normalized height", storage.Parameter), "NormalizedHeight", stats, isNormalized), - //new ExportType("Normalized data (Area)", new LegacyQuantValueAccessor("Normalized area", storage.Parameter), "NormalizedArea", stats, isNormalized), + new ExportType("Normalized data (Height)", new LegacyQuantValueAccessor("Normalized height", storage.Parameter), "NormalizedHeight", stats, isNormalized), + new ExportType("Normalized data (Area)", new LegacyQuantValueAccessor("Normalized area", storage.Parameter), "NormalizedArea", stats, isNormalized), new ExportType("Peak ID", new LegacyQuantValueAccessor("ID", storage.Parameter), "PeakID"), new ExportType("Quant mass", new LegacyQuantValueAccessor("MZ", storage.Parameter), "Quant mass"), new ExportType("Retention time", new LegacyQuantValueAccessor("RT", storage.Parameter), "Rt"),