Browse code

Update README

Davide Risso authored on 06/05/2021 10:43:14
Showing 1 changed files
... ...
@@ -1,8 +1,11 @@
1 1
 ## SCONE ##
2 2
 
3
-[![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
4
-[![Build Status](https://travis-ci.org/YosefLab/scone.svg?branch=master)](https://travis-ci.org/YosefLab/scone)
5
-[![Coverage](https://codecov.io/gh/YosefLab/scone/branch/master/graph/badge.svg)](https://codecov.io/gh/YosefLab/scone)
3
+<!-- badges: start -->
4
+[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
5
+[![BioC status](http://www.bioconductor.org/shields/build/release/bioc/scone.svg)](https://bioconductor.org/checkResults/release/bioc-LATEST/scone)
6
+[![R-CMD-check](https://github.com/YosefLab/scone/workflows/R-CMD-check-bioc/badge.svg)](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.
Browse code

replace BiocInstaller biocLite mentions with BiocManager

LiNk-NY authored on 30/08/2018 17:55:57
Showing 1 changed files
... ...
@@ -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).
Browse code

Update README.md

Davide Risso authored on 29/03/2017 18:43:22 • GitHub committed on 29/03/2017 18:43:22
Showing 1 changed files
... ...
@@ -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).
Browse code

Update README.md

Davide Risso authored on 29/03/2017 18:36:51 • GitHub committed on 29/03/2017 18:36:51
Showing 1 changed files
... ...
@@ -1,6 +1,6 @@
1 1
 ## SCONE ##
2 2
 
3
-[![Project Status: WIP - Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](http://www.repostatus.org/badges/latest/wip.svg)](http://www.repostatus.org/#wip)
3
+[![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
4 4
 [![Build Status](https://travis-ci.org/YosefLab/scone.svg?branch=master)](https://travis-ci.org/YosefLab/scone)
5 5
 [![Coverage](https://codecov.io/gh/YosefLab/scone/branch/master/graph/badge.svg)](https://codecov.io/gh/YosefLab/scone)
6 6
 ### Single-Cell Overview of Normalized Expression data ###
Browse code

Update README.md

Davide Risso authored on 28/11/2016 18:46:08 • GitHub committed on 28/11/2016 18:46:08
Showing 1 changed files
... ...
@@ -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).
Browse code

Update README.md

Davide Risso authored on 15/07/2016 19:06:17 • GitHub committed on 15/07/2016 19:06:17
Showing 1 changed files
... ...
@@ -2,7 +2,7 @@
2 2
 
3 3
 [![Project Status: WIP - Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](http://www.repostatus.org/badges/latest/wip.svg)](http://www.repostatus.org/#wip)
4 4
 [![Build Status](https://travis-ci.org/YosefLab/scone.svg?branch=master)](https://travis-ci.org/YosefLab/scone)
5
-
5
+[![Coverage](https://codecov.io/gh/YosefLab/scone/branch/master/graph/badge.svg)](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.
Browse code

Update README.md

Davide Risso authored on 15/07/2016 17:25:17 • GitHub committed on 15/07/2016 17:25:17
Showing 1 changed files
... ...
@@ -1,6 +1,7 @@
1 1
 ## SCONE ##
2 2
 
3 3
 [![Project Status: WIP - Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](http://www.repostatus.org/badges/latest/wip.svg)](http://www.repostatus.org/#wip)
4
+[![Build Status](https://travis-ci.org/YosefLab/scone.svg?branch=master)](https://travis-ci.org/YosefLab/scone)
4 5
 
5 6
 ### Single-Cell Overview of Normalized Expression data ###
6 7
 
Browse code

Update README.md

Davide Risso authored on 08/07/2016 16:53:17 • GitHub committed on 08/07/2016 16:53:17
Showing 1 changed files
... ...
@@ -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).
Browse code

Update README.md

Michael authored on 15/06/2016 03:09:54 • GitHub committed on 15/06/2016 03:09:54
Showing 1 changed files
... ...
@@ -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
 
Browse code

Update README.md

Davide Risso authored on 09/06/2016 16:36:26
Showing 1 changed files
... ...
@@ -1,10 +1,11 @@
1 1
 ## SCONE ##
2
+
3
+[![Project Status: WIP - Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](http://www.repostatus.org/badges/latest/wip.svg)](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
-[![Project Status: WIP - Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](http://www.repostatus.org/badges/latest/wip.svg)](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
Browse code

Update README.md

Davide Risso authored on 09/06/2016 16:35:42
Showing 1 changed files
... ...
@@ -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
 [![Project Status: WIP - Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](http://www.repostatus.org/badges/latest/wip.svg)](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
+
Browse code

Merge branch 'master' of https://github.com/YosefLab/scone

Davide Risso authored on 03/05/2016 01:05:38
Showing 0 changed files
Browse code

Mention callr.org/install

Henrik Bengtsson authored on 27/04/2016 19:18:31
Showing 1 changed files
... ...
@@ -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")
Browse code

Update README.md

Davide Risso authored on 05/04/2016 01:03:22
Showing 1 changed files
... ...
@@ -6,6 +6,9 @@ Private Repo containing SCONE R Package
6 6
 
7 7
 ---------------------------------------
8 8
 
9
+[![Project Status: WIP - Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](http://www.repostatus.org/badges/latest/wip.svg)](http://www.repostatus.org/#wip)
10
+
11
+
9 12
 ### To Install ###
10 13
 
11 14
 	# Clone the GitHub repo:
Browse code

Added compactness measure for stability evaluation.

mbcole authored on 18/02/2016 21:46:48
Showing 1 changed files
... ...
@@ -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')
Browse code

Update README.md

Bioconductor version of RUVSeq is good

Michael authored on 16/02/2016 23:29:12
Showing 1 changed files
... ...
@@ -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")
Browse code

Updated README in dev

mbcole authored on 14/02/2016 02:04:35
Showing 1 changed files
... ...
@@ -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')
Browse code

Update README.md

Michael authored on 11/02/2016 01:32:34
Showing 1 changed files
... ...
@@ -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')
Browse code

Update README.md

Michael authored on 08/02/2016 19:27:46
Showing 1 changed files
... ...
@@ -14,3 +14,4 @@ Private Repo containing SCONE R Package
14 14
 	# Install via command line:
15 15
 	R CMD INSTALL scone	
16 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
Browse code

Update README.md

Michael authored on 08/02/2016 19:21:01
Showing 1 changed files
... ...
@@ -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.
Browse code

Update README.md

mbcole authored on 05/02/2016 02:41:06
Showing 1 changed files
... ...
@@ -10,3 +10,5 @@ Private Repo containing SCONE R Package
10 10
 
11 11
 	# Clone the GitHub repo:
12 12
 	git clone https://github.com/YosefLab/scone.git
13
+	
14
+	...
Browse code

Modified README

mbcole authored on 05/02/2016 02:37:06
Showing 1 changed files
... ...
@@ -1,5 +1,5 @@
1 1
 ## SCONE ##
2
-### Single-Cell Overview of Normalized Expression ###
2
+### Single-Cell Overview of Normalized Expression data ###
3 3
 ============
4 4
 
5 5
 Private Repo containing SCONE R Package
Browse code

Update README.md

mbcole authored on 05/02/2016 02:17:17
Showing 1 changed files
... ...
@@ -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
Browse code

first commit

Michael Cole authored on 05/02/2016 02:01:28
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1 @@
1
+# scone