# default chunk options knitr::opts_chunk$set(collapse = TRUE, message = FALSE, comment = "#>")
# load libraries library(isoorbi) # for Orbitrap functions library(dplyr) # for data wrangling
This is an example for shot-noise analysis from Kantnerová et al. (2023).
# load and process data data <- # load file included in isoorbi package system.file(package = "isoorbi", "extdata", "testfile_shotnoise.isox") |> orbi_read_isox() |> # check data for satellite peaks orbi_flag_satellite_peaks() |> # make sure isotopocules are present in (almost) all scans, otherwise # shot noise analyses can be inaccurate orbi_flag_weak_isotopocules(min_percent = 90) |> # see if there are any AGC outliers orbi_flag_outliers(agc_fold_cutoff = 2)
This indicates that there were a few satellite peaks and weak isotopocules but no outliers.
Show the isotopocule coverage for the different amino acids, thus highlighting which isotopocules were detected in which scans. Note that 2H was highlighted as weak for Alanine, Arginine, and Phenylalanine. This is because of the high cutoff (90%) in orbi_flag_weak_isotopocules()
which is appropriate for shot-noise analyses but simply for inspecting ratios it would be reasonable to examine the 2H signal at least for Alanine.
#| label: fig-mrfa-isotopocule-coverage #| fig-cap: Isotopocule coverage #| fig-width: 8 #| fig-height: 7 #| warning: false data |> orbi_plot_isotopocule_coverage()
Show peaks that were flagged as satellite peaks.
#| label: fig-mrfa-satellite-peaks #| fig-cap: Satellite peaks #| fig-width: 8 #| fig-height: 7 #| warning: false data |> orbi_plot_satellite_peaks()
#| label: fig-mrfa-intensity #| fig-cap: Isotopocule intensity for M0 ion #| fig-width: 8 #| fig-height: 7 #| warning: false data |> orbi_plot_raw_data( isotopocules = "M0", y = intensity, y_scale = "log" )
# calculate ratios vs basepeak data_w_bp <- data |> orbi_define_basepeak("M0") # calculate shot noise shot_noise <- data_w_bp |> orbi_analyze_shot_noise() # export shot noise to an Excel file shot_noise |> orbi_export_data_to_excel("shot_noise.xlsx")
#| include: false unlink("shot_noise.xlsx")
# example of the first few rows of the shot-noise calculations shot_noise |> arrange(compound, isotopocule, scan.no) |> select(compound, scan.no, time.min, isotopocule, ratio, ratio_rel_se.permil, shot_noise.permil) |> head(10) |> knitr::kable()
#| label: fig-mrfa-ratios #| fig-cap: Isotopocule ratios vs M0 #| fig-width: 8 #| fig-height: 7 #| warning: false data_w_bp |> orbi_plot_raw_data(y = ratio)
#| label: fig-mrfa-shotnoise #| fig-cap: amino acids shotnoise #| warning: false #| fig-width: 8 #| fig-height: 10 shot_noise |> orbi_plot_shot_noise()
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.