planet

Installation

if(!requireNamespace("BiocManager", quietly = TRUE))
    install.packages("BiocManager")
BiocManager::install("planet")

Cell composition

To infer cell composition on placental villi DNAm samples, we can need to use placental reference cpgs (Yuan 2021). These are provided in this package as plCellCpGsThird and plCellCpGsFirst for third trimester (term) and first trimester samples, respectively.

In this example we are using term villi DNAm data, so we first load the reference cpgs plCellCpGsThird. This is a data frame of 600 cpgs, with mean methylation levels for each cell type.

# cell deconvolution packages
library(minfi)
library(EpiDISH)

# data wrangling and plotting
library(dplyr)
library(ggplot2)
library(tidyr)
library(planet)

# load example data
data("plBetas")
data("plCellCpGsThird")
head(plCellCpGsThird)
##            Trophoblasts   Stromal  Hofbauer Endothelial      nRBC
## cg10590657    0.1014098 0.9345796 0.8655285   0.8963641 0.8448382
## cg14923398    0.1282030 0.8902107 0.9036769   0.9383641 0.9508709
## cg05348366    0.1305697 0.9519820 0.8803082   0.9065136 0.9278057
## cg17907628    0.1215249 0.9278777 0.8727841   0.8914412 0.9143601
## cg26799656    0.1259953 0.9482014 0.8803863   0.8791004 0.9010419
## cg11862144    0.1561991 0.9430855 0.9114967   0.9341671 0.9647331
##            Syncytiotrophoblast
## cg10590657          0.05460441
## cg14923398          0.05383193
## cg05348366          0.06546727
## cg17907628          0.05325227
## cg26799656          0.06823985
## cg11862144          0.06044207

After our reference cpg data is loaded, we can estimate cell composition by applying either the Constrained Projection approach implemented by the R packages minfi or EpiDISH, or a non-constrained approach by EpiDish. I demonstrate how to do both.

Minfi

houseman_estimates <- minfi:::projectCellType(
    plBetas[rownames(plCellCpGsThird), ],
    plCellCpGsThird,
    lessThanOne = FALSE
)

head(houseman_estimates)
##            Trophoblasts    Stromal     Hofbauer Endothelial       nRBC
## GSM1944936    0.1091279 0.04891919 0.000000e+00  0.08983998 0.05294062
## GSM1944939    0.2299918 0.00000000 6.680983e-20  0.07888007 0.03374149
## GSM1944942    0.1934287 0.03483540 0.000000e+00  0.09260353 0.02929310
## GSM1944944    0.2239896 0.06249135 1.608645e-03  0.11040693 0.04447951
## GSM1944946    0.1894152 0.07935955 0.000000e+00  0.10587439 0.05407587
## GSM1944948    0.2045124 0.07657717 0.000000e+00  0.09871149 0.02269798
##            Syncytiotrophoblast
## GSM1944936           0.6979477
## GSM1944939           0.6377822
## GSM1944942           0.6350506
## GSM1944944           0.5467642
## GSM1944946           0.6022329
## GSM1944948           0.6085825

EpiDISH

# robust partial correlations
epidish_RPC <- epidish(
    beta.m = plBetas[rownames(plCellCpGsThird), ],
    ref.m = plCellCpGsThird,
    method = "RPC"
)

# CIBERSORT
epidish_CBS <- epidish(
    beta.m = plBetas[rownames(plCellCpGsThird), ],
    ref.m = plCellCpGsThird,
    method = "CBS"
)
## 1
## 2
## 3
# constrained projection (houseman 2012)
epidish_CP <- epidish(
    beta.m = plBetas[rownames(plCellCpGsThird), ],
    ref.m = plCellCpGsThird,
    method = "CP"
)
## 1
## 2
## 3
## 4
## 5
## 6
## 7
## 8
## 9
## 10
## 11
## 12
## 13
## 14
## 15
## 16
## 17
## 18
## 19
## 20
## 21
## 22
## 23
## 24

Compare

Below, I demonstrate how we can visually compare the different cell composition estimates.

data("plColors")

# bind estimate data frames and reshape for plotting
bind_rows(
    houseman_estimates %>% as.data.frame() %>% mutate(algorithm = "CP (Houseman)"),
    epidish_RPC$estF %>% as.data.frame() %>% mutate(algorithm = "RPC"),
    epidish_CBS$estF %>% as.data.frame() %>% mutate(algorithm = "CBS"),
    epidish_CP$estF %>% as.data.frame() %>% mutate(algorithm = "CP (EpiDISH)")
) %>%
    mutate(sample = rep(rownames(houseman_estimates), 4)) %>%
    as_tibble() %>%
    pivot_longer(
        cols = -c(algorithm, sample),
        names_to = "component",
        values_to = "estimate"
    ) %>%

    # relevel for plot
    mutate(component = factor(component,
        levels = c(
            "nRBC", "Endothelial", "Hofbauer",
            "Stromal", "Trophoblasts",
            "Syncytiotrophoblast"
        )
    )) %>%

    # plot
    ggplot(aes(x = sample, y = estimate, fill = component)) +
    geom_bar(stat = "identity") +
    facet_wrap(~algorithm, ncol = 1) +
    scale_fill_manual(values = plColors) +
    scale_y_continuous(
        limits = c(-0.1, 1.1), breaks = c(0, 0.5, 1),
        labels = scales::percent
    ) +
    theme(axis.text.x = element_text(angle = 90, vjust = 0.5)) +
    coord_cartesian(ylim = c(0, 1)) +
    labs(x = "", fill = "")

Some notes:

  • Normalize your data with minfi::preprocessNoob and BMIQ
  • Use all cell CpGs - if some are missing, estimates may vary
  • If your samples have been processed in a particular manner, (e.g. sampling from maternal side) expect cell composition to reflect that

Gestational age

Example Data

For demonstration, I use 24 samples from a placental DNAm dataset from GEO, (GSE7519), which contains samples collected in an Australian population. The DNA methylation data (in betas) can be accessed with data(plBetas) and corresponding sample information from data(plPhenoData). Note that for demonstration purposes, the cpgs have been filtered to a random ~10,000 CpGs, plus the CpGs used in all of the functions from this package.

# load example data
data(plBetas)
data(plPhenoData)

dim(plBetas)
## [1] 13918    24
#> [1] 13918    24
head(plPhenoData)
## # A tibble: 6 × 7
##   sample_id  sex    disease      gestation_wk ga_RPC ga_CPC ga_RRPC
##   <fct>      <chr>  <chr>               <dbl>  <dbl>  <dbl>   <dbl>
## 1 GSM1944936 Male   preeclampsia           36   38.5   38.7    38.7
## 2 GSM1944939 Male   preeclampsia           32   33.1   34.2    32.6
## 3 GSM1944942 Female preeclampsia           32   34.3   35.1    33.3
## 4 GSM1944944 Male   preeclampsia           35   35.5   36.7    35.5
## 5 GSM1944946 Female preeclampsia           38   37.6   37.6    36.6
## 6 GSM1944948 Female preeclampsia           36   36.8   38.4    36.7
#> # A tibble: 6 x 7
#>   sample_id  sex   disease   gestation_wk ga_RPC ga_CPC ga_RRPC
#>   <fct>      <chr> <chr>            <dbl>  <dbl>  <dbl>   <dbl>
#> 1 GSM1944936 Male  preeclam~           36   38.5   38.7    38.7
#> 2 GSM1944939 Male  preeclam~           32   33.1   34.2    32.6
#> 3 GSM1944942 Fema~ preeclam~           32   34.3   35.1    33.3
#> 4 GSM1944944 Male  preeclam~           35   35.5   36.7    35.5
#> 5 GSM1944946 Fema~ preeclam~           38   37.6   37.6    36.6
#> 6 GSM1944948 Fema~ preeclam~           36   36.8   38.4    36.7

There are 3 gestational age clocks for placental DNA methylation data from (Lee 2019):

  1. Robust Placental Clock (RPC)
  2. Control Placental Clock (CPC)
  3. Refined Robust Placental Clock (RRPC)

To predict gestational, we load the example data:

  • plBetas - DNAm data for 24 placental samples
  • plPhenoData - Matching sample information

Predict Gestational Age

To select the type of clock, we can specify the type argument in predictAge.

We will apply all three clocks on this data, and add the predicted age to the sample information data.frame, plPhenoData.

plPhenoData <- plPhenoData %>%
    mutate(
        ga_RPC = predictAge(plBetas, type = "RPC"),
        ga_CPC = predictAge(plBetas, type = "CPC"),
        ga_RRPC = predictAge(plBetas, type = "RRPC")
    )
## 558 of 558 predictors present.
## 546 of 546 predictors present.
## 395 of 395 predictors present.

Note that the number of predictors (CpGs) that were used in our data are printed. It’s important to take note if a significant number of predictive CpGs are missing in your data, as this can affect the predicted gestational age accuracy.

Next, I plot the difference between predicted and reported gestational age, for each of the 3 gestational age predictors.

plPhenoData %>%
  
    # reshape, to plot
    pivot_longer(
        cols = contains("ga"),
        names_to = "clock_type",
        names_prefix = "ga_",
        values_to = "ga"
    ) %>%

    # plot code
    ggplot(aes(x = gestation_wk, y = ga, col = disease)) +
    geom_point() +
    geom_smooth(method = "lm", se = FALSE) +
    facet_wrap(~clock_type) +
    theme(legend.position = "top") +
    labs(x = "Reported GA (weeks)", y = "Inferred GA (weeks)", col = "")
## `geom_smooth()` using formula = 'y ~ x'

Ethnicity

Before predicting ethnicity You can ensure that you have all features using the ethnicityCpGs vector:

data(ethnicityCpGs)
all(ethnicityCpGs %in% rownames(plBetas))
## [1] TRUE
results <- predictEthnicity(plBetas)
## 1860 of 1860 predictors present.
results %>%
    tail(8)
## # A tibble: 8 × 7
##   Sample_ID  Predicted_ethnicity_n…¹ Predicted_ethnicity Prob_African Prob_Asian
##   <chr>      <chr>                   <chr>                      <dbl>      <dbl>
## 1 GSM1944959 Asian                   Asian                   0.0123     0.952   
## 2 GSM1944960 Caucasian               Caucasian               0.0157     0.160   
## 3 GSM1944961 Asian                   Asian                   0.0208     0.895   
## 4 GSM1944962 Caucasian               Caucasian               0.000928   0.000880
## 5 GSM1944963 Caucasian               Caucasian               0.00226    0.00280 
## 6 GSM1944964 Caucasian               Caucasian               0.00660    0.0112  
## 7 GSM1944965 Caucasian               Caucasian               0.00216    0.00242 
## 8 GSM1944966 Caucasian               Caucasian               0.00114    0.00177 
## # ℹ abbreviated name: ¹​Predicted_ethnicity_nothresh
## # ℹ 2 more variables: Prob_Caucasian <dbl>, Highest_Prob <dbl>

predictEthnicity returns probabilities corresponding to each ethnicity for each sample (e.g Prob_Caucasian, Prob_African, Prob_Asian). This applies a glmnet model described in (Yuan 2019). A final classification is determined in two ways:

  1. Predicted_ethnicity_nothresh - returns a classification corresponding to the highest class-specific probability.

  2. Predicted_ethnicity - if the highest class-specific probability is below 0.75, then the the sample is assigned an Amibiguous label. This threshold can be adjusted with the threshold argument. Samples with this label might require special attention in downstream analyses.

results %>%
    ggplot(aes(
        x = Prob_Caucasian, y = Prob_African,
        col = Predicted_ethnicity
    )) +
    geom_point(alpha = 0.7) +
    coord_cartesian(xlim = c(0, 1), ylim = c(0, 1)) +
    scale_x_continuous(labels = scales::percent) +
    scale_y_continuous(labels = scales::percent) +
    labs(x = "P(Caucasian)", y = "P(African)")

results %>%
    ggplot(aes(
        x = Prob_Caucasian, y = Prob_Asian,
        col = Predicted_ethnicity
    )) +
    geom_point(alpha = 0.7) +
    coord_cartesian(xlim = c(0, 1), ylim = c(0, 1)) +
    scale_x_continuous(labels = scales::percent) +
    scale_y_continuous(labels = scales::percent) +
    labs(x = "P(Caucasian)", y = "P(Asian)")

We can’t compare this to self-reported ethnicity as it is unavailable. But we know these samples were collected in Sydney, Australia, and are therefore likely mostly European with some East Asian participants.

table(results$Predicted_ethnicity)
## 
##     Asian Caucasian 
##         2        22

A note on adjustment in differential methylation analysis

Because ‘Ambiguous’ samples might have different mixtures of ancestries, it might be inadequate to adjust for them as one group in an analysis of admixed populations (e.g. 50/50 Asian/African should not be considered the same group as 50/50 Caucasian/African). One solution would be to simply remove these samples. Another would be to adjust for the raw probabilities-in this case, use only two of the three probabilities, since the third will be redundant (probabilities sum to 1). If sample numbers are large enough in each group, stratifying downstream analyses by ethnicity might also be a valid option.

Session Info

sessionInfo()
## R version 4.4.1 (2024-06-14)
## Platform: x86_64-pc-linux-gnu
## Running under: Ubuntu 24.04 LTS
## 
## Matrix products: default
## BLAS:   /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3 
## LAPACK: /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblasp-r0.3.26.so;  LAPACK version 3.12.0
## 
## locale:
##  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
##  [3] LC_TIME=en_US.UTF-8        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: Etc/UTC
## tzcode source: system (glibc)
## 
## attached base packages:
## [1] parallel  stats4    stats     graphics  grDevices utils     datasets 
## [8] methods   base     
## 
## other attached packages:
##  [1] planet_1.13.0               tidyr_1.3.1                
##  [3] ggplot2_3.5.1               dplyr_1.1.4                
##  [5] EpiDISH_2.21.1              minfi_1.51.0               
##  [7] bumphunter_1.47.0           locfit_1.5-9.10            
##  [9] iterators_1.0.14            foreach_1.5.2              
## [11] Biostrings_2.73.1           XVector_0.45.0             
## [13] SummarizedExperiment_1.35.1 Biobase_2.65.1             
## [15] MatrixGenerics_1.17.0       matrixStats_1.3.0          
## [17] GenomicRanges_1.57.1        GenomeInfoDb_1.41.1        
## [19] IRanges_2.39.2              S4Vectors_0.43.2           
## [21] BiocGenerics_0.51.0         rmarkdown_2.28             
## 
## loaded via a namespace (and not attached):
##   [1] RColorBrewer_1.1-3        sys_3.4.2                
##   [3] jsonlite_1.8.8            magrittr_2.0.3           
##   [5] GenomicFeatures_1.57.0    farver_2.1.2             
##   [7] BiocIO_1.15.2             zlibbioc_1.51.1          
##   [9] vctrs_0.6.5               locfdr_1.1-8             
##  [11] multtest_2.61.0           memoise_2.0.1            
##  [13] Rsamtools_2.21.1          DelayedMatrixStats_1.27.3
##  [15] RCurl_1.98-1.16           askpass_1.2.0            
##  [17] htmltools_0.5.8.1         S4Arrays_1.5.7           
##  [19] curl_5.2.2                Rhdf5lib_1.27.0          
##  [21] SparseArray_1.5.31        rhdf5_2.49.0             
##  [23] sass_0.4.9                nor1mix_1.3-3            
##  [25] bslib_0.8.0               plyr_1.8.9               
##  [27] cachem_1.1.0              buildtools_1.0.0         
##  [29] GenomicAlignments_1.41.0  lifecycle_1.0.4          
##  [31] pkgconfig_2.0.3           Matrix_1.7-0             
##  [33] R6_2.5.1                  fastmap_1.2.0            
##  [35] GenomeInfoDbData_1.2.12   digest_0.6.37            
##  [37] colorspace_2.1-1          siggenes_1.79.0          
##  [39] reshape_0.8.9             AnnotationDbi_1.67.0     
##  [41] RSQLite_2.3.7             base64_2.0.1             
##  [43] labeling_0.4.3            fansi_1.0.6              
##  [45] mgcv_1.9-1                httr_1.4.7               
##  [47] abind_1.4-5               compiler_4.4.1           
##  [49] beanplot_1.3.1            rngtools_1.5.2           
##  [51] proxy_0.4-27              withr_3.0.1              
##  [53] bit64_4.0.5               BiocParallel_1.39.0      
##  [55] DBI_1.2.3                 highr_0.11               
##  [57] HDF5Array_1.33.6          MASS_7.3-61              
##  [59] openssl_2.2.1             DelayedArray_0.31.11     
##  [61] rjson_0.2.22              tools_4.4.1              
##  [63] rentrez_1.2.3             glue_1.7.0               
##  [65] quadprog_1.5-8            restfulr_0.0.15          
##  [67] nlme_3.1-166              rhdf5filters_1.17.0      
##  [69] grid_4.4.1                generics_0.1.3           
##  [71] gtable_0.3.5              tzdb_0.4.0               
##  [73] class_7.3-22              preprocessCore_1.67.0    
##  [75] data.table_1.16.0         hms_1.1.3                
##  [77] xml2_1.3.6                utf8_1.2.4               
##  [79] pillar_1.9.0              stringr_1.5.1            
##  [81] limma_3.61.9              genefilter_1.87.0        
##  [83] splines_4.4.1             lattice_0.22-6           
##  [85] survival_3.7-0            rtracklayer_1.65.0       
##  [87] bit_4.0.5                 GEOquery_2.73.4          
##  [89] annotate_1.83.0           tidyselect_1.2.1         
##  [91] maketools_1.3.0           knitr_1.48               
##  [93] xfun_0.47                 scrime_1.3.5             
##  [95] statmod_1.5.0             stringi_1.8.4            
##  [97] UCSC.utils_1.1.0          yaml_2.3.10              
##  [99] evaluate_0.24.0           codetools_0.2-20         
## [101] tibble_3.2.1              cli_3.6.3                
## [103] xtable_1.8-4              munsell_0.5.1            
## [105] jquerylib_0.1.4           Rcpp_1.0.13              
## [107] png_0.1-8                 XML_3.99-0.17            
## [109] readr_2.1.5               blob_1.2.4               
## [111] mclust_6.1.1              doRNG_1.8.6              
## [113] sparseMatrixStats_1.17.2  bitops_1.0-8             
## [115] scales_1.3.0              illuminaio_0.47.0        
## [117] e1071_1.7-14              purrr_1.0.2              
## [119] crayon_1.5.3              rlang_1.1.4              
## [121] KEGGREST_1.45.1