Contents

library(compcodeR)

1 Introduction

The compcodeR R package can generate RNAseq counts data and compare the relative performances of various popular differential analysis detection tools (Soneson and Delorenzi (2013)).

Using the same framework, this document shows how to generate “orthologous gene” (OG) expression for different species, taking into account their varying lengths, and their phylogenetic relationships, as encoded by an evolutionary tree.

This vignette provides a tutorial on how to use the “phylogenetic” functionalities of compcodeR. It assumes that the reader is already familiar with the compcodeR package vignette.

2 The phyloCompData class

The phyloCompData class extends the compData class of the compcodeR package to account for phylogeny and length information needed in the representation of OG expression data.

A phyloCompData object contains all the slots of a compData object, with an added slot containing a phylogenetic tree with ape format phylo, and a length matrix. It can also contain some added variable information, such as species names. More detailed information about the phyloCompData class are available in the section on the phylo data object. After conducting a differential expression analysis, the phyloCompData object has the same added information than the compData object (see the result object in the compcodeR package vignette).

3 A sample workflow

The workflow for working with the inter-species extension is very similar to the already existing workflow of the compcodeR package. In this section, we recall this workflow, stressing out the added functionalities.

3.1 Phylogenetic Tree

The simulations are performed following the description by Bastide et al. (2022).

We use here the phylogenetic tree issued from Stern et al. (2017), normalized to unit height, that has \(14\) species with up to 3 replicates, for a total number of sample equal to \(34\) (see Figure below).

library(ape)
tree <- system.file("extdata", "Stern2018.tree", package = "compcodeR")
tree <- read.tree(tree)

Note that any other tree could be used, for instance randomly generated using a birth-death process, see e.g. function rphylo in the ape package.

3.2 Condition Design

To conduct a differential analysis, each species must be attributed a condition. Because of the phylogenetic structure, the condition design does matter, and have a strong influence on the data produced. Here, we assume that the conditions are mapped on the tree in a balanced way (“alt” design), which is the “best case scenario”.

# link each sample to a species
id_species <- factor(sub("_.*", "", tree$tip.label))
names(id_species) <- tree$tip.label
# Assign a condition to each species
species_names <- unique(id_species)
species_names[c(length(species_names)-1, length(species_names))] <- species_names[c(length(species_names), length(species_names)-1)]
cond_species <- rep(c(1, 2), length(species_names) / 2)
names(cond_species) <- species_names
# map them on the tree
id_cond <- id_species
id_cond <- cond_species[as.vector(id_cond)]
id_cond <- as.factor(id_cond)
names(id_cond) <- tree$tip.label

We can plot the assigned conditions on the tree to visualize them.

plot(tree, label.offset = 0.01)
tiplabels(pch = 19, col = c("#D55E00", "#009E73")[id_cond])
Phylogenetic tree with $14$ species and $34$ samples, with two conditions

Figure 1: Phylogenetic tree with \(14\) species and \(34\) samples, with two conditions

3.3 Simulating data

Using this tree with associated condition design, we can then generate a dataset using a “phylogenetic Poisson Log Normal” (pPLN) distribution. We use here a Brownian Motion (BM) model of evolution for the latent phylogenetic log normal continuous trait, and assume that the phylogenetic model accounts for \(90\%\) of the latent trait variance (i.e. there is an added uniform intra-species variance representing \(10\%\) of the total latent trait variation). Using the "auto" setup, the counts are simulated so that they match empirical moments found in Stern and Crandall (2018). OG lengths are also drawn from a pPLN model, so that their moments match those of the empirical dataset of Stern and Crandall (2018). We choose to simulate \(2000\) OGs, \(10\%\) of which are differentially expressed, with an effect size of \(3\).

The following code creates a phyloCompData object containing the simulated data set and saves it to a file named "alt_BM_repl1.rds".

set.seed(12890926)
alt_BM <- generateSyntheticData(dataset = "alt_BM",
                                n.vars = 2000, samples.per.cond = 17,
                                n.diffexp = 200, repl.id = 1,
                                seqdepth = 1e7, effect.size = 3,
                                fraction.upregulated = 0.5,
                                output.file = "alt_BM_repl1.rds",
                                ## Phylogenetic parameters
                                tree = tree,                      ## Phylogenetic tree
                                id.species = id_species,          ## Species structure of samples
                                id.condition = id_cond,           ## Condition design
                                model.process = "BM",             ## The latent trait follows a BM
                                prop.var.tree = 0.9,              ## Tree accounts for 90% of the variance
                                lengths.relmeans = "auto",        ## OG length mean and dispersion
                                lengths.dispersions = "auto")     ## are taken from an empirical exemple

The summarizeSyntheticDataSet works the same way as in the base compcodeR package, generating a report that summarize all the parameters used in the simulation, and showing some diagnostic plots.

summarizeSyntheticDataSet(data.set = "alt_BM_repl1.rds", 
                          output.filename = "alt_BM_repl1_datacheck.html")

When applied to a phyloCompData object, it provides some extra diagnostics, related to the phylogenetic nature of the data. In particular, it contains MA-plots with TPM-normalized expression levels to take OG length into account, which generally makes the original signal clearer.

Example figures from the summarization report generated for a simulated data set. The top panel shows an MA plot, with the genes colored by the true differential expression status. The bottom panel shows the same plot, but using TPM-normalized estimated expression levels.Example figures from the summarization report generated for a simulated data set. The top panel shows an MA plot, with the genes colored by the true differential expression status. The bottom panel shows the same plot, but using TPM-normalized estimated expression levels.

Figure 2: Example figures from the summarization report generated for a simulated data set
The top panel shows an MA plot, with the genes colored by the true differential expression status. The bottom panel shows the same plot, but using TPM-normalized estimated expression levels.

It also shows a log2 normalized counts heatmap plotted along the phylogeny, illustrating the phylogenetic structure of the differentially expressed OGs.

Example figures from the summarization report generated for a simulated data set. The tips colored by true differential expression status. Only the first 400 genes are represented. The first block of 200 genes are differencially expressed between condition 1 and 2. The second block of 200 genes are not differencially expressed.

Figure 3: Example figures from the summarization report generated for a simulated data set
The tips colored by true differential expression status. Only the first 400 genes are represented. The first block of 200 genes are differencially expressed between condition 1 and 2. The second block of 200 genes are not differencially expressed.

3.4 Performing differential expression analysis

Differential expression analysis can be conducted using the same framework used in the compcodeR package, through the runDiffExp function.

All the standard methods can be used. To account for the phylogenetic nature of the data and for the varying length of the OGs, some methods have been added to the pool.

The code below applies three differential expression methods to the data set generated above: the DESeq2 method adapted for varying lengths, the log2(TPM) transformation for length normalization, combined with limma, using the trend empirical Bayes correction, and accounting for species-related correlations, and the phylogenetic regression tool phylolm applied on the same log2(TPM).

runDiffExp(data.file = "alt_BM_repl1.rds",
           result.extent = "DESeq2", Rmdfunction = "DESeq2.createRmd",
           output.directory = ".",
           fit.type = "parametric", test = "Wald")
runDiffExp(data.file = "alt_BM_repl1.rds",
           result.extent = "lengthNorm.limma", Rmdfunction = "lengthNorm.limma.createRmd",
           output.directory = ".",
           norm.method = "TMM",
           length.normalization = "TPM",
           data.transformation = "log2",
           trend = FALSE, block.factor = "id.species")
runDiffExp(data.file = "alt_BM_repl1.rds",
           result.extent = "phylolm", Rmdfunction = "phylolm.createRmd",
           output.directory = ".",
           norm.method = "TMM",
           model = "BM", measurement_error = TRUE,
           extra.design.covariates = NULL,
           length.normalization = "TPM",
           data.transformation = "log2")

As for a regular compcodeR analysis, example calls are provided in the reference manual (see the help pages for the runDiffExp function), and a list of all available methods can be obtained with the listcreateRmd() function.

listcreateRmd()
#>  [1] "DESeq2.createRmd"              
#>  [2] "DESeq2.length.createRmd"       
#>  [3] "DSS.createRmd"                 
#>  [4] "EBSeq.createRmd"               
#>  [5] "NBPSeq.createRmd"              
#>  [6] "NOISeq.prenorm.createRmd"      
#>  [7] "TCC.createRmd"                 
#>  [8] "edgeR.GLM.createRmd"           
#>  [9] "edgeR.exact.createRmd"         
#> [10] "lengthNorm.limma.createRmd"    
#> [11] "lengthNorm.sva.limma.createRmd"
#> [12] "logcpm.limma.createRmd"        
#> [13] "phylolm.createRmd"             
#> [14] "sqrtcpm.limma.createRmd"       
#> [15] "ttest.createRmd"               
#> [16] "voom.limma.createRmd"          
#> [17] "voom.ttest.createRmd"

3.5 Comparing results from several differential expression methods

Given that the phyloCompData object has the same structure with respect to the slots added by the differential expression analysis (see the result object, the procedure to compare results from several differential expression methods is exactly the same as for a compData object, and can be found in the corresponding section section of the compcodeR vignette.

4 Using your own data

As for a compData object, it is still possible to input user-defined data to produce a phyloCompData object for differential expression methods comparisons. One only needs to provide the additional information needed, that is the phylogenetic tree, and the length matrix. The constructor method will make sure that the tree is consistent with the count and length matrices, with the same dimensions and consistent species names.

## Phylogentic tree with replicates
tree <- read.tree(text = "(((A1:0,A2:0,A3:0):1,B1:1):1,((C1:0,C2:0):1.5,(D1:0,D2:0):1.5):0.5);")
## Sample annotations
sample.annotations <- data.frame(
  condition = c(1, 1, 1, 1, 2, 2, 2, 2),                 # Condition of each sample
  id.species = c("A", "A", "A", "B", "C", "C", "D", "D") # Species of each sample
  )
## Count Matrix
count.matrix <- round(matrix(1000*runif(8000), 1000))
## Length Matrix
length.matrix <- round(matrix(1000*runif(8000), 1000))
## Names must match
colnames(count.matrix) <- colnames(length.matrix) <- rownames(sample.annotations) <- tree$tip.label
## Extra infos
info.parameters <- list(dataset = "mydata", uID = "123456")
## Creation of the object
cpd <- phyloCompData(count.matrix = count.matrix,
                     sample.annotations = sample.annotations,
                     info.parameters = info.parameters,
                     tree = tree,
                     length.matrix = length.matrix)
## Check
check_phyloCompData(cpd)
#> [1] TRUE

5 Providing your own differential expression code

To use your own differential expression code, you can follow the base compcodeR instructions in the compcodeR vignette.

6 The extended data object

The phylocompData data object is an S4 object that extends the compData object, with the following added slots:

The same way as the compData object, the phyloCompData object needs to be saved to a file with extension .rds.

7 The evaluation metrics

The evaluation metrics are unchanged, and described in the corresponding section section of the compcodeR vignette.

8 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      
#>  [2] LC_NUMERIC=C              
#>  [3] LC_TIME=en_GB             
#>  [4] LC_COLLATE=C              
#>  [5] LC_MONETARY=en_US.UTF-8   
#>  [6] LC_MESSAGES=en_US.UTF-8   
#>  [7] LC_PAPER=en_US.UTF-8      
#>  [8] LC_NAME=C                 
#>  [9] LC_ADDRESS=C              
#> [10] LC_TELEPHONE=C            
#> [11] LC_MEASUREMENT=en_US.UTF-8
#> [12] LC_IDENTIFICATION=C       
#> 
#> time zone: America/New_York
#> tzcode source: system (glibc)
#> 
#> attached base packages:
#> [1] stats     graphics  grDevices utils     datasets 
#> [6] methods   base     
#> 
#> other attached packages:
#> [1] ape_5.7-1        compcodeR_1.39.0 sm_2.2-5.7.1    
#> [4] BiocStyle_2.31.0
#> 
#> loaded via a namespace (and not attached):
#>  [1] gtable_0.3.4         xfun_0.40           
#>  [3] bslib_0.5.1          ggplot2_3.4.4       
#>  [5] caTools_1.18.2       lattice_0.22-5      
#>  [7] vctrs_0.6.4          tools_4.4.0         
#>  [9] bitops_1.0-7         generics_0.1.3      
#> [11] parallel_4.4.0       tibble_3.2.1        
#> [13] fansi_1.0.5          cluster_2.1.4       
#> [15] pkgconfig_2.0.3      KernSmooth_2.23-22  
#> [17] lifecycle_1.0.3      compiler_4.4.0      
#> [19] stringr_1.5.0        gplots_3.1.3        
#> [21] statmod_1.5.0        munsell_0.5.0       
#> [23] clue_0.3-65          httpuv_1.6.12       
#> [25] htmltools_0.5.6.1    sass_0.4.7          
#> [27] rmutil_1.1.10        yaml_2.3.7          
#> [29] later_1.3.1          pillar_1.9.0        
#> [31] jquerylib_0.1.4      ellipsis_0.3.2      
#> [33] MASS_7.3-60.1        cachem_1.0.8        
#> [35] limma_3.59.0         magick_2.8.1        
#> [37] vioplot_0.4.0        rpart_4.1.21        
#> [39] nlme_3.1-163         mime_0.12           
#> [41] fBasics_4031.95      gtools_3.9.4        
#> [43] tidyselect_1.2.0     locfit_1.5-9.8      
#> [45] digest_0.6.33        stringi_1.7.12      
#> [47] dplyr_1.1.3          bookdown_0.36       
#> [49] fastmap_1.1.1        grid_4.4.0          
#> [51] colorspace_2.1-0     cli_3.6.1           
#> [53] magrittr_2.0.3       utf8_1.2.4          
#> [55] stable_1.1.6         edgeR_4.1.0         
#> [57] ROCR_1.0-11          promises_1.2.1      
#> [59] scales_1.2.1         rmarkdown_2.25      
#> [61] timeDate_4022.108    zoo_1.8-12          
#> [63] timeSeries_4031.107  statip_0.2.3        
#> [65] shiny_1.7.5.1        evaluate_0.22       
#> [67] knitr_1.44           stabledist_0.7-1    
#> [69] modeest_2.4.0        markdown_1.11       
#> [71] rlang_1.1.1          spatial_7.3-17      
#> [73] Rcpp_1.0.11          xtable_1.8-4        
#> [75] glue_1.6.2           BiocManager_1.30.22 
#> [77] shinydashboard_0.7.2 jsonlite_1.8.7      
#> [79] R6_2.5.1

References

Bastide, Paul, Charlotte Soneson, Olivier Lespinet, and Mélina Gallopin. 2022. “Benchmark of Differential Gene Expression Analysis Methods for Inter-Species Rna-Seq Data Using a Phylogenetic Simulation Framework.” bioRxiv Preprint. https://doi.org/10.1101/2022.01.21.476612.

Soneson, Charlotte, and Mauro Delorenzi. 2013. “A Comparison of Methods for Differential Expression Analysis of RNA-seq Data.” BMC Bioinformatics 14: 91.

Stern, David B., Jesse Breinholt, Carlos Pedraza-Lara, Marilú López-Mejía, Christopher L. Owen, Heather Bracken-Grissom, James W. Fetzner, and Keith A. Crandall. 2017. “Phylogenetic Evidence from Freshwater Crayfishes That Cave Adaptation Is Not an Evolutionary Dead-End.” Evolution 71 (10): 2522–32. https://doi.org/10.1111/evo.13326.

Stern, David B., and Keith A. Crandall. 2018. “The Evolution of Gene Expression Underlying Vision Loss in Cave Animals.” Molecular Biology and Evolution 35 (8): 2005–14. https://doi.org/10.1093/molbev/msy106.