@@ -689,9 +689,9 @@ spectra(data) <- sps_cent
689689
690690#' Plot the centroided data for Serine
691691data |>
692- filterRt(rt = c(175, 189)) |>
693- filterMz(mz = c(106.02, 106.07)) |>
694- plot()
692+ filterRt(rt = c(175, 189)) |>
693+ filterMz(mz = c(106.02, 106.07)) |>
694+ plot()
695695```
696696
697697The impact of the centroiding is clearly visible: each signal for an ion in a
@@ -1059,7 +1059,7 @@ for all possible refinement options).
10591059To fuse the wrongly split peaks in the second row, we use the
10601060` MergeNeighboringPeaksParam ` algorithm that merges chromatographic peaks that
10611061are overlapping on the * m/z* and retention time dimension for which the signal
1062- between them is lower than a certain value. We specify ` expandRt = 4 ` to expand
1062+ between them is higher than a certain value. We specify ` expandRt = 4 ` to expand
10631063the retention time width of each peak by 4 seconds on each side and set `minProp
10641064= 0.75`. All chromatographic peaks with a distance tail to head in retention
10651065time dimension that is less ` 2 * expandRt ` and for which the intensity between
@@ -1105,8 +1105,8 @@ bpc_raw <- chromatogram(data, aggregationFun = "max", chromPeaks = "none")
11051105plot(bpc_raw, peakType = "none")
11061106```
11071107
1108- While both samples were measured with the same setup in the same measurement
1109- run, slight drifts of the signal are visible. These were also already visible in
1108+ Both samples were measured with the same setup in the same measurement run, but
1109+ still small drifts of the signal are visible. These were also already visible in
11101110the EIC for serine, that we plot again below.
11111111
11121112``` {r}
@@ -1177,7 +1177,7 @@ data <- groupChromPeaks(data, pdp)
11771177
11781178This step now grouped chromatographic peaks across samples and defined so called
11791179LC-MS features (or simply features). We can thus now run the alignment using the
1180- * peakGroups* algorithm. The main parameter to define the hook peaks is (again)
1180+ * peakGroups* algorithm. The main parameter to define the hook peaks is
11811181` minFraction ` . Similar to the definition above, ` minFraction ` refers to the
11821182proportion of samples in which a chromatographic peak needs to be present. By
11831183setting ` minFraction = 1 ` we base the alignment on features with peaks
0 commit comments