Skip to content

Commit

Permalink
small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown committed Apr 23, 2018
1 parent abf031c commit 7f8d9d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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] : "";
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class Log2FoldChangeAnalysis
public Dictionary<Tuple<string, string>, double> conditionBiorep_stdevLog2I { get; set; } = new Dictionary<Tuple<string, string>, double>(); // used to impute bft-intensities
public Dictionary<Tuple<string, string>, double> conditionBiorepIntensitySums { get; set; } = new Dictionary<Tuple<string, string>, 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<ProteinWithGoTerms> inducedOrRepressedProteins { get; set; } = new List<ProteinWithGoTerms>(); // 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; }
Expand Down

0 comments on commit 7f8d9d7

Please sign in to comment.