コード例 #1
0
ファイル: ResultList.cs プロジェクト: zrolfs/pwiz
 protected override PrecursorResult ConstructItem(ResultFileKey key)
 {
     return(new PrecursorResult(Precursor, GetResultFile(key)));
 }
コード例 #2
0
ファイル: ResultList.cs プロジェクト: zrolfs/pwiz
 protected ResultFile GetResultFile(ResultFileKey key)
 {
     return(new ResultFile(new Replicate(DataSchema, key.ReplicateIndex), key.ChromFileInfoId, key.OptimizationStep));
 }
コード例 #3
0
ファイル: ResultList.cs プロジェクト: zrolfs/pwiz
 protected override PeptideResult ConstructItem(ResultFileKey key)
 {
     return(new PeptideResult(Peptide, GetResultFile(key)));
 }
コード例 #4
0
ファイル: ResultList.cs プロジェクト: zrolfs/pwiz
 protected override TransitionResult ConstructItem(ResultFileKey key)
 {
     return(new TransitionResult(Transition, GetResultFile(key)));
 }
コード例 #5
0
ファイル: ResultFileKey.cs プロジェクト: lgatto/proteowizard
 protected bool Equals(ResultFileKey other)
 {
     return ReplicateIndex == other.ReplicateIndex && ReferenceEquals(ChromFileInfoId, other.ChromFileInfoId) && OptimizationStep == other.OptimizationStep;
 }
コード例 #6
0
ファイル: ResultFileKey.cs プロジェクト: zrolfs/pwiz
 protected bool Equals(ResultFileKey other)
 {
     return(ReplicateIndex == other.ReplicateIndex && ReferenceEquals(ChromFileInfoId, other.ChromFileInfoId) && OptimizationStep == other.OptimizationStep);
 }
コード例 #7
0
 protected override MultiPrecursorResult ConstructItem(ResultFileKey key)
 {
     return(new MultiPrecursorResult(DataSchema, DocNodes, key));
 }
コード例 #8
0
 protected override MultiTransitionResult ConstructItem(ResultFileKey key)
 {
     return(new MultiTransitionResult(DataSchema, DocNodes, key));
 }