ANCOM-BC Tutorial

Huang Lin\(^1\)

\(^1\)NICHD, 6710B Rockledge Dr, Bethesda, MD 20817

December 18, 2022

knitr::opts_chunk$set(message = FALSE, warning = FALSE, comment = NA, 
                      fig.width = 6.25, fig.height = 5)
library(ANCOMBC)
library(tidyverse)
library(DT)
options(DT.options = list(
  initComplete = JS("function(settings, json) {",
  "$(this.api().table().header()).css({'background-color': 
  '#000', 'color': '#fff'});","}")))

1. Introduction

Analysis of Compositions of Microbiomes with Bias Correction (ANCOM-BC) (Lin and Peddada 2020) is a methodology of differential abundance (DA) analysis for microbial absolute abundances. ANCOM-BC estimates the unknown sampling fractions, corrects the bias induced by their differences through a log linear regression model including the estimated sampling fraction as an offset terms, and identifies taxa that are differentially abundant according to the variable of interest. For more details, please refer to the ANCOM-BC paper.

2. Installation

Download package.

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

Load the package.

library(ANCOMBC)

3. Example Data

The HITChip Atlas dataset contains genus-level microbiota profiling with HITChip for 1006 western adults with no reported health complications, reported in (Lahti et al. 2014). The dataset is also available via the microbiome R package (Lahti et al. 2017) in phyloseq (McMurdie and Holmes 2013) format. In this tutorial, we consider the following covariates:

data(atlas1006)

# Subset to baseline
tse = atlas1006[, atlas1006$time == 0]

# Re-code the bmi group
tse$bmi = recode(tse$bmi_group,
                 obese = "obese",
                 severeobese = "obese",
                 morbidobese = "obese")
# Subset to lean, overweight, and obese subjects
tse = tse[, tse$bmi %in% c("lean", "overweight", "obese")]

# Note that by default, levels of a categorical variable in R are sorted 
# alphabetically. In this case, the reference level for `bmi` will be 
# `lean`. To manually change the reference level, for instance, setting `obese`
# as the reference level, use:
tse$bmi = factor(tse$bmi, levels = c("obese", "overweight", "lean"))
# You can verify the change by checking:
# levels(sample_data(tse)$bmi)

# Create the region variable
tse$region = recode(as.character(tse$nationality),
                    Scandinavia = "NE", UKIE = "NE", SouthEurope = "SE", 
                    CentralEurope = "CE", EasternEurope = "EE",
                    .missing = "unknown")

# Discard "EE" as it contains only 1 subject
# Discard subjects with missing values of region
tse = tse[, ! tse$region %in% c("EE", "unknown")]

print(tse)
class: TreeSummarizedExperiment 
dim: 130 873 
metadata(0):
assays(1): counts
rownames(130): Actinomycetaceae Aerococcus ... Xanthomonadaceae
  Yersinia et rel.
rowData names(3): Phylum Family Genus
colnames(873): Sample-1 Sample-2 ... Sample-1005 Sample-1006
colData names(12): age sex ... bmi region
reducedDimNames(0):
mainExpName: NULL
altExpNames(0):
rowLinks: NULL
rowTree: NULL
colLinks: NULL
colTree: NULL

4 ANCOM-BC Implementation

4.1 Run ancombc function

4.2 ANCOMBC primary result

Result from the ANCOM-BC log-linear model to determine taxa that are differentially abundant according to the covariate of interest. It contains: 1) log fold changes; 2) standard errors; 3) test statistics; 4) p-values; 5) adjusted p-values; 6) indicators whether the taxon is differentially abundant (TRUE) or not (FALSE).

LFC

SE

Test statistic

P-values

Adjusted p-values

Differentially abundant taxa

Bias-corrected abundances

Step 1: obtain estimated sample-specific sampling fractions (in log scale).

Step 2: correct the log observed abundances by subtracting the estimated sampling fraction from log observed abundances of each sample.

Note that we are only able to estimate sampling fractions up to an additive constant. Thus, only the difference between bias-corrected abundances are meaningful.

4.3 ANCOMBC global test result

Result from the ANCOM-BC global test to determine taxa that are differentially abundant between at least two groups across three or more different groups. In this example, we want to identify taxa that are differentially abundant between at least two regions across CE, NE, SE, and US. The result contains: 1) test statistics; 2) p-values; 3) adjusted p-values; 4) indicators whether the taxon is differentially abundant (TRUE) or not (FALSE).

Test statistics

P-values

Adjusted p-values

Differentially abundant taxa

Session information

sessionInfo()
R version 4.2.2 (2022-10-31)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: Ubuntu 20.04.5 LTS

Matrix products: default
BLAS:   /home/biocbuild/bbs-3.16-bioc/R/lib/libRblas.so
LAPACK: /home/biocbuild/bbs-3.16-bioc/R/lib/libRlapack.so

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       

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

other attached packages:
 [1] DT_0.26         forcats_0.5.2   stringr_1.5.0   dplyr_1.0.10   
 [5] purrr_0.3.5     readr_2.1.3     tidyr_1.2.1     tibble_3.1.8   
 [9] ggplot2_3.4.0   tidyverse_1.3.2 ANCOMBC_2.0.2  

loaded via a namespace (and not attached):
  [1] utf8_1.2.2                     tidyselect_1.2.0              
  [3] lme4_1.1-31                    RSQLite_2.2.19                
  [5] htmlwidgets_1.6.0              grid_4.2.2                    
  [7] BiocParallel_1.32.4            gmp_0.6-9                     
  [9] munsell_0.5.0                  ScaledMatrix_1.6.0            
 [11] codetools_0.2-18               interp_1.1-3                  
 [13] withr_2.5.0                    colorspace_2.0-3              
 [15] Biobase_2.58.0                 energy_1.7-10                 
 [17] highr_0.9                      knitr_1.41                    
 [19] rstudioapi_0.14                stats4_4.2.2                  
 [21] SingleCellExperiment_1.20.0    DescTools_0.99.47             
 [23] labeling_0.4.2                 MatrixGenerics_1.10.0         
 [25] Rdpack_2.4                     emmeans_1.8.3                 
 [27] GenomeInfoDbData_1.2.9         farver_2.1.1                  
 [29] bit64_4.0.5                    coda_0.19-4                   
 [31] vctrs_0.5.1                    treeio_1.22.0                 
 [33] generics_0.1.3                 TH.data_1.1-1                 
 [35] xfun_0.35                      timechange_0.1.1              
 [37] R6_2.5.1                       doParallel_1.0.17             
 [39] GenomeInfoDb_1.34.4            ggbeeswarm_0.7.1              
 [41] rsvd_1.0.5                     bitops_1.0-7                  
 [43] cachem_1.0.6                   DelayedArray_0.24.0           
 [45] assertthat_0.2.1               scales_1.2.1                  
 [47] multcomp_1.4-20                nnet_7.3-18                   
 [49] googlesheets4_1.0.1            beeswarm_0.4.0                
 [51] rootSolve_1.8.2.3              gtable_0.3.1                  
 [53] beachmat_2.14.0                lmom_2.9                      
 [55] sandwich_3.0-2                 rlang_1.0.6                   
 [57] splines_4.2.2                  lazyeval_0.2.2                
 [59] gargle_1.2.1                   broom_1.0.2                   
 [61] checkmate_2.1.0                modelr_0.1.10                 
 [63] yaml_2.3.6                     reshape2_1.4.4                
 [65] crosstalk_1.2.0                backports_1.4.1               
 [67] Hmisc_4.7-2                    tools_4.2.2                   
 [69] ellipsis_0.3.2                 decontam_1.18.0               
 [71] jquerylib_0.1.4                RColorBrewer_1.1-3            
 [73] proxy_0.4-27                   BiocGenerics_0.44.0           
 [75] MultiAssayExperiment_1.24.0    Rcpp_1.0.9                    
 [77] plyr_1.8.8                     base64enc_0.1-3               
 [79] sparseMatrixStats_1.10.0       zlibbioc_1.44.0               
 [81] RCurl_1.98-1.9                 rpart_4.1.19                  
 [83] TreeSummarizedExperiment_2.6.0 deldir_1.0-6                  
 [85] viridis_0.6.2                  S4Vectors_0.36.1              
 [87] zoo_1.8-11                     SummarizedExperiment_1.28.0   
 [89] haven_2.5.1                    ggrepel_0.9.2                 
 [91] cluster_2.1.4                  fs_1.5.2                      
 [93] DECIPHER_2.26.0                magrittr_2.0.3                
 [95] data.table_1.14.6              lmerTest_3.1-3                
 [97] reprex_2.0.2                   googledrive_2.0.0             
 [99] mvtnorm_1.1-3                  matrixStats_0.63.0            
[101] gsl_2.1-7.1                    hms_1.1.2                     
[103] evaluate_0.19                  xtable_1.8-4                  
[105] jpeg_0.1-10                    readxl_1.4.1                  
[107] IRanges_2.32.0                 gridExtra_2.3                 
[109] compiler_4.2.2                 scater_1.26.1                 
[111] crayon_1.5.2                   minqa_1.2.5                   
[113] htmltools_0.5.4                tzdb_0.3.0                    
[115] mgcv_1.8-41                    Formula_1.2-4                 
[117] expm_0.999-6                   Exact_3.2                     
[119] lubridate_1.9.0                DBI_1.1.3                     
[121] dbplyr_2.2.1                   MASS_7.3-58.1                 
[123] boot_1.3-28.1                  Matrix_1.5-3                  
[125] permute_0.9-7                  cli_3.4.1                     
[127] rbibutils_2.2.11               parallel_4.2.2                
[129] GenomicRanges_1.50.2           pkgconfig_2.0.3               
[131] numDeriv_2016.8-1.1            foreign_0.8-84                
[133] scuttle_1.8.3                  xml2_1.3.3                    
[135] foreach_1.5.2                  vipor_0.4.5                   
[137] bslib_0.4.2                    DirichletMultinomial_1.40.0   
[139] rngtools_1.5.2                 XVector_0.38.0                
[141] estimability_1.4.1             mia_1.6.0                     
[143] rvest_1.0.3                    CVXR_1.0-11                   
[145] doRNG_1.8.2                    yulab.utils_0.0.5             
[147] digest_0.6.31                  vegan_2.6-4                   
[149] Biostrings_2.66.0              rmarkdown_2.19                
[151] cellranger_1.1.0               tidytree_0.4.2                
[153] htmlTable_2.4.1                gld_2.6.6                     
[155] DelayedMatrixStats_1.20.0      nloptr_2.0.3                  
[157] lifecycle_1.0.3                nlme_3.1-161                  
[159] jsonlite_1.8.4                 BiocNeighbors_1.16.0          
[161] viridisLite_0.4.1              fansi_1.0.3                   
[163] pillar_1.8.1                   lattice_0.20-45               
[165] fastmap_1.1.0                  httr_1.4.4                    
[167] survival_3.4-0                 glue_1.6.2                    
[169] png_0.1-8                      iterators_1.0.14              
[171] bit_4.0.5                      class_7.3-20                  
[173] stringi_1.7.8                  sass_0.4.4                    
[175] blob_1.2.3                     BiocSingular_1.14.0           
[177] latticeExtra_0.6-30            memoise_2.0.1                 
[179] Rmpfr_0.8-9                    irlba_2.3.5.1                 
[181] e1071_1.7-12                   ape_5.6-2                     

References

Lahti, Leo, Jarkko Salojärvi, Anne Salonen, Marten Scheffer, and Willem M De Vos. 2014. “Tipping Elements in the Human Intestinal Ecosystem.” Nature Communications 5 (1): 1–10.

Lahti, Leo, Sudarshan Shetty, T Blake, J Salojarvi, and others. 2017. “Tools for Microbiome Analysis in R.” Version 1: 10013.

Lin, Huang, and Shyamal Das Peddada. 2020. “Analysis of Compositions of Microbiomes with Bias Correction.” Nature Communications 11 (1): 1–11.

McMurdie, Paul J, and Susan Holmes. 2013. “Phyloseq: An R Package for Reproducible Interactive Analysis and Graphics of Microbiome Census Data.” PloS One 8 (4): e61217.