... | ... |
@@ -1,8 +1,11 @@ |
1 | 1 |
## SCONE ## |
2 | 2 |
|
3 |
-[](http://www.repostatus.org/#active) |
|
4 |
-[](https://travis-ci.org/YosefLab/scone) |
|
5 |
-[](https://codecov.io/gh/YosefLab/scone) |
|
3 |
+<!-- badges: start --> |
|
4 |
+[](https://lifecycle.r-lib.org/articles/stages.html#stable) |
|
5 |
+[](https://bioconductor.org/checkResults/release/bioc-LATEST/scone) |
|
6 |
+[](https://github.com/YosefLab/scone/actions) |
|
7 |
+<!-- badges: end --> |
|
8 |
+ |
|
6 | 9 |
### Single-Cell Overview of Normalized Expression data ### |
7 | 10 |
|
8 | 11 |
SCONE (Single-Cell Overview of Normalized Expression), a package for single-cell RNA-seq data quality control (QC) and normalization. This data-driven framework uses summaries of expression data to assess the efficacy of normalization workflows. |
... | ... |
@@ -17,17 +20,15 @@ if (!requireNamespace("BiocManager", quietly=TRUE)) |
17 | 20 |
BiocManager::install("scone") |
18 | 21 |
``` |
19 | 22 |
|
20 |
-Note that SCONE is currently in Bioconductor devel and hence requires R-devel (>= 3.4). |
|
21 |
- |
|
22 | 23 |
### Install from Github ### |
23 | 24 |
|
24 |
-Usually not recommended. SCONE is under active development. To download the development version of the package, use the `devtools` package. |
|
25 |
+Usually not recommended. To download the development version of the package, use |
|
25 | 26 |
|
26 | 27 |
```{r} |
27 |
-library(devtools) |
|
28 |
-install_github("YosefLab/scone") |
|
28 |
+BiocManager::install("YosefLab/scone") |
|
29 | 29 |
``` |
30 | 30 |
|
31 | 31 |
### Install for R 3.3 ### |
32 | 32 |
|
33 | 33 |
You can download the latest release of SCONE for R 3.3 [here](https://github.com/YosefLab/scone/releases/tag/v0.99.0). |
34 |
+This is useful only for reproducing old results. |
... | ... |
@@ -12,8 +12,9 @@ SCONE (Single-Cell Overview of Normalized Expression), a package for single-cell |
12 | 12 |
We recommend installation of the package via bioconductor. |
13 | 13 |
|
14 | 14 |
```{r} |
15 |
-source("https://bioconductor.org/biocLite.R") |
|
16 |
-biocLite("scone") |
|
15 |
+if (!requireNamespace("BiocManager", quietly=TRUE)) |
|
16 |
+ install.packages("BiocManager") |
|
17 |
+BiocManager::install("scone") |
|
17 | 18 |
``` |
18 | 19 |
|
19 | 20 |
Note that SCONE is currently in Bioconductor devel and hence requires R-devel (>= 3.4). |
... | ... |
@@ -7,16 +7,26 @@ |
7 | 7 |
|
8 | 8 |
SCONE (Single-Cell Overview of Normalized Expression), a package for single-cell RNA-seq data quality control (QC) and normalization. This data-driven framework uses summaries of expression data to assess the efficacy of normalization workflows. |
9 | 9 |
|
10 |
-### To Install ### |
|
10 |
+### Install from Bioconductor ### |
|
11 | 11 |
|
12 |
-The easiest way to install the package is to type in R |
|
12 |
+We recommend installation of the package via bioconductor. |
|
13 | 13 |
|
14 | 14 |
```{r} |
15 | 15 |
source("https://bioconductor.org/biocLite.R") |
16 |
-biocLite("devtools") |
|
17 |
-biocLite("YosefLab/scone", dependencies=TRUE) |
|
16 |
+biocLite("scone") |
|
18 | 17 |
``` |
19 | 18 |
|
20 |
-Note that SCONE is currently under consideration in Bioconductor and hence requires R-devel (>= 3.4) and Bioconductor devel. |
|
19 |
+Note that SCONE is currently in Bioconductor devel and hence requires R-devel (>= 3.4). |
|
20 |
+ |
|
21 |
+### Install from Github ### |
|
22 |
+ |
|
23 |
+Usually not recommended. SCONE is under active development. To download the development version of the package, use the `devtools` package. |
|
24 |
+ |
|
25 |
+```{r} |
|
26 |
+library(devtools) |
|
27 |
+install_github("YosefLab/scone") |
|
28 |
+``` |
|
29 |
+ |
|
30 |
+### Install for R 3.3 ### |
|
21 | 31 |
|
22 | 32 |
You can download the latest release of SCONE for R 3.3 [here](https://github.com/YosefLab/scone/releases/tag/v0.99.0). |
... | ... |
@@ -1,6 +1,6 @@ |
1 | 1 |
## SCONE ## |
2 | 2 |
|
3 |
-[](http://www.repostatus.org/#wip) |
|
3 |
+[](http://www.repostatus.org/#active) |
|
4 | 4 |
[](https://travis-ci.org/YosefLab/scone) |
5 | 5 |
[](https://codecov.io/gh/YosefLab/scone) |
6 | 6 |
### Single-Cell Overview of Normalized Expression data ### |
... | ... |
@@ -17,4 +17,6 @@ biocLite("devtools") |
17 | 17 |
biocLite("YosefLab/scone", dependencies=TRUE) |
18 | 18 |
``` |
19 | 19 |
|
20 |
-Note that SCONE requires R (>= 3.3) and Bioconductor (>= 3.3). You can download the latest version of R from [CRAN](https://cran.r-project.org). To update Bioconductor to its latest release, follow the instructions [here](https://www.bioconductor.org/install/#update-bioconductor-packages). |
|
20 |
+Note that SCONE is currently under consideration in Bioconductor and hence requires R-devel (>= 3.4) and Bioconductor devel. |
|
21 |
+ |
|
22 |
+You can download the latest release of SCONE for R 3.3 [here](https://github.com/YosefLab/scone/releases/tag/v0.99.0). |
... | ... |
@@ -2,7 +2,7 @@ |
2 | 2 |
|
3 | 3 |
[](http://www.repostatus.org/#wip) |
4 | 4 |
[](https://travis-ci.org/YosefLab/scone) |
5 |
- |
|
5 |
+[](https://codecov.io/gh/YosefLab/scone) |
|
6 | 6 |
### Single-Cell Overview of Normalized Expression data ### |
7 | 7 |
|
8 | 8 |
SCONE (Single-Cell Overview of Normalized Expression), a package for single-cell RNA-seq data quality control (QC) and normalization. This data-driven framework uses summaries of expression data to assess the efficacy of normalization workflows. |
... | ... |
@@ -1,6 +1,7 @@ |
1 | 1 |
## SCONE ## |
2 | 2 |
|
3 | 3 |
[](http://www.repostatus.org/#wip) |
4 |
+[](https://travis-ci.org/YosefLab/scone) |
|
4 | 5 |
|
5 | 6 |
### Single-Cell Overview of Normalized Expression data ### |
6 | 7 |
|
... | ... |
@@ -16,3 +16,4 @@ biocLite("devtools") |
16 | 16 |
biocLite("YosefLab/scone", dependencies=TRUE) |
17 | 17 |
``` |
18 | 18 |
|
19 |
+Note that SCONE requires R (>= 3.3) and Bioconductor (>= 3.3). You can download the latest version of R from [CRAN](https://cran.r-project.org). To update Bioconductor to its latest release, follow the instructions [here](https://www.bioconductor.org/install/#update-bioconductor-packages). |
... | ... |
@@ -4,7 +4,7 @@ |
4 | 4 |
|
5 | 5 |
### Single-Cell Overview of Normalized Expression data ### |
6 | 6 |
|
7 |
-scone is a package to compare and rank the performance of different normalization schemes in real single-cell RNA-seq datasets. |
|
7 |
+SCONE (Single-Cell Overview of Normalized Expression), a package for single-cell RNA-seq data quality control (QC) and normalization. This data-driven framework uses summaries of expression data to assess the efficacy of normalization workflows. |
|
8 | 8 |
|
9 | 9 |
### To Install ### |
10 | 10 |
|
... | ... |
@@ -1,10 +1,11 @@ |
1 | 1 |
## SCONE ## |
2 |
+ |
|
3 |
+[](http://www.repostatus.org/#wip) |
|
4 |
+ |
|
2 | 5 |
### Single-Cell Overview of Normalized Expression data ### |
3 | 6 |
|
4 | 7 |
scone is a package to compare and rank the performance of different normalization schemes in real single-cell RNA-seq datasets. |
5 | 8 |
|
6 |
-[](http://www.repostatus.org/#wip) |
|
7 |
- |
|
8 | 9 |
### To Install ### |
9 | 10 |
|
10 | 11 |
The easiest way to install the package is to type in R |
... | ... |
@@ -1,24 +1,17 @@ |
1 | 1 |
## SCONE ## |
2 | 2 |
### Single-Cell Overview of Normalized Expression data ### |
3 |
-============ |
|
4 | 3 |
|
5 |
-Private Repo containing SCONE R Package |
|
6 |
- |
|
4 |
+scone is a package to compare and rank the performance of different normalization schemes in real single-cell RNA-seq datasets. |
|
7 | 5 |
|
8 | 6 |
[](http://www.repostatus.org/#wip) |
9 | 7 |
|
10 |
- |
|
11 | 8 |
### To Install ### |
12 | 9 |
|
13 |
- # Clone the GitHub repo: |
|
14 |
- git clone https://github.com/YosefLab/scone.git |
|
15 |
- |
|
16 |
- # Install via command line: |
|
17 |
- R CMD INSTALL scone |
|
18 |
- |
|
19 |
- # You may get errors if dependencies are not installed prior to scone installation. |
|
20 |
- # Install SCDE dependency at http://hms-dbmi.github.io/scde/package.html |
|
21 |
- # Install RUVSeq dependency using |
|
22 |
- source("https://bioconductor.org/biocLite.R") |
|
23 |
- biocLite("RUVSeq") |
|
10 |
+The easiest way to install the package is to type in R |
|
11 |
+ |
|
12 |
+```{r} |
|
13 |
+source("https://bioconductor.org/biocLite.R") |
|
14 |
+biocLite("devtools") |
|
15 |
+biocLite("YosefLab/scone", dependencies=TRUE) |
|
16 |
+``` |
|
17 |
+ |
... | ... |
@@ -15,7 +15,9 @@ Private Repo containing SCONE R Package |
15 | 15 |
git clone https://github.com/YosefLab/scone.git |
16 | 16 |
|
17 | 17 |
# Install via command line: |
18 |
- R CMD INSTALL scone |
|
18 |
+ R CMD INSTALL scone |
|
19 |
+ |
|
19 | 20 |
# You may get errors if dependencies are not installed prior to scone installation. |
20 | 21 |
# Install SCDE dependency at http://hms-dbmi.github.io/scde/package.html |
21 | 22 |
# Install clusterCells dependency using devtools::install_github('epurdom/clusterCells') |
23 |
+ # Alternative: source("http://callr.org/install#hms-dbmi/scde,epurdom/clusterCells") |
... | ... |
@@ -6,6 +6,9 @@ Private Repo containing SCONE R Package |
6 | 6 |
|
7 | 7 |
--------------------------------------- |
8 | 8 |
|
9 |
+[](http://www.repostatus.org/#wip) |
|
10 |
+ |
|
11 |
+ |
|
9 | 12 |
### To Install ### |
10 | 13 |
|
11 | 14 |
# Clone the GitHub repo: |
... | ... |
@@ -15,4 +15,4 @@ Private Repo containing SCONE R Package |
15 | 15 |
R CMD INSTALL scone |
16 | 16 |
# You may get errors if dependencies are not installed prior to scone installation. |
17 | 17 |
# Install SCDE dependency at http://hms-dbmi.github.io/scde/package.html |
18 |
- # Install RUVSeq dependency using devtools::install_github('drisso/RUVSeq') |
|
18 |
+ # Install clusterCells dependency using devtools::install_github('epurdom/clusterCells') |
Bioconductor version of RUVSeq is good
... | ... |
@@ -15,4 +15,6 @@ Private Repo containing SCONE R Package |
15 | 15 |
R CMD INSTALL scone |
16 | 16 |
# You may get errors if dependencies are not installed prior to scone installation. |
17 | 17 |
# Install SCDE dependency at http://hms-dbmi.github.io/scde/package.html |
18 |
- # Install RUVSeq dependency using devtools::install_github('drisso/RUVSeq') |
|
18 |
+ # Install RUVSeq dependency using |
|
19 |
+ source("https://bioconductor.org/biocLite.R") |
|
20 |
+ biocLite("RUVSeq") |
... | ... |
@@ -11,4 +11,8 @@ Private Repo containing SCONE R Package |
11 | 11 |
# Clone the GitHub repo: |
12 | 12 |
git clone https://github.com/YosefLab/scone.git |
13 | 13 |
|
14 |
- ... |
|
14 |
+ # Install via command line: |
|
15 |
+ R CMD INSTALL scone |
|
16 |
+ # You may get errors if dependencies are not installed prior to scone installation. |
|
17 |
+ # Install SCDE dependency at http://hms-dbmi.github.io/scde/package.html |
|
18 |
+ # Install RUVSeq dependency using devtools::install_github('drisso/RUVSeq') |
... | ... |
@@ -15,3 +15,4 @@ Private Repo containing SCONE R Package |
15 | 15 |
R CMD INSTALL scone |
16 | 16 |
# You may get errors if dependencies are not installed prior to scone installation. |
17 | 17 |
# Install SCDE dependency at http://hms-dbmi.github.io/scde/package.html |
18 |
+ # Install RUVSeq dependency using devtools::install_github('drisso/RUVSeq') |
... | ... |
@@ -11,4 +11,6 @@ Private Repo containing SCONE R Package |
11 | 11 |
# Clone the GitHub repo: |
12 | 12 |
git clone https://github.com/YosefLab/scone.git |
13 | 13 |
|
14 |
- ... |
|
14 |
+ # Install via command line: |
|
15 |
+ R CMD INSTALL scone |
|
16 |
+ # You may get errors if dependencies are not installed prior to scone installation. |
... | ... |
@@ -1 +1,12 @@ |
1 |
-# scone |
|
1 |
+## SCONE ## |
|
2 |
+### Single-Cell Overview of Normalized Expression ### |
|
3 |
+============ |
|
4 |
+ |
|
5 |
+Private Repo containing SCONE R Package |
|
6 |
+ |
|
7 |
+--------------------------------------- |
|
8 |
+ |
|
9 |
+### To Install ### |
|
10 |
+ |
|
11 |
+ # Clone the GitHub repo: |
|
12 |
+ git clone https://github.com/YosefLab/scone.git |