Example #1
0
 protected override PrecursorResult ConstructItem(ResultFileKey key)
 {
     return(new PrecursorResult(Precursor, GetResultFile(key)));
 }
Example #2
0
 protected ResultFile GetResultFile(ResultFileKey key)
 {
     return(new ResultFile(new Replicate(DataSchema, key.ReplicateIndex), key.ChromFileInfoId, key.OptimizationStep));
 }
Example #3
0
 protected override PeptideResult ConstructItem(ResultFileKey key)
 {
     return(new PeptideResult(Peptide, GetResultFile(key)));
 }
Example #4
0
 protected override TransitionResult ConstructItem(ResultFileKey key)
 {
     return(new TransitionResult(Transition, GetResultFile(key)));
 }
Example #5
0
 protected bool Equals(ResultFileKey other)
 {
     return ReplicateIndex == other.ReplicateIndex && ReferenceEquals(ChromFileInfoId, other.ChromFileInfoId) && OptimizationStep == other.OptimizationStep;
 }
Example #6
0
 protected bool Equals(ResultFileKey other)
 {
     return(ReplicateIndex == other.ReplicateIndex && ReferenceEquals(ChromFileInfoId, other.ChromFileInfoId) && OptimizationStep == other.OptimizationStep);
 }
 protected override MultiPrecursorResult ConstructItem(ResultFileKey key)
 {
     return(new MultiPrecursorResult(DataSchema, DocNodes, key));
 }
 protected override MultiTransitionResult ConstructItem(ResultFileKey key)
 {
     return(new MultiTransitionResult(DataSchema, DocNodes, key));
 }