コード例 #1
0
ファイル: FeatureNode.cs プロジェクト: javamng/GitHUB
 protected FeatureNode(IsotopomerFeatures isotopomerFeatures, IonType ionType, Feature precursorFeature, GroupParameter groupParameter)
 {
     _isotopomerFeatures = isotopomerFeatures;
     FragmentIonClassBase = ionType;
     PrecursorFeature = precursorFeature;
     GroupParameter = groupParameter;
     GetCorrelations();
 }
コード例 #2
0
 public PrecursorFeatureNode(IsotopomerFeatures isotopomerFeatures, GroupParameter parameter, SubScoreFactory scoringParams)
     : base(isotopomerFeatures, null, isotopomerFeatures.GetMostAbundantFeature(), parameter)
 {
     _scoringParams = scoringParams;
     Score          = GetScore();
 }
コード例 #3
0
 public PrecursorFeatureNode(IsotopomerFeatures isotopomerFeatures, GroupParameter parameter, SubScoreFactory scoringParams)
     : base(isotopomerFeatures, null, isotopomerFeatures.GetMostAbundantFeature(), parameter)
 {
     _scoringParams = scoringParams;
     Score = GetScore();
 }
コード例 #4
0
ファイル: FragmentFeatureNode.cs プロジェクト: javamng/GitHUB
 public FragmentFeatureNode(IsotopomerFeatures isotopomerFeatures, IonType fragmentIonClassBase, Feature precursorFeature,
     GroupParameter parameter, SubScoreFactory scoringParams)
     : base(isotopomerFeatures, fragmentIonClassBase, precursorFeature, parameter)
 {
     _scoringParams = scoringParams;
 }