Browse code

merged from master

Joshua D. Campbell authored on 05/04/2022 12:40:46
Showing 2 changed files

  • NEWS.md index 8d129a64..fa6c3fe1 100644
  • README.md index aab561a8..1ada0464 100755
... ...
@@ -3,6 +3,10 @@
3 3
 * Added ability to subsample to speed up perplexity calculations
4 4
 * Added ability to use batch parameter with the raw matrix in decontX
5 5
 
6
+# celda v1.10.0 (2021-12-28)
7
+
8
+* Update to match Bioconductor release version
9
+
6 10
 # celda v1.9.3 (2021-10-04)
7 11
 
8 12
 * Fixed bug in checking background matrix with decontX
... ...
@@ -18,12 +18,19 @@ if (!requireNamespace("BiocManager", quietly = TRUE))
18 18
 BiocManager::install("celda")
19 19
 ```
20 20
 
21
-To install the development version (R >= 3.6) of **celda** from GitHub using `devtools`:
21
+The latest stable version  of **celda** can be installed from GitHub using `devtools`:
22
+
22 23
 ```
23 24
 library(devtools)
24 25
 install_github("campbio/celda")
25 26
 ```
26 27
 
28
+The development version of **celda** can also be installed from GitHub using `devtools`:
29
+```
30
+library(devtools)
31
+install_github("campbio/celda@devel")
32
+```
33
+
27 34
 **NOTE** For MAC OSX users, `devtools::install_github()` requires installation of **libgit2.** This can be installed via homebrew:
28 35
 ```
29 36
 brew install libgit2