예제 #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
 protected bool Equals(ResultFileKey other)
 {
     return ReplicateIndex == other.ReplicateIndex && ReferenceEquals(ChromFileInfoId, other.ChromFileInfoId) && OptimizationStep == other.OptimizationStep;
 }
예제 #6
0
 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));
 }