Clustering Spectra from High Resolution DI-MS/MS Data Using CluMSID

Tobias Depke

November 03, 2023

Introduction

Although originally developed for liquid chromatography-tandem mass spectrometry (LC-MS/MS) data, CluMSID can also be used with direct infusion-tandem mass spectrometry (DI-MS/MS) data.

Generally, the missing retention time dimension makes feature annotation in metabolomics harder but if only direct infusion data is at hand, CluMSID can help to get an overview of the chemodiversity of a sample measured by DI-MS/MS.

In this example, we will use a similar sample (1uL Pseudomonas aeruginosa PA14 cell extract) as in the General Tutorial, measured on the same machine, a Bruker maxisHD qTOF operated in ESI-(+) mode with auto-MS/MS but without chromatographic separation.

Data import

We load the file from the CluMSIDdata package:

library(CluMSID)
library(CluMSIDdata)

DIfile <- system.file("extdata", 
                        "PA14_maxis_DI.mzXML",
                        package = "CluMSIDdata")

Data preprocessing

The extraction of spectra works the same way as with LC-MS/MS data:

ms2list <- extractMS2spectra(DIfile)
length(ms2list)
#> [1] 373

Merging of redundant spectra is less straightforward when retention time is not available. Depending on the MS/MS method it can be next to impossible to decide whether two spectra with the same precursor m/z and similar fragmentation patterns derive from the same analyte or from two different but structurally similar ones.

In this example, we would like to merge spectra with identical precursor ions only if they were recorded one right after another. We can do so by setting rt_tolerance to 1 second:

featlist <- mergeMS2spectra(ms2list, rt_tolerance = 1)
length(featlist)
#> [1] 349

We see that we have hardly reduced the number of spectra in the list. If we would decide to merge all spectra with identical precursor m/z from the entire run, we could do so by setting rt_tolerance to the duration of the run, in this case approx. 250 seconds:

testlist <- mergeMS2spectra(ms2list, rt_tolerance = 250)
length(testlist)
#> [1] 75

The resulting number of spectra is drastically lower but the danger of merging spectra that do not actually derive from the same analyte is also very big.

Generation of distance matrix

In this very explorative example, we skip the integration of previous knowledge on feature identities and generate a distance matrix right away:

distmat <- distanceMatrix(featlist)

Data exploration

Starting from this distance matrix, we can use all the data exploration functions that CluMSID offers. In this example workflow, we look at a cluster dendrogram:

HCplot(distmat, cex = 0.5)

Figure 1: Circularised dendrogram as a result of agglomerative hierarchical clustering with average linkage as agglomeration criterion based on MS2 spectra similarities of the DI-MS/MS example data set. Each leaf represents one feature and colours encode cluster affiliation of the features. Leaf labels display feature IDs, along with feature annotations, if existent. Distance from the central point is indicative of the height of the dendrogram.

It is directly obvious that we have some spectra that are nearly identical and thus most likely derive from the same analyte, e.g. the many spectra with a precursor m/z of 270.19. But we still see nice clustering of similar spectra with different precursor m/z, e.g. the huge gray cluster that contains a lot of different alkylquinolone type metabolites (see General Tutorial).

In conclusion, CluMSID is very useful to provide an overview of spectral similarities within DI-MS/MS runs but wherever annotation is in the focus, one should not do without the additional layer of information created by chromatographic separation.

Session Info

sessionInfo()
#> R Under development (unstable) (2023-10-22 r85388)
#> Platform: x86_64-pc-linux-gnu
#> Running under: Ubuntu 22.04.3 LTS
#> 
#> Matrix products: default
#> BLAS:   /home/biocbuild/bbs-3.19-bioc/R/lib/libRblas.so 
#> LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
#> 
#> locale:
#>  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
#>  [3] LC_TIME=en_GB              LC_COLLATE=C              
#>  [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
#>  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
#>  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
#> [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
#> 
#> time zone: America/New_York
#> tzcode source: system (glibc)
#> 
#> attached base packages:
#> [1] stats     graphics  grDevices utils     datasets  methods   base     
#> 
#> other attached packages:
#> [1] CluMSIDdata_1.19.0 CluMSID_1.19.0    
#> 
#> loaded via a namespace (and not attached):
#>  [1] tidyselect_1.2.0      viridisLite_0.4.2     dplyr_1.1.3          
#>  [4] bitops_1.0-7          lazyeval_0.2.2        fastmap_1.1.1        
#>  [7] reshape_0.8.9         GGally_2.1.2          XML_3.99-0.15        
#> [10] digest_0.6.33         lifecycle_1.0.3       cluster_2.1.4        
#> [13] ProtGenerics_1.35.0   statmod_1.5.0         magrittr_2.0.3       
#> [16] dbscan_1.1-11         compiler_4.4.0        rlang_1.1.1          
#> [19] sass_0.4.7            tools_4.4.0           utf8_1.2.4           
#> [22] yaml_2.3.7            data.table_1.14.8     sna_2.7-1            
#> [25] knitr_1.45            htmlwidgets_1.6.2     plyr_1.8.9           
#> [28] RColorBrewer_1.1-3    BiocParallel_1.37.0   KernSmooth_2.23-22   
#> [31] purrr_1.0.2           BiocGenerics_0.49.1   grid_4.4.0           
#> [34] stats4_4.4.0          preprocessCore_1.65.0 fansi_1.0.5          
#> [37] caTools_1.18.2        colorspace_2.1-0      ggplot2_3.4.4        
#> [40] scales_1.2.1          gtools_3.9.4          iterators_1.0.14     
#> [43] MASS_7.3-60.1         cli_3.6.1             mzR_2.37.0           
#> [46] rmarkdown_2.25        generics_0.1.3        httr_1.4.7           
#> [49] ncdf4_1.21            ape_5.7-1             cachem_1.0.8         
#> [52] affy_1.81.0           zlibbioc_1.49.0       network_1.18.1       
#> [55] parallel_4.4.0        impute_1.77.0         BiocManager_1.30.22  
#> [58] vsn_3.71.0            vctrs_0.6.4           jsonlite_1.8.7       
#> [61] IRanges_2.37.0        S4Vectors_0.41.1      MALDIquant_1.22.1    
#> [64] clue_0.3-65           foreach_1.5.2         plotly_4.10.3        
#> [67] limma_3.59.1          tidyr_1.3.0           jquerylib_0.1.4      
#> [70] affyio_1.73.0         glue_1.6.2            MSnbase_2.29.0       
#> [73] statnet.common_4.9.0  codetools_0.2-19      gtable_0.3.4         
#> [76] mzID_1.41.0           munsell_0.5.0         tibble_3.2.1         
#> [79] pillar_1.9.0          pcaMethods_1.95.0     htmltools_0.5.7      
#> [82] gplots_3.1.3          R6_2.5.1              doParallel_1.0.17    
#> [85] evaluate_0.23         lattice_0.22-5        Biobase_2.63.0       
#> [88] highr_0.10            bslib_0.5.1           Rcpp_1.0.11          
#> [91] coda_0.19-4           nlme_3.1-163          xfun_0.41            
#> [94] MsCoreUtils_1.15.1    pkgconfig_2.0.3