-
Notifications
You must be signed in to change notification settings - Fork 4
/
ParentIonProcessing.cs
957 lines (818 loc) · 41.6 KB
/
ParentIonProcessing.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
using System;
using System.Collections.Generic;
using System.Linq;
using MASIC.Data;
using MASIC.Options;
namespace MASIC
{
/// <summary>
/// Class for tracking parent ions
/// </summary>
public class ParentIonProcessing : MasicEventNotifier
{
// Ignore Spelling: Da, Daltons, frag, MASIC, mrm
private readonly ReporterIons mReporterIons;
/// <summary>
/// Constructor
/// </summary>
/// <param name="reporterIons"></param>
public ParentIonProcessing(ReporterIons reporterIons)
{
mReporterIons = reporterIons;
}
/// <summary>
/// Add the parent ion, or associate the fragmentation scan with an existing parent ion
/// </summary>
/// <param name="scanList"></param>
/// <param name="surveyScanIndex"></param>
/// <param name="parentIonMZ"></param>
/// <param name="fragScanIndex"></param>
/// <param name="spectraCache"></param>
/// <param name="sicOptions"></param>
/// <param name="isDIA"></param>
public void AddUpdateParentIons(
ScanList scanList,
int surveyScanIndex,
double parentIonMZ,
int fragScanIndex,
SpectraCache spectraCache,
SICOptions sicOptions,
bool isDIA)
{
AddUpdateParentIons(scanList, surveyScanIndex, parentIonMZ, 0, 0, fragScanIndex, spectraCache, sicOptions, isDIA);
}
/// <summary>
/// Add the parent ion, or associate the fragmentation scan with an existing parent ion
/// </summary>
/// <param name="scanList"></param>
/// <param name="surveyScanIndex"></param>
/// <param name="parentIonMZ"></param>
/// <param name="mrmInfo"></param>
/// <param name="spectraCache"></param>
/// <param name="sicOptions"></param>
public void AddUpdateParentIons(
ScanList scanList,
int surveyScanIndex,
double parentIonMZ,
MRMScanInfo mrmInfo,
SpectraCache spectraCache,
SICOptions sicOptions)
{
for (var mrmIndex = 0; mrmIndex < mrmInfo.MRMMassCount; mrmIndex++)
{
var mrmDaughterMZ = mrmInfo.MRMMassList[mrmIndex].CentralMass;
var mrmToleranceHalfWidth = Math.Round((mrmInfo.MRMMassList[mrmIndex].EndMass - mrmInfo.MRMMassList[mrmIndex].StartMass) / 2, 6);
if (mrmToleranceHalfWidth < 0.001)
{
mrmToleranceHalfWidth = 0.001;
}
AddUpdateParentIons(scanList, surveyScanIndex, parentIonMZ, mrmDaughterMZ, mrmToleranceHalfWidth, scanList.FragScans.Count - 1, spectraCache, sicOptions, false);
}
}
/// <summary>
/// <para>
/// Add the parent ion, or associate the fragmentation scan with an existing parent ion
/// </para>
/// <para>
/// Checks to see if the parent ion specified by surveyScanIndex and parentIonMZ exists in .ParentIons()
/// If mrmDaughterMZ is > 0, also considers that value when determining uniqueness
/// </para>
/// <para>
/// If the parent ion entry already exists, adds an entry to .FragScanIndices()
/// If it does not exist, adds a new entry to .ParentIons()
/// </para>
/// </summary>
/// <param name="scanList"></param>
/// <param name="surveyScanIndex">
/// If this is less than 0 the first MS2 scan(s) in the file occurred before we encountered a survey scan
/// In this case, we cannot properly associate the fragmentation scan with a survey scan
/// </param>
/// <param name="parentIonMZ"></param>
/// <param name="mrmDaughterMZ"></param>
/// <param name="mrmToleranceHalfWidth"></param>
/// <param name="fragScanIndex">This is typically equal to scanList.FragScans.Count - 1</param>
/// <param name="spectraCache"></param>
/// <param name="sicOptions"></param>
/// <param name="isDIA"></param>
private void AddUpdateParentIons(
ScanList scanList,
int surveyScanIndex,
double parentIonMZ,
double mrmDaughterMZ,
double mrmToleranceHalfWidth,
int fragScanIndex,
SpectraCache spectraCache,
SICOptions sicOptions,
bool isDIA)
{
const double MINIMUM_TOLERANCE_PPM = 0.01;
const double MINIMUM_TOLERANCE_DA = 0.0001;
var parentIonIndex = 0;
double parentIonTolerance;
if (sicOptions.SICToleranceIsPPM)
{
parentIonTolerance = sicOptions.SICTolerance / sicOptions.CompressToleranceDivisorForPPM;
if (parentIonTolerance < MINIMUM_TOLERANCE_PPM)
{
parentIonTolerance = MINIMUM_TOLERANCE_PPM;
}
}
else
{
parentIonTolerance = sicOptions.SICTolerance / sicOptions.CompressToleranceDivisorForDa;
if (parentIonTolerance < MINIMUM_TOLERANCE_DA)
{
parentIonTolerance = MINIMUM_TOLERANCE_DA;
}
}
// See if an entry exists yet in .ParentIons for the parent ion for this fragmentation scan
var matchFound = false;
if (mrmDaughterMZ > 0)
{
if (sicOptions.SICToleranceIsPPM)
{
// Force the tolerances to 0.01 m/z units
parentIonTolerance = MINIMUM_TOLERANCE_PPM;
}
else
{
// Force the tolerances to 0.01 m/z units
parentIonTolerance = MINIMUM_TOLERANCE_DA;
}
}
if (parentIonMZ > 0 && !isDIA)
{
var parentIonToleranceDa = GetParentIonToleranceDa(sicOptions, parentIonMZ, parentIonTolerance);
for (parentIonIndex = scanList.ParentIons.Count - 1; parentIonIndex >= 0; parentIonIndex += -1)
{
if (scanList.ParentIons[parentIonIndex].SurveyScanIndex >= surveyScanIndex)
{
if (Math.Abs(scanList.ParentIons[parentIonIndex].MZ - parentIonMZ) <= parentIonToleranceDa)
{
if (mrmDaughterMZ < double.Epsilon ||
Math.Abs(scanList.ParentIons[parentIonIndex].MRMDaughterMZ - mrmDaughterMZ) <= parentIonToleranceDa)
{
matchFound = true;
break;
}
}
}
else
{
break;
}
}
}
if (!matchFound)
{
// Add a new parent ion entry to .ParentIons(), but only if surveyScanIndex is non-negative
if (surveyScanIndex < 0)
return;
var newParentIon = new ParentIonInfo(parentIonMZ)
{
SurveyScanIndex = surveyScanIndex,
CustomSICPeak = false,
MRMDaughterMZ = mrmDaughterMZ,
MRMToleranceHalfWidth = mrmToleranceHalfWidth,
IsDIA = isDIA
};
newParentIon.FragScanIndices.Add(fragScanIndex);
newParentIon.OptimalPeakApexScanNumber = scanList.SurveyScans[surveyScanIndex].ScanNumber; // Was: .FragScans(fragScanIndex).ScanNumber
newParentIon.PeakApexOverrideParentIonIndex = -1;
scanList.FragScans[fragScanIndex].FragScanInfo.ParentIonInfoIndex = scanList.ParentIons.Count;
// Look for .MZ in the survey scan, using a tolerance of parentIonTolerance
// If found, update the mass to the matched ion
// This is done to determine the parent ion mass more precisely
if (sicOptions.RefineReportedParentIonMZ &&
FindClosestMZ(spectraCache, scanList.SurveyScans, surveyScanIndex, parentIonMZ, parentIonTolerance, out var parentIonMZMatch))
{
newParentIon.UpdateMz(parentIonMZMatch);
}
scanList.ParentIons.Add(newParentIon);
return;
}
// Add a new entry to .FragScanIndices() for the matching parent ion
// However, do not add a new entry if this is an MRM scan
if (mrmDaughterMZ < double.Epsilon)
{
scanList.ParentIons[parentIonIndex].FragScanIndices.Add(fragScanIndex);
scanList.FragScans[fragScanIndex].FragScanInfo.ParentIonInfoIndex = parentIonIndex;
}
}
private void AppendParentIonToUniqueMZEntry(
ScanList scanList,
int parentIonIndex,
UniqueMZListItem mzListEntry,
double searchMZOffset)
{
var parentIon = scanList.ParentIons[parentIonIndex];
if (mzListEntry.MatchCount == 0)
{
mzListEntry.MZAvg = parentIon.MZ - searchMZOffset;
mzListEntry.MatchIndices.Add(parentIonIndex);
}
else
{
// Update the average MZ: NewAvg = (OldAvg * OldCount + NewValue) / NewCount
mzListEntry.MZAvg = (mzListEntry.MZAvg * mzListEntry.MatchCount + (parentIon.MZ - searchMZOffset)) / (mzListEntry.MatchCount + 1);
mzListEntry.MatchIndices.Add(parentIonIndex);
}
var sicStats = parentIon.SICStats;
if (sicStats.Peak.MaxIntensityValue > mzListEntry.MaxIntensity || mzListEntry.MatchCount == 1)
{
mzListEntry.MaxIntensity = sicStats.Peak.MaxIntensityValue;
if (sicStats.ScanTypeForPeakIndices == ScanList.ScanTypeConstants.FragScan)
{
mzListEntry.ScanNumberMaxIntensity = scanList.FragScans[sicStats.PeakScanIndexMax].ScanNumber;
mzListEntry.ScanTimeMaxIntensity = scanList.FragScans[sicStats.PeakScanIndexMax].ScanTime;
}
else
{
mzListEntry.ScanNumberMaxIntensity = scanList.SurveyScans[sicStats.PeakScanIndexMax].ScanNumber;
mzListEntry.ScanTimeMaxIntensity = scanList.SurveyScans[sicStats.PeakScanIndexMax].ScanTime;
}
mzListEntry.ParentIonIndexMaxIntensity = parentIonIndex;
}
if (sicStats.Peak.Area > mzListEntry.MaxPeakArea || mzListEntry.MatchCount == 1)
{
mzListEntry.MaxPeakArea = sicStats.Peak.Area;
mzListEntry.ParentIonIndexMaxPeakArea = parentIonIndex;
}
}
/// <summary>
/// Compare the fragmentation spectra for the two parent ions
/// </summary>
/// <remarks>
/// Returns 0 if no similarity or no spectra to compare
/// Returns -1 if an error
/// </remarks>
/// <param name="scanList"></param>
/// <param name="spectraCache"></param>
/// <param name="parentIonIndex1"></param>
/// <param name="parentIonIndex2"></param>
/// <param name="binningOptions"></param>
/// <param name="noiseThresholdOptions"></param>
/// <param name="dataImportUtilities"></param>
/// <returns>
/// The highest similarity score (ranging from 0 to 1, where 1 is a perfect match)
/// </returns>
private float CompareFragSpectraForParentIons(
ScanList scanList,
SpectraCache spectraCache,
int parentIonIndex1,
int parentIonIndex2,
BinningOptions binningOptions,
MASICPeakFinder.BaselineNoiseOptions noiseThresholdOptions,
DataInput.DataImport dataImportUtilities)
{
float highestSimilarityScore;
try
{
if (scanList.ParentIons[parentIonIndex1].CustomSICPeak || scanList.ParentIons[parentIonIndex2].CustomSICPeak)
{
// Custom SIC values do not have fragmentation spectra; nothing to compare
highestSimilarityScore = 0;
}
else if (scanList.ParentIons[parentIonIndex1].MRMDaughterMZ > 0 || scanList.ParentIons[parentIonIndex2].MRMDaughterMZ > 0)
{
// MRM Spectra should not be compared
highestSimilarityScore = 0;
}
else
{
highestSimilarityScore = 0;
foreach (var fragSpectrumIndex1 in scanList.ParentIons[parentIonIndex1].FragScanIndices)
{
if (!spectraCache.GetSpectrum(scanList.FragScans[fragSpectrumIndex1].ScanNumber, out var spectrum1, false))
{
SetLocalErrorCode(clsMASIC.MasicErrorCodes.ErrorUncachingSpectrum);
return -1;
}
// ReSharper disable once ConditionIsAlwaysTrueOrFalse
if (!clsMASIC.DISCARD_LOW_INTENSITY_MSMS_DATA_ON_LOAD)
#pragma warning disable 162
// ReSharper disable HeuristicUnreachableCode
{
dataImportUtilities.DiscardDataBelowNoiseThreshold(spectrum1, scanList.FragScans[fragSpectrumIndex1].BaselineNoiseStats.NoiseLevel, 0, 0, noiseThresholdOptions);
}
// ReSharper restore HeuristicUnreachableCode
#pragma warning restore 162
foreach (var fragSpectrumIndex2 in scanList.ParentIons[parentIonIndex2].FragScanIndices)
{
if (!spectraCache.GetSpectrum(scanList.FragScans[fragSpectrumIndex2].ScanNumber, out var spectrum2, false))
{
SetLocalErrorCode(clsMASIC.MasicErrorCodes.ErrorUncachingSpectrum);
return -1;
}
// ReSharper disable once ConditionIsAlwaysTrueOrFalse
if (!clsMASIC.DISCARD_LOW_INTENSITY_MSMS_DATA_ON_LOAD)
#pragma warning disable 162
// ReSharper disable HeuristicUnreachableCode
{
dataImportUtilities.DiscardDataBelowNoiseThreshold(spectrum2, scanList.FragScans[fragSpectrumIndex2].BaselineNoiseStats.NoiseLevel, 0, 0, noiseThresholdOptions);
}
// ReSharper restore HeuristicUnreachableCode
#pragma warning restore 162
var similarityScore = CompareSpectra(spectrum1, spectrum2, binningOptions);
if (similarityScore > highestSimilarityScore)
{
highestSimilarityScore = similarityScore;
}
}
}
}
}
catch (Exception ex)
{
ReportError("Error in CompareFragSpectraForParentIons", ex);
return -1;
}
return highestSimilarityScore;
}
/// <summary>
/// Compares two spectra and returns a similarity score (ranging from 0 to 1)
/// </summary>
/// <remarks>
/// <para>
/// Both the standard binned data and the offset binned data are compared
/// </para>
/// <para>
/// If considerOffsetBinnedData = True, the larger of the two similarity scores is returned
/// </para>
/// <para>
/// Returns -1 if an error
/// </para>
/// </remarks>
/// The highest similarity score (ranging from 0 to 1, where 1 is a perfect match)
/// <param name="fragSpectrum1"></param>
/// <param name="fragSpectrum2"></param>
/// <param name="binningOptions"></param>
/// <param name="considerOffsetBinnedData"></param>
private float CompareSpectra(
MSSpectrum fragSpectrum1,
MSSpectrum fragSpectrum2,
BinningOptions binningOptions,
bool considerOffsetBinnedData = true)
{
var binnedSpectrum1 = new BinnedData();
var binnedSpectrum2 = new BinnedData();
try
{
var dataComparer = new Correlation(binningOptions);
RegisterEvents(dataComparer);
const Correlation.CorrelationMethodConstants correlationMethod = Correlation.CorrelationMethodConstants.Pearson;
// Bin the data in the first spectrum
var success = CompareSpectraBinData(dataComparer, fragSpectrum1, binnedSpectrum1);
if (!success)
return -1;
// Bin the data in the second spectrum
success = CompareSpectraBinData(dataComparer, fragSpectrum2, binnedSpectrum2);
if (!success)
return -1;
// Now compare the binned spectra
// Similarity will be 0 if either instance of BinnedIntensities has fewer than 5 data points
var similarity1 = dataComparer.Correlate(binnedSpectrum1.BinnedIntensities, binnedSpectrum2.BinnedIntensities, correlationMethod);
if (!considerOffsetBinnedData)
{
return similarity1;
}
var similarity2 = dataComparer.Correlate(binnedSpectrum1.BinnedIntensitiesOffset, binnedSpectrum2.BinnedIntensitiesOffset, correlationMethod);
return Math.Max(similarity1, similarity2);
}
catch (Exception ex)
{
ReportError("CompareSpectra: " + ex.Message, ex);
return -1;
}
}
private bool CompareSpectraBinData(
Correlation dataComparer,
MSSpectrum fragSpectrum,
BinnedData binnedSpectrum)
{
var xData = new List<float>(fragSpectrum.IonCount);
var yData = new List<float>(fragSpectrum.IonCount);
// Make a copy of the data, excluding any Reporter Ion data
for (var index = 0; index < fragSpectrum.IonCount; index++)
{
if (!Utilities.CheckPointInMZIgnoreRange(
fragSpectrum.IonsMZ[index],
mReporterIons.MZIntensityFilterIgnoreRangeStart,
mReporterIons.MZIntensityFilterIgnoreRangeEnd))
{
xData.Add((float)(fragSpectrum.IonsMZ[index]));
yData.Add((float)(fragSpectrum.IonsIntensity[index]));
}
}
binnedSpectrum.BinnedDataStartX = dataComparer.BinStartX;
binnedSpectrum.BinSize = dataComparer.BinSize;
// Note that the data in xData and yData should have already been filtered to discard data points below the noise threshold intensity
return dataComparer.BinData(xData, yData, binnedSpectrum.BinnedIntensities, binnedSpectrum.BinnedIntensitiesOffset);
}
private bool FindClosestMZ(
SpectraCache spectraCache,
IList<ScanInfo> scanList,
int spectrumIndex,
double searchMZ,
double toleranceMZ,
out double bestMatchMZ)
{
bool success;
bestMatchMZ = 0;
try
{
if (scanList[spectrumIndex].IonCount == 0 && scanList[spectrumIndex].IonCountRaw == 0)
{
// No data in this spectrum
success = false;
}
else if (!spectraCache.GetSpectrum(scanList[spectrumIndex].ScanNumber, out var spectrum, canSkipPool: true))
{
SetLocalErrorCode(clsMASIC.MasicErrorCodes.ErrorUncachingSpectrum);
success = false;
}
else
{
success = FindClosestMZ(spectrum.IonsMZ, spectrum.IonCount, searchMZ, toleranceMZ, out bestMatchMZ);
}
}
catch (Exception ex)
{
ReportError("Error in FindClosestMZ", ex);
success = false;
}
return success;
}
/// <summary>
/// Searches mzList for the closest match to searchMZ within tolerance bestMatchMZ
/// If a match is found, updates bestMatchMZ to the m/z of the match and returns True
/// </summary>
/// <param name="mzList"></param>
/// <param name="ionCount"></param>
/// <param name="searchMZ"></param>
/// <param name="toleranceMZ"></param>
/// <param name="bestMatchMZ"></param>
/// <returns>Closest m/z value</returns>
private bool FindClosestMZ(
IList<double> mzList,
int ionCount,
double searchMZ,
double toleranceMZ,
out double bestMatchMZ)
{
int closestMatchIndex;
var bestMassDifferenceAbs = 0.0;
try
{
closestMatchIndex = -1;
for (var dataIndex = 0; dataIndex < ionCount; dataIndex++)
{
var massDifferenceAbs = Math.Abs(mzList[dataIndex] - searchMZ);
if (massDifferenceAbs <= toleranceMZ)
{
if (closestMatchIndex < 0 || massDifferenceAbs < bestMassDifferenceAbs)
{
closestMatchIndex = dataIndex;
bestMassDifferenceAbs = massDifferenceAbs;
}
}
}
}
catch (Exception ex)
{
ReportError("Error in FindClosestMZ", ex);
closestMatchIndex = -1;
}
if (closestMatchIndex >= 0)
{
bestMatchMZ = mzList[closestMatchIndex];
return true;
}
bestMatchMZ = 0;
return false;
}
/// <summary>
/// Look for parent ions that have similar m/z values and are nearby one another in time
/// For the groups of similar ions, assign the scan number of the highest intensity parent ion to the other similar parent ions
/// </summary>
/// <param name="scanList"></param>
/// <param name="spectraCache"></param>
/// <param name="masicOptions"></param>
/// <param name="dataImportUtilities"></param>
/// <param name="ionUpdateCount"></param>
public bool FindSimilarParentIons(
ScanList scanList,
SpectraCache spectraCache,
MASICOptions masicOptions,
DataInput.DataImport dataImportUtilities,
out int ionUpdateCount)
{
ionUpdateCount = 0;
try
{
if (scanList.ParentIons.Count == 0)
{
return masicOptions.SuppressNoParentIonsError;
}
Console.Write("Finding similar parent ions ");
ReportMessage("Finding similar parent ions");
UpdateProgress(0, "Finding similar parent ions");
var similarParentIonsData = new SimilarParentIonsData(scanList.ParentIons.Count);
similarParentIonsData.UniqueMZList.Clear();
// Original m/z values, rounded to 2 decimal places
// Initialize the arrays
var mzList = new double[scanList.ParentIons.Count];
var intensityPointerArray = new int[scanList.ParentIons.Count];
var intensityList = new double[scanList.ParentIons.Count];
var findSimilarIonsDataCount = 0;
for (var index = 0; index < scanList.ParentIons.Count; index++)
{
bool includeParentIon;
if (scanList.ParentIons[index].IsDIA)
{
includeParentIon = false;
}
else if (scanList.ParentIons[index].MRMDaughterMZ > 0)
{
includeParentIon = false;
}
else if (masicOptions.CustomSICList.LimitSearchToCustomMZList)
{
includeParentIon = scanList.ParentIons[index].CustomSICPeak;
}
else
{
includeParentIon = true;
}
if (!includeParentIon)
continue;
similarParentIonsData.MZPointerArray[findSimilarIonsDataCount] = index;
mzList[findSimilarIonsDataCount] = Math.Round(scanList.ParentIons[index].MZ, 2);
intensityPointerArray[findSimilarIonsDataCount] = index;
intensityList[findSimilarIonsDataCount] = scanList.ParentIons[index].SICStats.Peak.MaxIntensityValue;
findSimilarIonsDataCount++;
}
if (similarParentIonsData.MZPointerArray.Length != findSimilarIonsDataCount && findSimilarIonsDataCount > 0)
{
var oldMZPointerArray = similarParentIonsData.MZPointerArray;
similarParentIonsData.MZPointerArray = new int[findSimilarIonsDataCount];
Array.Copy(oldMZPointerArray, similarParentIonsData.MZPointerArray, Math.Min(findSimilarIonsDataCount, oldMZPointerArray.Length));
var oldMzList = mzList;
mzList = new double[findSimilarIonsDataCount];
Array.Copy(oldMzList, mzList, Math.Min(findSimilarIonsDataCount, oldMzList.Length));
var oldIntensityPointerArray = intensityPointerArray;
intensityPointerArray = new int[findSimilarIonsDataCount];
Array.Copy(oldIntensityPointerArray, intensityPointerArray, Math.Min(findSimilarIonsDataCount, oldIntensityPointerArray.Length));
var oldIntensityList = intensityList;
intensityList = new double[findSimilarIonsDataCount];
Array.Copy(oldIntensityList, intensityList, Math.Min(findSimilarIonsDataCount, oldIntensityList.Length));
}
if (findSimilarIonsDataCount == 0)
{
if (masicOptions.SuppressNoParentIonsError)
{
return true;
}
return scanList.MRMDataPresent;
}
ReportMessage("FindSimilarParentIons: Sorting the mz arrays");
// Sort the MZ arrays
Array.Sort(mzList, similarParentIonsData.MZPointerArray);
ReportMessage("FindSimilarParentIons: Populate searchRange");
// Populate searchRange
// To prevent .FillWithData trying to sort mzList, set UsePointerIndexArray to false
// (the data was already sorted above)
var searchRange = new SearchRange
{
UsePointerIndexArray = false
};
searchRange.FillWithData(mzList);
ReportMessage("FindSimilarParentIons: Sort the intensity arrays");
// Sort the Intensity arrays
Array.Sort(intensityList, intensityPointerArray);
// Reverse the order of intensityPointerArray so that it is ordered from the most intense to the least intense ion
// Note: We don't really need to reverse intensityList since we're done using it, but
// it doesn't take long, it won't hurt, and it will keep intensityList synchronized with intensityPointerArray
Array.Reverse(intensityPointerArray);
Array.Reverse(intensityList);
ReportMessage("FindSimilarParentIons: Look for similar parent ions by using m/z and scan");
var lastLogTime = DateTime.UtcNow;
// Look for similar parent ions by using m/z and scan
// Step through the ions by decreasing intensity
var parentIonIndex = 0;
do
{
var originalIndex = intensityPointerArray[parentIonIndex];
if (similarParentIonsData.IonUsed[originalIndex])
{
// Parent ion was already used; move onto the next one
parentIonIndex++;
}
else
{
var mzListEntry = new UniqueMZListItem();
similarParentIonsData.UniqueMZList.Add(mzListEntry);
AppendParentIonToUniqueMZEntry(scanList, originalIndex, mzListEntry, 0);
similarParentIonsData.IonUsed[originalIndex] = true;
similarParentIonsData.IonInUseCount = 1;
// Look for other parent ions with m/z values in tolerance (must be within mass tolerance and scan tolerance)
// If new values are added, repeat the search using the updated udtUniqueMZList().MZAvg value
int ionInUseCountOriginal;
do
{
ionInUseCountOriginal = similarParentIonsData.IonInUseCount;
var currentMZ = mzListEntry.MZAvg;
if (currentMZ < double.Epsilon)
continue;
FindSimilarParentIonsWork(
spectraCache, currentMZ, 0, originalIndex,
scanList, similarParentIonsData,
masicOptions, dataImportUtilities, searchRange);
// Look for similar 1+ spaced m/z values
FindSimilarParentIonsWork(
spectraCache, currentMZ, 1, originalIndex,
scanList, similarParentIonsData,
masicOptions, dataImportUtilities, searchRange);
FindSimilarParentIonsWork(
spectraCache, currentMZ, -1, originalIndex,
scanList, similarParentIonsData,
masicOptions, dataImportUtilities, searchRange);
// Look for similar 2+ spaced m/z values
FindSimilarParentIonsWork(
spectraCache, currentMZ, 0.5, originalIndex,
scanList, similarParentIonsData,
masicOptions, dataImportUtilities, searchRange);
FindSimilarParentIonsWork(
spectraCache, currentMZ, -0.5, originalIndex,
scanList, similarParentIonsData,
masicOptions, dataImportUtilities, searchRange);
var parentIonToleranceDa = GetParentIonToleranceDa(masicOptions.SICOptions, currentMZ);
if (parentIonToleranceDa <= 0.25 && masicOptions.SICOptions.SimilarIonMZToleranceHalfWidth <= 0.15)
{
// Also look for similar 3+ spaced m/z values
FindSimilarParentIonsWork(
spectraCache, currentMZ, 0.666, originalIndex,
scanList, similarParentIonsData,
masicOptions, dataImportUtilities, searchRange);
FindSimilarParentIonsWork(
spectraCache, currentMZ, 0.333, originalIndex,
scanList, similarParentIonsData,
masicOptions, dataImportUtilities, searchRange);
FindSimilarParentIonsWork(
spectraCache, currentMZ, -0.333, originalIndex,
scanList, similarParentIonsData,
masicOptions, dataImportUtilities, searchRange);
FindSimilarParentIonsWork(
spectraCache, currentMZ, -0.666, originalIndex,
scanList, similarParentIonsData,
masicOptions, dataImportUtilities, searchRange);
}
}
while (similarParentIonsData.IonInUseCount > ionInUseCountOriginal);
parentIonIndex++;
}
if (findSimilarIonsDataCount > 1)
{
if (parentIonIndex % 100 == 0)
{
UpdateProgress((short)(parentIonIndex / (double)(findSimilarIonsDataCount - 1) * 100));
}
}
else
{
UpdateProgress(1);
}
UpdateCacheStats(spectraCache);
if (masicOptions.AbortProcessing)
{
scanList.ProcessingIncomplete = true;
break;
}
if (parentIonIndex % 100 == 0)
{
if (DateTime.UtcNow.Subtract(lastLogTime).TotalSeconds >= 10 || parentIonIndex % 500 == 0)
{
ReportMessage("Parent Ion Index: " + parentIonIndex);
Console.Write(".");
lastLogTime = DateTime.UtcNow;
}
}
}
while (parentIonIndex < findSimilarIonsDataCount);
Console.WriteLine();
ReportMessage("FindSimilarParentIons: Update the scan numbers for the unique ions");
// Update the optimal peak apex scan numbers for the unique ions
foreach (var uniqueMzListItem in similarParentIonsData.UniqueMZList)
{
for (var matchIndex = 0; matchIndex < uniqueMzListItem.MatchCount; matchIndex++)
{
var parentIonMatchIndex = uniqueMzListItem.MatchIndices[matchIndex];
if (scanList.ParentIons[parentIonMatchIndex].MZ < double.Epsilon ||
scanList.ParentIons[parentIonMatchIndex].OptimalPeakApexScanNumber == uniqueMzListItem.ScanNumberMaxIntensity)
{
continue;
}
ionUpdateCount++;
scanList.ParentIons[parentIonMatchIndex].OptimalPeakApexScanNumber = uniqueMzListItem.ScanNumberMaxIntensity;
scanList.ParentIons[parentIonMatchIndex].PeakApexOverrideParentIonIndex = uniqueMzListItem.ParentIonIndexMaxIntensity;
}
}
return true;
}
catch (Exception ex)
{
ReportError("Error in FindSimilarParentIons", ex, clsMASIC.MasicErrorCodes.FindSimilarParentIonsError);
return false;
}
}
private void FindSimilarParentIonsWork(
SpectraCache spectraCache,
double searchMZ,
double searchMZOffset,
int originalIndex,
ScanList scanList,
SimilarParentIonsData similarParentIonsData,
MASICOptions masicOptions,
DataInput.DataImport dataImportUtilities,
SearchRange searchRange)
{
var sicOptions = masicOptions.SICOptions;
var binningOptions = masicOptions.BinningOptions;
if (!searchRange.FindValueRange(
searchMZ + searchMZOffset,
sicOptions.SimilarIonMZToleranceHalfWidth,
out var matchIndexStart,
out var matchIndexEnd))
{
return;
}
for (var matchIndex = matchIndexStart; matchIndex <= matchIndexEnd; matchIndex++)
{
// See if the matches are unused and within the scan tolerance
var matchOriginalIndex = similarParentIonsData.MZPointerArray[matchIndex];
if (similarParentIonsData.IonUsed[matchOriginalIndex])
continue;
float timeDiff;
var uniqueMzListItem = similarParentIonsData.UniqueMZList.Last();
var sicStats = scanList.ParentIons[matchOriginalIndex].SICStats;
if (sicStats.ScanTypeForPeakIndices == ScanList.ScanTypeConstants.FragScan)
{
if (scanList.FragScans[sicStats.PeakScanIndexMax].ScanTime < float.Epsilon &&
uniqueMzListItem.ScanTimeMaxIntensity < float.Epsilon)
{
// Both elution times are 0; instead of computing the difference in scan time, compute the difference in scan number, then convert to minutes assuming the acquisition rate is 1 Hz (which is obviously a big assumption)
timeDiff = (float)(Math.Abs(scanList.FragScans[sicStats.PeakScanIndexMax].ScanNumber - uniqueMzListItem.ScanNumberMaxIntensity) / 60.0);
}
else
{
timeDiff = Math.Abs(scanList.FragScans[sicStats.PeakScanIndexMax].ScanTime - uniqueMzListItem.ScanTimeMaxIntensity);
}
}
else if (scanList.SurveyScans[sicStats.PeakScanIndexMax].ScanTime < float.Epsilon && uniqueMzListItem.ScanTimeMaxIntensity < float.Epsilon)
{
// Both elution times are 0; instead of computing the difference in scan time, compute the difference in scan number, then convert to minutes assuming the acquisition rate is 1 Hz (which is obviously a big assumption)
timeDiff = (float)(Math.Abs(scanList.SurveyScans[sicStats.PeakScanIndexMax].ScanNumber - uniqueMzListItem.ScanNumberMaxIntensity) / 60.0);
}
else
{
timeDiff = Math.Abs(scanList.SurveyScans[sicStats.PeakScanIndexMax].ScanTime - uniqueMzListItem.ScanTimeMaxIntensity);
}
if (timeDiff > sicOptions.SimilarIonToleranceHalfWidthMinutes)
continue;
// Match is within m/z and time difference; see if the fragmentation spectra patterns are similar
var similarityScore = CompareFragSpectraForParentIons(scanList, spectraCache, originalIndex, matchOriginalIndex, binningOptions, sicOptions.SICPeakFinderOptions.MassSpectraNoiseThresholdOptions, dataImportUtilities);
if (similarityScore <= sicOptions.SpectrumSimilarityMinimum)
continue;
// Yes, the spectra are similar
// Add this parent ion to uniqueMzListItem
AppendParentIonToUniqueMZEntry(scanList, matchOriginalIndex, uniqueMzListItem, searchMZOffset);
similarParentIonsData.IonUsed[matchOriginalIndex] = true;
similarParentIonsData.IonInUseCount++;
}
}
/// <summary>
/// Get the parent ion tolerance, in Daltons
/// </summary>
/// <param name="sicOptions"></param>
/// <param name="parentIonMZ"></param>
public static double GetParentIonToleranceDa(SICOptions sicOptions, double parentIonMZ)
{
return GetParentIonToleranceDa(sicOptions, parentIonMZ, sicOptions.SICTolerance);
}
/// <summary>
/// Get the parent ion tolerance specified by parentIonTolerance, in Daltons
/// Will convert from ppm to Da if sicOptions.SICToleranceIsPPM is true
/// </summary>
/// <param name="sicOptions"></param>
/// <param name="parentIonMZ"></param>
/// <param name="parentIonTolerance"></param>
public static double GetParentIonToleranceDa(SICOptions sicOptions, double parentIonMZ, double parentIonTolerance)
{
if (sicOptions.SICToleranceIsPPM)
{
return Utilities.PPMToMass(parentIonTolerance, parentIonMZ);
}
return parentIonTolerance;
}
}
}