1 Introduction

Recent studies associated the differences of cell-type proportions may be correlated to certain phenotypes, such as cancer. Therefore, the demand for the development of computational methods to predict cell type proportions increased. Hereby, we developed deconvR, a collection of functions designed for analyzing deconvolution of the bulk sample(s) using an atlas of reference omic signature profiles and a user-selected model. We wanted to give users an option to extend their reference atlas. Users can create new reference atlases using findSignatures or extend their atlas by adding more cell types. Additionally, we included BSMeth2Probe to make mapping whole-genome bisulfite sequencing data to their probe IDs easier. So users can map WGBS methylation data (as in methylKit or GRanges object format) to probe IDs, and the results of this mapping can be used as the bulk samples in the deconvolution. We also included a comprehensive DNA methylation atlas of 25 different cell types to use in the main function deconvolute. deconvolute allows the user to specify their desired deconvolution model (non-negative least squares regression, support vector regression, quadratic programming, or robust linear regression), and returns a dataframe which contains predicted cell-type proportions of bulk methylation profiles, as well as partial R-squared values for each sample.

As an another option, users can generate a simulated table of a desired number of samples, with either user-specified or random origin proportions using simulateCellMix. simulateCellMix returns a second data frame called proportions, which contains the actual cell-type proportions of the simulated sample. It can be used for testing the accuracy of the deconvolution by comparing these actual proportions to the proportions predicted by deconvolute.

deconvolute returns partial R-squares, to check if deconvolution brings advantages on top of the basic bimodal profiles. The reference matrix usually follows a bimodal distribution in the case of methylation, and taking the average of the rows of methylation matrix might give a pretty similar profile to the bulk methylation profile you are trying to deconvolute. If the deconvolution is advantageous, partial R-squared is expect to be high.

2 Installation

The deconvR package can be installed from Bioconductor with:

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

BiocManager::install("deconvR")

3 Data

3.1 Comprehensive Human Methylome Reference Atlas

The comprehensive human methylome reference atlas created by Moss et al. 1 Moss, J. et al. (2018). Comprehensive human cell-type methylation atlas reveals origins of circulating cell-free DNA in health and disease. Nature communications, 9(1), 1-12. https://doi.org/10.1038/s41467-018-07466-6 can be used as the reference atlas parameter for several functions in this package. This atlas was modified to remove duplicate CpG loci before being included in the package as the dataframe. The dataframe is composed of 25 human cell types and roughly 6000 CpG loci, identified by their Illumina Probe ID. For each cell type and CpG locus, a methylation value between 0 and 1 is provided. This value represents the fraction of methylated bases of the CpG locus. The atlas therefore provides a unique methylation pattern for each cell type and can be directly used as reference in deconvolute and simulateCellMix, and atlas in findSignatures. Below is an example dataframe to illustrate the atlas format.

library(deconvR) 

data("HumanCellTypeMethAtlas")
head(HumanCellTypeMethAtlas[,1:5])
##          IDs Monocytes_EPIC B.cells_EPIC CD4T.cells_EPIC NK.cells_EPIC
## 1 cg08169020         0.8866       0.2615          0.0149        0.0777
## 2 cg25913761         0.8363       0.2210          0.2816        0.4705
## 3 cg26955540         0.7658       0.0222          0.1492        0.4005
## 4 cg25170017         0.8861       0.5116          0.1021        0.4363
## 5 cg12827637         0.5212       0.3614          0.0227        0.2120
## 6 cg19442545         0.2013       0.1137          0.0608        0.0410

3.2 Illumina Infinium MethylationEPIC v1.0 B5 Manifest Probes (hg38)

The GRanges object IlluminaMethEpicB5ProbeIDs contains the Illumina probe IDs of 400000 genomic loci (identified using the “seqnames”, “ranges”, and “strand” values). This object is based off of the Infinium MethylationEPIC v1.0 B5 Manifest data. Unnecessary columns were removed and rows were truncated to reduce file size before converting the file to a GRanges object. It can be used directly as probe_id_locations in BSmeth2Probe.

data("IlluminaMethEpicB5ProbeIDs")
head(IlluminaMethEpicB5ProbeIDs)
## GRanges object with 6 ranges and 1 metadata column:
##       seqnames              ranges strand |          ID
##          <Rle>           <IRanges>  <Rle> | <character>
##   [1]    chr19     5236005-5236006      + |  cg07881041
##   [2]    chr20   63216298-63216299      + |  cg18478105
##   [3]     chr1     6781065-6781066      + |  cg23229610
##   [4]     chr2 197438742-197438743      - |  cg03513874
##   [5]     chrX   24054523-24054524      + |  cg09835024
##   [6]    chr14   93114794-93114795      - |  cg05451842
##   -------
##   seqinfo: 25 sequences from an unspecified genome; no seqlengths

4 Example Workflow For Whole Genome Bisulfate Sequencing Data

4.1 Expanding Reference Atlas

As mentioned in the introduction section, users can extend their reference atlas to incorporate new data. Or may combine different reference atlases to construct a more comprehensive one. This can be done using the findSignatures function. In this example, since we don’t have any additional reference atlas, we will add simulated data as a new cell type to reference atlas for example purposes. First, ensure that atlas (the signature matrix to be extended) and samples (the new data to be added to the signature matrix) are compliant with the function requirements. Below illustrates the samples format.

samples <- simulateCellMix(3,reference = HumanCellTypeMethAtlas)$simulated
head(samples)
##          IDs   Sample 1   Sample 2   Sample 3
## 1 cg08169020 0.04508456 0.15301963 0.16390822
## 2 cg25913761 0.22851438 0.30315796 0.27568922
## 3 cg26955540 0.11157355 0.19258924 0.15701995
## 4 cg25170017 0.10976768 0.21026945 0.23260858
## 5 cg12827637 0.06355488 0.12908638 0.14243518
## 6 cg19442545 0.03997958 0.05646421 0.05544875

sampleMeta should include all sample names in samples, and specify the origins they should be mapped to when added to atlas.

sampleMeta <- data.table("Experiment_accession" = colnames(samples)[-1],
                         "Biosample_term_name" = "new cell type")
head(sampleMeta)
##    Experiment_accession Biosample_term_name
## 1:             Sample 1       new cell type
## 2:             Sample 2       new cell type
## 3:             Sample 3       new cell type

Use findSignatures to extend the matrix.

extended_matrix <- findSignatures(samples = samples, 
                                 sampleMeta = sampleMeta, 
                                 atlas = HumanCellTypeMethAtlas,
                                 IDs = "IDs")
## CELL TYPES IN EXTENDED ATLAS: 
## new cell type 
## Monocytes_EPIC 
## B.cells_EPIC 
## CD4T.cells_EPIC 
## NK.cells_EPIC 
## CD8T.cells_EPIC 
## Neutrophils_EPIC 
## Erythrocyte_progenitors 
## Adipocytes 
## Cortical_neurons 
## Hepatocytes 
## Lung_cells 
## Pancreatic_beta_cells 
## Pancreatic_acinar_cells 
## Pancreatic_duct_cells 
## Vascular_endothelial_cells 
## Colon_epithelial_cells 
## Left_atrium 
## Bladder 
## Breast 
## Head_and_neck_larynx 
## Kidney 
## Prostate 
## Thyroid 
## Upper_GI 
## Uterus_cervix
head(extended_matrix)
##          IDs new_cell_type Monocytes_EPIC B.cells_EPIC CD4T.cells_EPIC
## 1 cg08169020    0.12067080         0.8866       0.2615          0.0149
## 2 cg25913761    0.26912052         0.8363       0.2210          0.2816
## 3 cg26955540    0.15372758         0.7658       0.0222          0.1492
## 4 cg25170017    0.18421524         0.8861       0.5116          0.1021
## 5 cg12827637    0.11169215         0.5212       0.3614          0.0227
## 6 cg19442545    0.05063085         0.2013       0.1137          0.0608
##   NK.cells_EPIC CD8T.cells_EPIC Neutrophils_EPIC Erythrocyte_progenitors
## 1        0.0777          0.0164           0.8680                  0.9509
## 2        0.4705          0.3961           0.8293                  0.2385
## 3        0.4005          0.3474           0.7915                  0.1374
## 4        0.4363          0.0875           0.7042                  0.9447
## 5        0.2120          0.0225           0.5368                  0.4667
## 6        0.0410          0.0668           0.1952                  0.1601
##   Adipocytes Cortical_neurons Hepatocytes Lung_cells Pancreatic_beta_cells
## 1     0.0336           0.0168      0.0340     0.0416              0.038875
## 2     0.3578           0.3104      0.2389     0.2250              0.132000
## 3     0.1965           0.0978      0.0338     0.0768              0.041725
## 4     0.0842           0.2832      0.2259     0.0544              0.111750
## 5     0.0287           0.1368      0.0307     0.1607              0.065975
## 6     0.0364           0.0222      0.1574     0.0122              0.003825
##   Pancreatic_acinar_cells Pancreatic_duct_cells Vascular_endothelial_cells
## 1                  0.0209                0.0130                     0.0323
## 2                  0.2249                0.1996                     0.3654
## 3                  0.0314                0.0139                     0.2382
## 4                  0.0309                0.0217                     0.0972
## 5                  0.0370                0.0230                     0.0798
## 6                  0.0378                0.0347                     0.0470
##   Colon_epithelial_cells Left_atrium Bladder Breast Head_and_neck_larynx Kidney
## 1                 0.0163      0.0386  0.0462 0.0264               0.0470 0.0269
## 2                 0.2037      0.2446  0.2054 0.1922               0.2045 0.1596
## 3                 0.0193      0.1134  0.1269 0.1651               0.1523 0.1034
## 4                 0.0187      0.0674  0.0769 0.0691               0.0704 0.0604
## 5                 0.0193      0.0432  0.0459 0.0228               0.0687 0.0234
## 6                 0.0193      0.0287  0.0246 0.0081               0.0098 0.0309
##   Prostate Thyroid Upper_GI Uterus_cervix
## 1   0.0353  0.0553   0.0701        0.0344
## 2   0.1557  0.1848   0.1680        0.2026
## 3   0.0686  0.0943   0.1298        0.1075
## 4   0.0369  0.0412   0.0924        0.0697
## 5   0.0508  0.0726   0.0759        0.0196
## 6   0.0055  0.0188   0.0090        0.0166

WGBS methylation data first needs to be mapped to probes using BSmeth2Probe before being deconvoluted. The methylation data WGBS_data in BSmeth2Probe may be either a GRanges object or a methylKit object.

Format of WGBS_data as GRanges object:

load(system.file("extdata", "WGBS_GRanges.rda",
                                     package = "deconvR"))
head(WGBS_GRanges)
## GRanges object with 6 ranges and 1 metadata column:
##       seqnames    ranges strand |   sample1
##          <Rle> <IRanges>  <Rle> | <numeric>
##   [1]     chr1     47176      + |  0.833333
##   [2]     chr1     47177      - |  0.818182
##   [3]     chr1     47205      + |  0.681818
##   [4]     chr1     47206      - |  0.583333
##   [5]     chr1     47362      + |  0.416667
##   [6]     chr1     49271      + |  0.733333
##   -------
##   seqinfo: 1 sequence from an unspecified genome; no seqlengths

or as methylKit object:

head(methylKit::methRead(system.file("extdata", "test1.myCpG.txt", 
                                     package = "methylKit"), 
                         sample.id="test", assembly="hg18", 
                         treatment=1, context="CpG", mincov = 0))
##     chr   start     end strand coverage numCs numTs
## 1 chr21 9764513 9764513      -       12     0    12
## 2 chr21 9764539 9764539      -       12     3     9
## 3 chr21 9820622 9820622      +       13     0    13
## 4 chr21 9837545 9837545      +       11     0    11
## 5 chr21 9849022 9849022      +      124    90    34
## 6 chr21 9853296 9853296      +       17    10     7

probe_id_locations contains information needed to map cellular loci to probe IDs

data("IlluminaMethEpicB5ProbeIDs")
head(IlluminaMethEpicB5ProbeIDs)
## GRanges object with 6 ranges and 1 metadata column:
##       seqnames              ranges strand |          ID
##          <Rle>           <IRanges>  <Rle> | <character>
##   [1]    chr19     5236005-5236006      + |  cg07881041
##   [2]    chr20   63216298-63216299      + |  cg18478105
##   [3]     chr1     6781065-6781066      + |  cg23229610
##   [4]     chr2 197438742-197438743      - |  cg03513874
##   [5]     chrX   24054523-24054524      + |  cg09835024
##   [6]    chr14   93114794-93114795      - |  cg05451842
##   -------
##   seqinfo: 25 sequences from an unspecified genome; no seqlengths

Use BSmeth2Probe to map WGBS data to probe IDs.

mapped_WGBS_data <- BSmeth2Probe(probe_id_locations = IlluminaMethEpicB5ProbeIDs, 
                                 WGBS_data = WGBS_GRanges,
                                 multipleMapping = TRUE,
                                 cutoff = 10)
head(mapped_WGBS_data)
##          IDs   sample1
## 1 cg00305774 1.0000000
## 2 cg00546078 0.8181818
## 3 cg00546307 0.5454545
## 4 cg00546971 0.5000000
## 5 cg00774867 0.8461538
## 6 cg00830435 0.9166667

This mapped data can now be used in deconvolute. Here we will deconvolute it using the previously extended signature matrix as the reference atlas.

deconvolution <- deconvolute(reference = HumanCellTypeMethAtlas, 
                             bulk = mapped_WGBS_data)
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##  0.9963  0.9963  0.9963  0.9963  0.9963  0.9963
deconvolution$proportions
##         Monocytes_EPIC B.cells_EPIC CD4T.cells_EPIC NK.cells_EPIC
## sample1              0            0               0             0
##         CD8T.cells_EPIC Neutrophils_EPIC Erythrocyte_progenitors Adipocytes
## sample1               0                0                       0  0.5011789
##         Cortical_neurons Hepatocytes Lung_cells Pancreatic_beta_cells
## sample1        0.2917357           0          0                     0
##         Pancreatic_acinar_cells Pancreatic_duct_cells
## sample1                       0                     0
##         Vascular_endothelial_cells Colon_epithelial_cells Left_atrium Bladder
## sample1                          0            0.001012524           0       0
##         Breast Head_and_neck_larynx Kidney Prostate Thyroid Upper_GI
## sample1      0            0.2060729      0        0       0        0
##         Uterus_cervix
## sample1             0

4.2 Constructing tissue specific CpG signature matrix

Alternatively, users can set tissueSpecCpGs as TRUE to construct tissue based methylation signature matrix by using the reference atlas. Here, we used simulated samples to construct tissue specific signature matrix since we don’t have tissue specific samples.

data("HumanCellTypeMethAtlas")
exampleSamples <- simulateCellMix(1,reference = HumanCellTypeMethAtlas)$simulated
exampleMeta <- data.table("Experiment_accession" = "example_sample",
                          "Biosample_term_name" = "example_cell_type")
colnames(exampleSamples) <- c("CpGs", "example_sample")
colnames(HumanCellTypeMethAtlas)[1] <- c("CpGs")

signatures <- findSignatures(
  samples = exampleSamples,
  sampleMeta = exampleMeta,
  atlas = HumanCellTypeMethAtlas,
  IDs = "CpGs", K = 100, tissueSpecCpGs = TRUE)
## CELL TYPES IN EXTENDED ATLAS: 
## example_cell_type 
## Monocytes_EPIC 
## B.cells_EPIC 
## CD4T.cells_EPIC 
## NK.cells_EPIC 
## CD8T.cells_EPIC 
## Neutrophils_EPIC 
## Erythrocyte_progenitors 
## Adipocytes 
## Cortical_neurons 
## Hepatocytes 
## Lung_cells 
## Pancreatic_beta_cells 
## Pancreatic_acinar_cells 
## Pancreatic_duct_cells 
## Vascular_endothelial_cells 
## Colon_epithelial_cells 
## Left_atrium 
## Bladder 
## Breast 
## Head_and_neck_larynx 
## Kidney 
## Prostate 
## Thyroid 
## Upper_GI 
## Uterus_cervix
print(head(signatures[[2]]))
## $hyper
## cg08169020 cg25170017 cg12827637 cg15838173 cg04858631 cg19442545 cg10560079 
## 0.22868824 0.16397291 0.15790662 0.14529070 0.14428238 0.14248301 0.13703765 
## cg00982136 cg22017733 cg26460530 cg13677741 cg24082121 cg09642825 cg01424562 
## 0.13373044 0.12764340 0.12642104 0.12282103 0.12274459 0.12112627 0.12103791 
## cg15376996 cg14789659 cg14785464 cg06340704 cg11895835 cg19300307 cg27189395 
## 0.11708389 0.11482161 0.11386270 0.11357945 0.11334253 0.11327114 0.11301783 
## cg12474798 cg18856478 cg26033520 cg05056497 cg05507654 cg24275356 cg00936790 
## 0.11290281 0.11282868 0.11282777 0.11275278 0.11168056 0.11079209 0.11050057 
## cg06167719 cg23220823 cg05258935 cg08474651 cg20684110 cg25913761 cg27395200 
## 0.11026185 0.11008901 0.11005816 0.11002364 0.10992415 0.10984064 0.10967013 
## cg08857351 cg23247274 cg10509607 cg22879098 cg14855367 cg08063160 cg02962602 
## 0.10957222 0.10911726 0.10886332 0.10812167 0.10806104 0.10763363 0.10741810 
## cg08425810 cg03254916 cg08832851 cg26953232 cg09267773 cg16416715 cg03711944 
## 0.10728298 0.10714359 0.10707243 0.10686599 0.10680471 0.10679762 0.10661699 
## cg04913246 cg10361922 cg26757820 cg26047334 cg25158622 cg27388962 cg08257293 
## 0.10658558 0.10628856 0.10626869 0.10613870 0.10594262 0.10565816 0.10565549 
## cg14057303 cg08367326 cg14845962 cg11975790 cg16127573 cg15014975 cg09577804 
## 0.10560681 0.10451652 0.10387829 0.10365285 0.10334241 0.10311919 0.10306472 
## cg27312961 cg16278496 cg05043794 cg19331221 cg18675610 cg04055490 cg08846870 
## 0.10298457 0.10283443 0.10236624 0.10213703 0.10200675 0.10193746 0.10168183 
## cg22138735 cg17847861 cg03063309 cg07865091 cg02297709 cg16402452 cg11532431 
## 0.10157399 0.10132313 0.10125940 0.10109230 0.10105405 0.10091102 0.10047116 
## cg06398251 cg10661769 cg24591770 cg00769843 cg04462378 cg21181453 cg01726273 
## 0.10034994 0.10025839 0.10024057 0.10015680 0.10005747 0.09989023 0.09979996 
## cg11025609 cg07218880 cg01377358 cg06889535 cg13638257 cg07438103 cg15185986 
## 0.09969874 0.09968625 0.09965156 0.09952644 0.09930592 0.09910513 0.09907623 
## cg16988611 cg15575375 cg16306706 cg08659179 cg16829306 cg16017089 cg13852284 
## 0.09902767 0.09888579 0.09879581 0.09878157 0.09865415 0.09861941 0.09855460 
## cg12461469 cg19692929 
## 0.09813796 0.09809966 
## 
## $hypo
## cg03663120 cg20942286 cg03963853 cg24788483 cg05612654 cg00828556 cg11186858 
##  0.3711151  0.2896645  0.2726711  0.2671041  0.2616241  0.2583514  0.2578546 
## cg15310871 cg13931640 cg15871206 cg13500029 cg22528270 cg10480329 cg11231069 
##  0.2573266  0.2557810  0.2553152  0.2550439  0.2520491  0.2480196  0.2437674 
## cg12655112 cg05923857 cg12458039 cg20610950 cg07737292 cg10456459 cg03313271 
##  0.2373996  0.2361635  0.2349686  0.2292507  0.2248307  0.2220621  0.2187659 
## cg06988336 cg16636767 cg06297318 cg06517984 cg04851465 cg23952578 cg14976569 
##  0.2181984  0.2139225  0.2115679  0.2098054  0.2090676  0.2083241  0.2082942 
## cg18990407 cg15633603 cg13403369 cg27334271 cg22259797 cg11597902 cg11327657 
##  0.2075155  0.2070195  0.2036214  0.2035527  0.2033397  0.2031213  0.2029567 
## cg09322573 cg26538782 cg08425796 cg06373940 cg06125903 cg25517015 cg27366072 
##  0.1995267  0.1989878  0.1986223  0.1980857  0.1979703  0.1967117  0.1965565 
## cg10718056 cg20107506 cg22185977 cg01879591 cg07033722 cg12866960 cg08538581 
##  0.1950265  0.1945629  0.1941254  0.1938520  0.1938016  0.1930287  0.1923193 
## cg10967114 cg03310874 cg19380303 cg02796279 cg19502671 cg20966357 cg13093111 
##  0.1917395  0.1910829  0.1907307  0.1904437  0.1903328  0.1903160  0.1902765 
## cg01024962 cg23403750 cg23755933 cg06978145 cg06721411 cg06585734 cg26305504 
##  0.1899844  0.1897268  0.1895101  0.1890259  0.1890181  0.1882009  0.1875808 
## cg04664897 cg07918933 cg12555086 cg05445326 cg26783127 cg20429104 cg18835472 
##  0.1875511  0.1874221  0.1873020  0.1868199  0.1863551  0.1863395  0.1863089 
## cg02244028 cg24250902 cg08428868 cg25596405 cg11802666 cg04217515 cg26923863 
##  0.1861352  0.1860172  0.1849644  0.1849117  0.1846778  0.1841159  0.1836537 
## cg27340480 cg17086773 cg17117981 cg23334433 cg26298914 cg15288326 cg00009088 
##  0.1828000  0.1824011  0.1821970  0.1821350  0.1821137  0.1819655  0.1812630 
## cg13980609 cg16429499 cg26889953 cg08400494 cg01622606 cg14189391 cg22875823 
##  0.1812185  0.1810817  0.1802772  0.1799309  0.1797434  0.1795673  0.1794316 
## cg04586126 cg07417146 cg00235484 cg22666015 cg18066690 cg14516183 cg19849557 
##  0.1792411  0.1783725  0.1782859  0.1782778  0.1757807  0.1698036  0.1692624 
## cg17976229 cg26709988 
##  0.1688934  0.1671456

4.3 Constructing tissue specific DMPs

Alternatively, users can set tissueSpecDMPs as TRUE to obtain tissue based DMPs by using the reference atlas. Here, we used simulated samples since we don’t have tissue specific samples. Note that both tissueSpecCpGs and tissueSpecDMPs can’t be TRUE at the same time.

data("HumanCellTypeMethAtlas")
exampleSamples <- simulateCellMix(1,reference = HumanCellTypeMethAtlas)$simulated
exampleMeta <- data.table("Experiment_accession" = "example_sample",
                          "Biosample_term_name" = "example_cell_type")
colnames(exampleSamples) <- c("CpGs", "example_sample")
colnames(HumanCellTypeMethAtlas)[1] <- c("CpGs")

signatures <- findSignatures(
  samples = exampleSamples,
  sampleMeta = exampleMeta,
  atlas = HumanCellTypeMethAtlas,
  IDs = "CpGs", tissueSpecDMPs = TRUE)
## CELL TYPES IN EXTENDED ATLAS: 
## example_cell_type 
## Monocytes_EPIC 
## B.cells_EPIC 
## CD4T.cells_EPIC 
## NK.cells_EPIC 
## CD8T.cells_EPIC 
## Neutrophils_EPIC 
## Erythrocyte_progenitors 
## Adipocytes 
## Cortical_neurons 
## Hepatocytes 
## Lung_cells 
## Pancreatic_beta_cells 
## Pancreatic_acinar_cells 
## Pancreatic_duct_cells 
## Vascular_endothelial_cells 
## Colon_epithelial_cells 
## Left_atrium 
## Bladder 
## Breast 
## Head_and_neck_larynx 
## Kidney 
## Prostate 
## Thyroid 
## Upper_GI 
## Uterus_cervix
print(head(signatures[[2]]))
##            intercept        f         pval         qval
## cg10480329 -3.287511 215.6034 1.725869e-13 1.040354e-09
## cg06297318 -3.496336 183.1646 9.968592e-13 3.004533e-09
## cg18835472 -3.350244 156.1480 5.380308e-12 1.081083e-08
## cg05923857 -3.515739 150.3484 7.986558e-12 1.193000e-08
## cg15633603 -1.496293 146.1853 1.069269e-11 1.193000e-08
## cg27366072 -2.858145 144.7141 1.187459e-11 1.193000e-08

5 Example Workflow For RNA Sequencing Data

It is possible to use RNA-seq data for deconvolution via deconvR package. Beware that you have to set IDs column that contains Gene names to run deconvR functions. Therefore you can simulate bulk RNA-seq data via simulateCellMix and, extend RNA-seq reference atlas via findSignatures.

6 sessionInfo

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] parallel  stats     graphics  grDevices utils     datasets  methods  
## [8] base     
## 
## other attached packages:
## [1] dplyr_1.0.10      doParallel_1.0.17 iterators_1.0.14  foreach_1.5.2    
## [5] deconvR_1.4.3     data.table_1.14.6 knitr_1.41        BiocStyle_2.26.0 
## 
## loaded via a namespace (and not attached):
##   [1] rsq_2.5                     BiocFileCache_2.6.0        
##   [3] plyr_1.8.8                  methylKit_1.24.0           
##   [5] splines_4.2.2               BiocParallel_1.32.4        
##   [7] GenomeInfoDb_1.34.4         ggplot2_3.4.0              
##   [9] digest_0.6.30               htmltools_0.5.3            
##  [11] fansi_1.0.3                 magrittr_2.0.3             
##  [13] memoise_2.0.1               tzdb_0.3.0                 
##  [15] limma_3.54.0                readr_2.1.3                
##  [17] Biostrings_2.66.0           annotate_1.76.0            
##  [19] matrixStats_0.63.0          R.utils_2.12.2             
##  [21] askpass_1.1                 bdsmatrix_1.3-6            
##  [23] siggenes_1.72.0             prettyunits_1.1.1          
##  [25] colorspace_2.0-3            rappdirs_0.3.3             
##  [27] blob_1.2.3                  xfun_0.35                  
##  [29] crayon_1.5.2                RCurl_1.98-1.9             
##  [31] jsonlite_1.8.3              lme4_1.1-31                
##  [33] genefilter_1.80.1           GEOquery_2.66.0            
##  [35] survival_3.4-0              glue_1.6.2                 
##  [37] gtable_0.3.1                nnls_1.4                   
##  [39] zlibbioc_1.44.0             XVector_0.38.0             
##  [41] DelayedArray_0.24.0         Rhdf5lib_1.20.0            
##  [43] BiocGenerics_0.44.0         HDF5Array_1.26.0           
##  [45] scales_1.2.1                mvtnorm_1.1-3              
##  [47] DBI_1.1.3                   rngtools_1.5.2             
##  [49] Rcpp_1.0.9                  progress_1.2.2             
##  [51] xtable_1.8-4                emdbook_1.3.12             
##  [53] bumphunter_1.40.0           bit_4.0.5                  
##  [55] proxy_0.4-27                mclust_6.0.0               
##  [57] preprocessCore_1.60.0       stats4_4.2.2               
##  [59] httr_1.4.4                  RColorBrewer_1.1-3         
##  [61] ellipsis_0.3.2              pkgconfig_2.0.3            
##  [63] reshape_0.8.9               XML_3.99-0.13              
##  [65] R.methodsS3_1.8.2           dbplyr_2.2.1               
##  [67] sass_0.4.4                  locfit_1.5-9.6             
##  [69] utf8_1.2.2                  tidyselect_1.2.0           
##  [71] rlang_1.0.6                 reshape2_1.4.4             
##  [73] AnnotationDbi_1.60.0        munsell_0.5.0              
##  [75] tools_4.2.2                 cachem_1.0.6               
##  [77] cli_3.4.1                   generics_0.1.3             
##  [79] RSQLite_2.2.19              fastseg_1.44.0             
##  [81] evaluate_0.18               stringr_1.5.0              
##  [83] fastmap_1.1.0               yaml_2.3.6                 
##  [85] bit64_4.0.5                 beanplot_1.3.1             
##  [87] scrime_1.3.5                purrr_0.3.5                
##  [89] KEGGREST_1.38.0             nlme_3.1-160               
##  [91] doRNG_1.8.2                 sparseMatrixStats_1.10.0   
##  [93] nor1mix_1.3-0               R.oo_1.25.0                
##  [95] xml2_1.3.3                  biomaRt_2.54.0             
##  [97] compiler_4.2.2              filelock_1.0.2             
##  [99] curl_4.3.3                  png_0.1-8                  
## [101] e1071_1.7-12                tibble_3.1.8               
## [103] bslib_0.4.1                 stringi_1.7.8              
## [105] GenomicFeatures_1.50.2      minfi_1.44.0               
## [107] lattice_0.20-45             Matrix_1.5-3               
## [109] nloptr_2.0.3                multtest_2.54.0            
## [111] vctrs_0.5.1                 pillar_1.8.1               
## [113] lifecycle_1.0.3             rhdf5filters_1.10.0        
## [115] BiocManager_1.30.19         jquerylib_0.1.4            
## [117] bitops_1.0-7                rtracklayer_1.58.0         
## [119] GenomicRanges_1.50.1        qvalue_2.30.0              
## [121] R6_2.5.1                    BiocIO_1.8.0               
## [123] bookdown_0.30               IRanges_2.32.0             
## [125] codetools_0.2-18            boot_1.3-28.1              
## [127] MASS_7.3-58.1               gtools_3.9.4               
## [129] assertthat_0.2.1            rhdf5_2.42.0               
## [131] SummarizedExperiment_1.28.0 openssl_2.0.4              
## [133] rjson_0.2.21                Deriv_4.1.3                
## [135] GenomicAlignments_1.34.0    Rsamtools_2.14.0           
## [137] S4Vectors_0.36.1            GenomeInfoDbData_1.2.9     
## [139] hms_1.1.2                   quadprog_1.5-8             
## [141] grid_4.2.2                  minqa_1.2.5                
## [143] tidyr_1.2.1                 coda_0.19-4                
## [145] base64_2.0.1                class_7.3-20               
## [147] rmarkdown_2.18              DelayedMatrixStats_1.20.0  
## [149] illuminaio_0.40.0           MatrixGenerics_1.10.0      
## [151] bbmle_1.0.25                numDeriv_2016.8-1.1        
## [153] Biobase_2.58.0              restfulr_0.0.15
stopCluster(cl)