...
|
...
|
@@ -13,19 +13,27 @@
|
13
|
13
|
|
14
|
14
|
## Installation Instructions
|
15
|
15
|
|
16
|
|
-To install the most recent release of celda (R >= 3.6) via devtools:
|
|
16
|
+To install the latest stable release of **celda** from [Bioconductor](http://bioconductor.org/packages/celda/) (requires R version >= 3.6):
|
|
17
|
+
|
|
18
|
+```
|
|
19
|
+if (!requireNamespace("BiocManager", quietly = TRUE))
|
|
20
|
+ install.packages("BiocManager")
|
|
21
|
+BiocManager::install("celda")
|
|
22
|
+```
|
|
23
|
+
|
|
24
|
+To install the development version (R >= 3.6) of **celda** from GitHub using `devtools`:
|
17
|
25
|
```
|
18
|
26
|
library(devtools)
|
19
|
27
|
install_github("campbio/celda")
|
20
|
28
|
```
|
21
|
29
|
|
22
|
|
-For R3.5 users, please install from the R_3_5 branch. This version of celda is identical to the most recent release of celda except it also works on R3.5.
|
|
30
|
+For `R-3.5` users, please install from the `R_3_5` branch. This version of **celda** is identical to the most recent release of **celda** (`master` branch) except it also works on `R-3.5`.
|
23
|
31
|
```
|
24
|
32
|
library(devtools)
|
25
|
33
|
install_github("campbio/celda@R_3_5")
|
26
|
34
|
```
|
27
|
35
|
|
28
|
|
-There has recently been a major update to variable/function names in the celda package. For backward compatibility with results (`celda_CG` and `celda_list` objects) generated from older versions of celda, please install from the mirror branch `20190409_master` which is the release before package reformatting:
|
|
36
|
+There has recently been a major update to variable/function names in the **celda** package. For backward compatibility with results (`celda_CG` and `celda_list` objects) generated from older versions of **celda**, please install from the mirror branch `20190409_master` which is the release before package reformatting:
|
29
|
37
|
```
|
30
|
38
|
library(devtools)
|
31
|
39
|
install_github("campbio/celda@20190409_master")
|
...
|
...
|
@@ -35,16 +43,16 @@ install_github("campbio/celda@20190409_master")
|
35
|
43
|
```
|
36
|
44
|
brew install libgit2
|
37
|
45
|
```
|
38
|
|
-**NOTE** If you are trying to install celda using Rstudio and get this error: "could not find tools necessary to compile a package", you can try this:
|
|
46
|
+**NOTE** If you are trying to install **celda** using Rstudio and get this error: `could not find tools necessary to compile a package`, you can try this:
|
39
|
47
|
```
|
40
|
48
|
options(buildtools.check = function(action) TRUE)
|
41
|
49
|
```
|
42
|
50
|
|
43
|
51
|
## Examples and vignettes
|
44
|
52
|
|
45
|
|
-Uncompiled vignettes are available in the package.
|
|
53
|
+The vignette in HTML format is available on Bioconductor [here](http://bioconductor.org/packages/release/bioc/vignettes/celda/inst/doc/celda-analysis.html).
|
46
|
54
|
|
47
|
|
-Examples of doing single-cell RNA-seq data analysis using celda and DecontX is available in files vignettes/celda-analysis.Rmd and vignettes/DecontX-analysis.Rmd.
|
|
55
|
+Example vignette of doing single-cell RNA-seq data decontamination using DecontX is available [here](http://bioconductor.org/packages/release/bioc/vignettes/celda/inst/doc/DecontX-analysis.html).
|
48
|
56
|
|
49
|
57
|
## For developers
|
50
|
58
|
Check out our [Wiki](https://github.com/campbio/celda/wiki) for [coding style guide](https://github.com/campbio/celda/wiki/Celda-Development-Coding-Style-Guide) if you want to contribute!
|