From 7f8d9d7429ff7881e6bf9292ecf0b042118b0790 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 23 Apr 2018 14:22:51 -0500 Subject: [PATCH] small changes --- ProteoformSuiteGUI/DisplayObjects/DisplayQuantitativeValues.cs | 3 ++- .../StatisticalAnalysis/Log2FoldChangeAnalysis.cs | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ProteoformSuiteGUI/DisplayObjects/DisplayQuantitativeValues.cs b/ProteoformSuiteGUI/DisplayObjects/DisplayQuantitativeValues.cs index 05ba3f35..442cc383 100644 --- a/ProteoformSuiteGUI/DisplayObjects/DisplayQuantitativeValues.cs +++ b/ProteoformSuiteGUI/DisplayObjects/DisplayQuantitativeValues.cs @@ -51,7 +51,8 @@ public string Theoretical { get { - return proteoform.linked_proteoform_references != null ? proteoform.linked_proteoform_references.First().accession.Split('_')[0] : ""; + return proteoform as TopDownProteoform != null ? proteoform.accession.Split('_')[0] : + proteoform.linked_proteoform_references != null ? proteoform.linked_proteoform_references.First().accession.Split('_')[0] : ""; } } diff --git a/ProteoformSuiteInternal/StatisticalAnalysis/Log2FoldChangeAnalysis.cs b/ProteoformSuiteInternal/StatisticalAnalysis/Log2FoldChangeAnalysis.cs index be7a46a4..adbd61b8 100644 --- a/ProteoformSuiteInternal/StatisticalAnalysis/Log2FoldChangeAnalysis.cs +++ b/ProteoformSuiteInternal/StatisticalAnalysis/Log2FoldChangeAnalysis.cs @@ -15,7 +15,7 @@ public class Log2FoldChangeAnalysis public Dictionary, double> conditionBiorep_stdevLog2I { get; set; } = new Dictionary, double>(); // used to impute bft-intensities public Dictionary, double> conditionBiorepIntensitySums { get; set; } = new Dictionary, double>(); // used to normalize columns public double benjiHoch_fdr { get; set; } = 0.05; - public double minFoldChange { get; set; } = 2.0; + public double minFoldChange { get; set; } = 1.0; public List inducedOrRepressedProteins { get; set; } = new List(); // This is the list of proteins from proteoforms that underwent significant induction or repression public GoAnalysis GoAnalysis { get; set; } = new GoAnalysis(); public QuantitativeDistributions QuantitativeDistributions { get; set; }