Computation of phylogenetic trees and clustering of mutations

Lars Velten

Before you begin

library(mitoClone2)

You should have identified true somatic variants in the mitochondrial (and nuclear) genome. The remaining vignettes of this package document how to get there. Here, we start with count matrices of the alternative and the reference alleles, across a number of sites of interest. Such data is available from two patients (P1, P2) as part of this package. Only P1 is analyzed as part of this vignette but the commented code for P2 should be fully functional.

load(system.file("data/M_P1.RData", package = "mitoClone2"))
load(system.file("data/N_P1.RData", package = "mitoClone2"))
P1 <- mutationCallsFromMatrix(as.matrix(M_P1), as.matrix(N_P1))

A first important step is to decide which mutations to include in the clustering. The default is to use all mutations that are covered in at least 20% of the cells, but this assignment can be changed manually.

Compute a phylogenetic tree

The next step is to run SCITE or PhISCS to compute the most likely phylogenetic tree. PhISCS is bundled in this package, but the package needs to be run in an environment where gurobi and the gurobipy python package are available. For example, you could set up a conda environment that contains this package. SCITE does not require any additional licenses but may need to be manually compiled.

## this next step takes approx 4.1 minutes to run
tmpd <- tempdir()
dir.create(paste0(tmpd, "/p1"))
P1 <- varCluster(P1, tempfolder = paste0(tmpd, "/p1"), method = "SCITE")
#> Warning in max(which(x == 1)): no non-missing arguments to max; returning -Inf

This step can take a while to run. It computes a likely phylogenetic tree of all the mutations. In the case of SCITE, multiple equally likely tree can be produced. In it’s current state, this package simply selects the first tree from the list.

Identify clones and assign cells to clones

In many cases, the order of the leaves on these trees is arbitrary, because mutations systematically co-occur. We therefore cluster the mutations into clones. In detail, we take every every branch on the tree and then shuffle the order of mutations in that branch while re-calculating the likelihood. If swapping nodes leads to small changes in the likelihood, these nodes are then merged into a “clone”. The parameter min.lik that controls the merging is set arbitrarily, see below for more information.

P1 <- clusterMetaclones(P1, min.lik = 1)
#> Warning in mutcalls@mut2clone[branches[[i]]] <-
#> as.integer(max(mutcalls@mut2clone) + : number of items to replace is not a
#> multiple of replacement length

This step also assigns each cell to the most likely clone, and provides an estimate of the likelihood. Refer to help(mutationCalls) for more info on how these results are stored.

Finally, the clustering can be plotted.

plotClones(P1)

Parameter choice

The parameter min.lik that controls the merging is set arbitrarily. In practice, the goal of these analyses is to group mutations into clones for subsequent analyses (such as differential expression analyses) and it may make sense to overwrite the result of clusterMetaclones manually; for example, if a subclone defned on a mitochondrial mutation only should be treated as part of a more clearly defined upstream clone for differential expression analysis.

To overwrite the result of clusterMetaclones, first retrieve the assignment of mutations to clones:

m2c <- mitoClone2:::getMut2Clone(P1)
print(m2c)
#>   X1282GA   X2537GA   X3335TC   X3350TC   X5492TC X7527GDEL   X8167TC  X11196GA 
#>         2         3         5         5         1         4         5         2 
#>  X11559GA  X14462GA  X16233AG      EAPP     SRSF2     CEBPA      KLF7      root 
#>         4         3         5         4         4         3         2         5

## To e.g. treat the mt:2537G>A and mt:14462:G>A mutations as a
## subclone distinct from CEBPA, we can assign them a new clonal
## identity
m2c[c("X2537GA", "X14462GA")] <- as.integer(6)

P1.new <- mitoClone2:::overwriteMetaclones(P1, m2c)
plotClones(P1.new)

Session information

#> R version 4.3.2 (2023-10-31)
#> Platform: x86_64-pc-linux-gnu (64-bit)
#> Running under: Ubuntu 22.04.3 LTS
#> 
#> Matrix products: default
#> BLAS:   /home/biocbuild/bbs-3.18-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] mitoClone2_1.8.1
#> 
#> loaded via a namespace (and not attached):
#>   [1] tidyselect_1.2.0            farver_2.1.1               
#>   [3] dplyr_1.1.3                 blob_1.2.4                 
#>   [5] filelock_1.0.2              Biostrings_2.70.1          
#>   [7] bitops_1.0-7                fastmap_1.1.1              
#>   [9] RCurl_1.98-1.13             BiocFileCache_2.10.1       
#>  [11] VariantAnnotation_1.48.0    GenomicAlignments_1.38.0   
#>  [13] XML_3.99-0.15               digest_0.6.33              
#>  [15] lifecycle_1.0.4             KEGGREST_1.42.0            
#>  [17] RSQLite_2.3.3               magrittr_2.0.3             
#>  [19] compiler_4.3.2              rlang_1.1.2                
#>  [21] sass_0.4.7                  progress_1.2.2             
#>  [23] tools_4.3.2                 utf8_1.2.4                 
#>  [25] yaml_2.3.7                  rtracklayer_1.62.0         
#>  [27] Rhtslib_2.4.0               knitr_1.45                 
#>  [29] prettyunits_1.2.0           S4Arrays_1.2.0             
#>  [31] bit_4.0.5                   curl_5.1.0                 
#>  [33] DelayedArray_0.28.0         RColorBrewer_1.1-3         
#>  [35] xml2_1.3.5                  abind_1.4-5                
#>  [37] BiocParallel_1.36.0         BiocGenerics_0.48.1        
#>  [39] grid_4.3.2                  stats4_4.3.2               
#>  [41] fansi_1.0.5                 colorspace_2.1-0           
#>  [43] ggplot2_3.4.4               scales_1.2.1               
#>  [45] biomaRt_2.58.0              SummarizedExperiment_1.32.0
#>  [47] cli_3.6.1                   rmarkdown_2.25             
#>  [49] crayon_1.5.2                generics_0.1.3             
#>  [51] httr_1.4.7                  rjson_0.2.21               
#>  [53] DBI_1.1.3                   cachem_1.0.8               
#>  [55] stringr_1.5.0               zlibbioc_1.48.0            
#>  [57] splines_4.3.2               parallel_4.3.2             
#>  [59] AnnotationDbi_1.64.1        formatR_1.14               
#>  [61] XVector_0.42.0              restfulr_0.0.15            
#>  [63] matrixStats_1.1.0           vctrs_0.6.4                
#>  [65] Matrix_1.6-1.1              jsonlite_1.8.7             
#>  [67] VGAM_1.1-9                  IRanges_2.36.0             
#>  [69] hms_1.1.3                   S4Vectors_0.40.1           
#>  [71] bit64_4.0.5                 deepSNV_1.48.0             
#>  [73] GenomicFeatures_1.54.1      jquerylib_0.1.4            
#>  [75] glue_1.6.2                  codetools_0.2-19           
#>  [77] gtable_0.3.4                stringi_1.7.12             
#>  [79] GenomeInfoDb_1.38.0         GenomicRanges_1.54.1       
#>  [81] BiocIO_1.12.0               munsell_0.5.0              
#>  [83] tibble_3.2.1                pillar_1.9.0               
#>  [85] rappdirs_0.3.3              htmltools_0.5.7            
#>  [87] BSgenome_1.70.1             GenomeInfoDbData_1.2.11    
#>  [89] R6_2.5.1                    dbplyr_2.4.0               
#>  [91] evaluate_0.23               lattice_0.22-5             
#>  [93] Biobase_2.62.0              highr_0.10                 
#>  [95] png_0.1-8                   Rsamtools_2.18.0           
#>  [97] pheatmap_1.0.12             memoise_2.0.1              
#>  [99] bslib_0.5.1                 SparseArray_1.2.2          
#> [101] xfun_0.41                   MatrixGenerics_1.14.0      
#> [103] pkgconfig_2.0.3