Last updated: 2024-03-21

Checks: 7 0

Knit directory: mi_spatialomics/

This reproducible R Markdown analysis was created with workflowr (version 1.7.1). The Checks tab describes the reproducibility checks that were applied when the results were created. The Past versions tab lists the development history.


Great! Since the R Markdown file has been committed to the Git repository, you know the exact version of the code that produced these results.

Great job! The global environment was empty. Objects defined in the global environment can affect the analysis in your R Markdown file in unknown ways. For reproduciblity it’s best to always run the code in an empty environment.

The command set.seed(20230612) was run prior to running the code in the R Markdown file. Setting a seed ensures that any results that rely on randomness, e.g. subsampling or permutations, are reproducible.

Great job! Recording the operating system, R version, and package versions is critical for reproducibility.

Nice! There were no cached chunks for this analysis, so you can be confident that you successfully produced the results during this run.

Great job! Using relative paths to the files within your workflowr project makes it easier to run your code on other machines.

Great! You are using Git for version control. Tracking code development and connecting the code version to the results is critical for reproducibility.

The results in this page were generated with repository version e6213a5. See the Past versions tab to see a history of the changes made to the R Markdown and HTML files.

Note that you need to be careful to ensure that all relevant files for the analysis have been committed to Git prior to generating the results (you can use wflow_publish or wflow_git_commit). workflowr only checks the R Markdown file, but you know if there are other scripts or data files that it depends on. Below is the status of the Git repository when the results were generated:


Ignored files:
    Ignored:    .DS_Store
    Ignored:    .Rproj.user/
    Ignored:    analysis/.DS_Store
    Ignored:    analysis/deprecated/.DS_Store
    Ignored:    analysis/molecular_cartography_python/.DS_Store
    Ignored:    analysis/seqIF_python/.DS_Store
    Ignored:    analysis/seqIF_python/pixie/.DS_Store
    Ignored:    analysis/seqIF_python/pixie/cell_clustering/
    Ignored:    annotations/.DS_Store
    Ignored:    annotations/SeqIF/.DS_Store
    Ignored:    annotations/molkart/.DS_Store
    Ignored:    annotations/molkart/Figure1_regions/.DS_Store
    Ignored:    annotations/molkart/Supplementary_Figure4_regions/.DS_Store
    Ignored:    data/.DS_Store
    Ignored:    data/140623.calcagno_et_al.seurat_object.rds
    Ignored:    data/Calcagno2022_int_logNorm_annot.h5Seurat
    Ignored:    data/IC_03_IF_CCR2_CD68 cell numbers.xlsx
    Ignored:    data/Traditional_IF_absolute_cell_counts.csv
    Ignored:    data/Traditional_IF_relative_cell_counts.csv
    Ignored:    data/pixie.cell_table_size_normalized_cell_labels.csv
    Ignored:    data/results_cts_100.sqm
    Ignored:    data/seqIF_regions_annotations/
    Ignored:    data/seurat/
    Ignored:    output/.DS_Store
    Ignored:    output/mol_cart.harmony_object.h5Seurat
    Ignored:    output/molkart/
    Ignored:    output/proteomics/
    Ignored:    output/results_cts.lowres.125.sqm
    Ignored:    output/seqIF/
    Ignored:    pipeline_configs/.DS_Store
    Ignored:    plots/
    Ignored:    references/.DS_Store
    Ignored:    renv/.DS_Store
    Ignored:    renv/library/
    Ignored:    renv/staging/

Untracked files:
    Untracked:  analysis/deprecated/figures.supplementary_figureX.Rmd
    Untracked:  analysis/deprecated/figures.supplementary_figure_X.MistyR.Rmd

Unstaged changes:
    Deleted:    analysis/figures.supplementary_figureX.Rmd
    Deleted:    analysis/figures.supplementary_figure_X.MistyR.Rmd
    Deleted:    analysis/figures.supplementary_figure_X.proteomics_qc.Rmd
    Deleted:    figures/Figure_5.eps
    Deleted:    figures/Figure_5.pdf
    Deleted:    figures/Figure_5.png
    Deleted:    figures/Figure_5.svg
    Deleted:    figures/Supplementary_Figure_1_Molecular_Cartography_ROIs.png
    Deleted:    figures/Supplementary_figure_5.segmentation_metrics.poster.eps
    Modified:   figures/Supplementary_figure_X.proteomics.eps
    Modified:   figures/Supplementary_figure_X.proteomics.png
    Modified:   results_cts.lowres.125.sqm

Note that any generated files, e.g. HTML, png, CSS, etc., are not included in this status report because it is ok for generated content to have uncommitted changes.


These are the previous versions of the repository in which changes were made to the R Markdown (analysis/proteomics.filter_proteomic_data.Rmd) and HTML (docs/proteomics.filter_proteomic_data.html) files. If you’ve configured a remote Git repository (see ?wflow_git_remote), click on the hyperlinks in the table below to view the files as they were in that past version.

File Version Author Date Message
Rmd 56559c7 FloWuenne 2024-03-21 Cleaned up repository.
Rmd c1350a5 FloWuenne 2024-03-07 Updated proteomic analsysi and several plots for molkart.
Rmd 5dee03d FloWuenne 2023-09-04 Latest code update.
html 5dee03d FloWuenne 2023-09-04 Latest code update.
html 67e546d FloWuenne 2023-07-23 Build site.
Rmd d6085a2 FloWuenne 2023-07-23 Upadte since error for building.
Rmd ed31d81 FloWuenne 2023-07-02 Finalized proteomics analysis.
html ed31d81 FloWuenne 2023-07-02 Finalized proteomics analysis.
html f412578 FloWuenne 2023-06-14 Build site.
Rmd 2d015dd FloWuenne 2023-06-14 Finalized imputation with RF.
html 2d015dd FloWuenne 2023-06-14 Finalized imputation with RF.

Introduction

Here we will process and analyze the data generated via laser-microdissection coupled with high-sensitiviy proteomics of the endocardial layer from control hearts and hearts one day after myocardial infarction. We have a total of 3 groups in this dataset, all representing laser microdissected regions of endocardium from mouse hearts: 1) control = Mouse hearts without infarct 2) MI_IZ = Mouse hearts 1 day post MI. Endocardial region adjacent to the infarct. 3) MI_remote = Mouse hearts 1 day post MI. Endocardial region remote to the infarct.

Load data

First, let’s load the raw data and the associated metadata for all samples.

prot_res <- fread("./data/proteomics_endocardial_layer.tsv")
metadata <- fread("./data/metadata.proteomics_endocardial_layer.txt")

Analysis

Calculate missingness per sample (# NA values)

As a first QC, we will calculate the amount of missing data (NA values) per sample in the proteomics data.

missing <- colSums(is.na(prot_res))[6:ncol(prot_res)]
non_missing <-colSums(!is.na(prot_res))[6:ncol(prot_res)]
missingness <- missing / (non_missing + missing)
missingness <- as.data.frame(missingness)
missingness$missing_prot <- missing
missingness$sample <- rownames(missingness)

## Add group to counts
missingness <- missingness %>%
  mutate("group" = if_else(grepl("control",sample),"control",
                           if_else(grepl("MI_IZ",sample),"MI_IZ","MI_remote")))
## Set order of groups
missingness$group <- factor(missingness$group,
                                levels = rev(c("control","MI_remote","MI_IZ")))

avg_missingness <- mean(missingness$missingness)

ggplot(missingness,aes(group,missingness,fill = group)) +
  geom_violin(color = "black") +
  geom_point(fill = "white",pch = 21, color= "black",size = 4) +
  coord_flip() +
  scale_fill_manual(values = proteome_palette,
                 labels = c("Control","MI_remote","MI_IZ"))  +
  labs(x = "Samples",
       y = "% missing values") +
  geom_hline(yintercept = avg_missingness, linetype = 2)

Version Author Date
67e546d FloWuenne 2023-07-23
ed31d81 FloWuenne 2023-07-02
2d015dd FloWuenne 2023-06-14

Filter out proteins that are identified in < 3 MI samples

Then we are going to calculate the missingness per sample group (the treatment group and area that was excised by laser microdissection) and exclude proteins that are only identified in a subset of samples per group. For controls, we expect a protein to be measured in at least 2/3 samples (33% missingness allowed). For MI samples, we expect a protein to be measured in at least 3/4 samples (25% missingness allowed)

na_mi <- prot_res %>%
  pivot_longer(control_r1:MI_remote_r4,
               names_to = "sample",
               values_to = "protein_exp") %>%
  mutate("group" = if_else(grepl("control",sample),"control",
                           if_else(grepl("MI_IZ",sample),"MI_IZ","MI_remote"))) %>%
  group_by(Protein_Ids,Genes,group) %>%
  summarise(na_count = sum(is.na(protein_exp))) %>%
  ungroup() %>%
  mutate("percent_na" = if_else(group == "control",na_count / 3, na_count / 4)) %>%
  select(-na_count) %>% ## control: n = 3 and MI: n = 4
  pivot_wider(names_from = "group",values_from = percent_na) %>%
  mutate("retain" = if_else(control <= 0.3 | MI_remote <= 0.25 | MI_IZ <= 0.25, "yes","no"))
`summarise()` has grouped output by 'Protein_Ids', 'Genes'. You can override
using the `.groups` argument.
prot_res_filt <- subset(prot_res,Protein_Ids %in% subset(na_mi,retain == "yes")$Protein_Ids)

Exclude contaminants (keratins etc.)

After filtering based on missingness, we will filter out any proteins that are considered contaminants based on Frankenfeld 2022

## Count number of detected proteins with contaminants
prot_res_quant_cont <- prot_res_filt %>%
  select(control_r1:MI_remote_r4) %>%
  summarise_all(funs(sum(!is.na(.))))
Warning: `funs()` was deprecated in dplyr 0.8.0.
ℹ Please use a list of either functions or lambdas:

# Simple named list: list(mean = mean, median = median)

# Auto named with `tibble::lst()`: tibble::lst(mean, median)

# Using lambdas list(~ mean(., trim = .2), ~ median(., na.rm = TRUE))
Call `lifecycle::last_lifecycle_warnings()` to see where this warning was
generated.
## Count number of detected proteins without contaminants
prot_res_filt <- prot_res_filt %>%
  mutate("contaminant" = if_else(grepl("Cont",Protein_Ids),"yes","no"))

prot_res_quant <-  prot_res_filt %>%
  subset(contaminant == "no") %>%
  select(control_r1:MI_remote_r4) %>%
  summarise_all(funs(sum(!is.na(.))))
Warning: `funs()` was deprecated in dplyr 0.8.0.
ℹ Please use a list of either functions or lambdas:

# Simple named list: list(mean = mean, median = median)

# Auto named with `tibble::lst()`: tibble::lst(mean, median)

# Using lambdas list(~ mean(., trim = .2), ~ median(., na.rm = TRUE))
Call `lifecycle::last_lifecycle_warnings()` to see where this warning was
generated.

Merge metadata with protein counts per sample

Here, we will plot the number of proteins identified per group.

final_counts <- t(rbind(prot_res_quant_cont,
                      prot_res_quant))
colnames(final_counts) <- c("w_cont","wo_cont")
final_counts <- as.data.frame(final_counts) %>%
  mutate("sample" = rownames(final_counts))

## Add protein counts to metadata
metadata_counts <- left_join(metadata,final_counts, by = "sample")

## Add group to counts
metadata_counts <- metadata_counts %>%
  mutate("group" = if_else(grepl("control",sample),"control",
                           if_else(grepl("MI_IZ",sample),"MI_IZ","MI_remote")))

## Add missingness to table
metadata_counts <- left_join(metadata_counts,missingness, by = c("sample","group"))


## Set order of groups
metadata_counts$group <- factor(metadata_counts$group,
                                levels = rev(c("control","MI_remote","MI_IZ")))

## Summarize observations across group
metadata_counts_stat <- data_summary(metadata_counts,
                                     varname = "wo_cont", groupnames = c("group"))
Loading required package: plyr
------------------------------------------------------------------------------
You have loaded plyr after dplyr - this is likely to cause problems.
If you need functions from both plyr and dplyr, please load plyr first, then dplyr:
library(plyr); library(dplyr)
------------------------------------------------------------------------------

Attaching package: 'plyr'
The following object is masked from 'package:here':

    here
The following object is masked from 'package:ggpubr':

    mutate
The following objects are masked from 'package:dplyr':

    arrange, count, desc, failwith, id, mutate, rename, summarise,
    summarize
The following object is masked from 'package:purrr':

    compact
## Barplot to show the number of proteins detected per group (excluding contaminants)
ggplot(metadata_counts_stat,aes(group,wo_cont)) +
  geom_bar(aes(fill = group),stat="identity", color="black", 
           position=position_dodge()) +
  geom_point(data = metadata_counts, aes(group,wo_cont),
             fill = "white",pch = 21, color= "black",size = 5) +
  geom_errorbar(aes(ymin=wo_cont, ymax=wo_cont+sd), width=.2,
                 position=position_dodge(.9)) + 
  coord_flip() +
  scale_fill_manual(values = proteome_palette,
                    labels = c("Control","MI_remote","MI_IZ")) +
  labs(x = "Samples",
       y = "Proteins detected") +
  theme(legend.position = "none")

Version Author Date
67e546d FloWuenne 2023-07-23
ed31d81 FloWuenne 2023-07-02
2d015dd FloWuenne 2023-06-14

Save protein count and missingness stats for figures

write.table(metadata_counts,
            file = "./output/proteomics/proteomics.protein_missing_stats.tsv",
            sep = "\t",
            col.names = TRUE,
            row.names = FALSE,
            quote =FALSE)

Create final filtered protein table

Finally, we will create a final filtered protein table, that we will use for imputation.

prot_res_final <- subset(prot_res_filt,contaminant == "no") %>%
  select(-c(contaminant,First_Protein_Description))

write.table(prot_res_final,
            file = "./output/proteomics/proteomics.filtered_proteins.tsv",
            sep = "\t",
            col.names = TRUE,
            row.names = FALSE,
            quote = FALSE)

sessionInfo()
R version 4.3.1 (2023-06-16)
Platform: aarch64-apple-darwin20 (64-bit)
Running under: macOS Sonoma 14.1.2

Matrix products: default
BLAS:   /Library/Frameworks/R.framework/Versions/4.3-arm64/Resources/lib/libRblas.0.dylib 
LAPACK: /Library/Frameworks/R.framework/Versions/4.3-arm64/Resources/lib/libRlapack.dylib;  LAPACK version 3.11.0

locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8

time zone: Europe/Berlin
tzcode source: internal

attached base packages:
[1] stats     graphics  grDevices datasets  utils     methods   base     

other attached packages:
 [1] plyr_1.8.9         RColorBrewer_1.1-3 ggsci_3.0.0        here_1.0.1        
 [5] cowplot_1.1.2      ggpubr_0.6.0       data.table_1.14.10 lubridate_1.9.3   
 [9] forcats_1.0.0      stringr_1.5.1      dplyr_1.1.4        purrr_1.0.2       
[13] readr_2.1.5        tidyr_1.3.0        tibble_3.2.1       ggplot2_3.4.4     
[17] tidyverse_2.0.0    workflowr_1.7.1   

loaded via a namespace (and not attached):
 [1] gtable_0.3.4        xfun_0.41           bslib_0.6.1        
 [4] processx_3.8.3      rstatix_0.7.2       callr_3.7.3        
 [7] tzdb_0.4.0          vctrs_0.6.5         tools_4.3.1        
[10] ps_1.7.6            generics_0.1.3      fansi_1.0.6        
[13] highr_0.10          pkgconfig_2.0.3     lifecycle_1.0.4    
[16] farver_2.1.1        compiler_4.3.1      git2r_0.33.0       
[19] munsell_0.5.0       getPass_0.2-4       carData_3.0-5      
[22] httpuv_1.6.14       htmltools_0.5.7     sass_0.4.8         
[25] yaml_2.3.8          crayon_1.5.2        later_1.3.2        
[28] pillar_1.9.0        car_3.1-2           jquerylib_0.1.4    
[31] whisker_0.4.1       cachem_1.0.8        abind_1.4-5        
[34] tidyselect_1.2.0    digest_0.6.34       stringi_1.8.3      
[37] labeling_0.4.3      rprojroot_2.0.4     fastmap_1.1.1      
[40] grid_4.3.1          colorspace_2.1-0    cli_3.6.2          
[43] magrittr_2.0.3      utf8_1.2.4          broom_1.0.5        
[46] withr_2.5.2         scales_1.3.0        promises_1.2.1     
[49] backports_1.4.1     timechange_0.2.0    rmarkdown_2.25     
[52] httr_1.4.7          ggsignif_0.6.4      hms_1.1.3          
[55] evaluate_0.23       knitr_1.45          rlang_1.1.3        
[58] Rcpp_1.0.12         glue_1.7.0          BiocManager_1.30.22
[61] renv_1.0.3          rstudioapi_0.15.0   jsonlite_1.8.8     
[64] R6_2.5.1            fs_1.6.3