Browse code

Added README file.

[rcastelo] authored on 25/10/2017 07:29:58
Showing 2 changed files

... ...
@@ -1,10 +1,10 @@
1 1
 Package: GSVA
2
-Version: 1.25.7
2
+Version: 1.25.8
3 3
 Title: Gene Set Variation Analysis for microarray and RNA-seq data
4 4
 Authors@R: c(person("Justin", "Guinney", role=c("aut", "cre"), email="justin.guinney@sagebase.org"),
5 5
              person("Robert", "Castelo", role="aut", email="robert.castelo@upf.edu"),
6 6
              person("Joan", "Fernandez", role="ctb", email="joanfernandez1331@gmail.com"))
7
-Depends: R (>= 2.13.0)
7
+Depends: R (>= 3.0.0)
8 8
 Imports: methods, BiocGenerics, Biobase, GSEABase (>= 1.17.4),
9 9
          geneplotter, shiny, shinythemes
10 10
 Suggests: limma, RColorBrewer, genefilter, mclust,
... ...
@@ -12,6 +12,7 @@ Suggests: limma, RColorBrewer, genefilter, mclust,
12 12
 Description: Gene Set Variation Analysis (GSVA) is a non-parametric, unsupervised method for estimating variation of gene set enrichment through the samples of a expression data set. GSVA performs a change in coordinate systems, transforming the data from a gene by sample matrix to a gene-set by sample matrix, thereby allowing the evaluation of pathway enrichment for each sample. This new matrix of GSVA enrichment scores facilitates applying standard analytical methods like functional enrichment, survival analysis, clustering, CNV-pathway analysis or cross-tissue pathway analysis, in a pathway-centric manner.
13 13
 License: GPL (>= 2)
14 14
 LazyLoad: yes
15
-biocViews: Microarray, Pathways, GeneSetEnrichment
16
-URL: http://www.sagebase.org
15
+URL: https://github.com/rcastelo/GSVA
16
+BugReports: https://github.com/rcastelo/GSVA/issues
17 17
 Encoding: latin1
18
+biocViews: Microarray, Pathways, GeneSetEnrichment
18 19
new file mode 100644
... ...
@@ -0,0 +1,42 @@
1
+# GSVA: gene set variation analysis for microarray and RNA-seq data
2
+
3
+[![Bioconductor Time](http://bioconductor.org/shields/years-in-bioc/GSVA.svg)](http://bioconductor.org/packages/release/bioc/html/GSVA.html "How long has been GSVA in a release of Bioconductor")
4
+[![Bioconductor Downloads](http://bioconductor.org/shields/downloads/GSVA.svg)](http://bioconductor.org/packages/stats/bioc/GSVA.html "Percentile (top 5/20/50% or 'available') of downloads over the last 6 full months")
5
+[![Bioconductor Commits](http://bioconductor.org/shields/commits/bioc/GSVA.svg)](http://bioconductor.org/packages/devel/bioc/html/GSVA.html#svn_source "Average SVN commits (to the devel branch) per month over the last 6 months")
6
+[![Support posts](http://bioconductor.org/shields/posts/GSVA.svg)](https://support.bioconductor.org/t/GSVA/ "Bioconductor support site activity on GSVA, last 6 months: tagged questions/avg. answers per question/avg. comments per question/accepted answers, or 0 if no tagged posts.")
7
+
8
+**Current build status**
9
+- `release` [![Bioconductor Availability](http://bioconductor.org/shields/availability/release/GSVA.svg)](http://bioconductor.org/packages/release/bioc/html/GSVA.html#archives "Whether GSVA release is available on all platforms") 
10
+[![Bioconductor Release Build](http://bioconductor.org/shields/build/release/bioc/GSVA.svg)](http://bioconductor.org/checkResults/release/bioc-LATEST/GSVA/ "Bioconductor release build")
11
+- `development` [![Bioconductor Availability](http://bioconductor.org/shields/availability/devel/GSVA.svg)](http://bioconductor.org/packages/devel/bioc/html/GSVA.html#archives "Whether GSVA devel is available on all platforms") 
12
+[![Bioconductor Devel Build](http://bioconductor.org/shields/build/devel/bioc/GSVA.svg)](http://bioconductor.org/checkResults/devel/bioc-LATEST/GSVA/ "Bioconductor devel build")
13
+
14
+## Installation
15
+
16
+This is the __development__ version of the R/Bioconductor package GSVA. This version is unstable and should be used only to test new features. If you are looking for the __release__ version of this package please go to its package release landing page at [http://bioconductor.org/packages/GSVA](http://bioconductor.org/packages/GSVA) and follow the instructions there to install it.
17
+
18
+If you were really looking for this development version, then to install it you
19
+need first to install the development version of R that you can find at [http://cran.r-project.org](http://cran.r-project.org) and then type the following instructions from the R shell:
20
+
21
+```r
22
+source("http://bioconductor.org/biocLite.R")
23
+library(BiocInstaller)
24
+useDevel()
25
+biocLite("GSVA")
26
+```
27
+
28
+Alternatively, you can install it from GitHub using the [devtools](https://github.com/hadley/devtools "devtools") package.
29
+
30
+```r
31
+install.packages("devtools")
32
+library(devtools)
33
+install_github("rcastelo/GSVA")
34
+```
35
+
36
+## Questions, bug reports and issues
37
+
38
+For questions and bug reports regarding the __release__ version of **GSVA**
39
+please use the [Bioconductor support site](http://support.bioconductor.org "Bioconductor support site").
40
+For bug reports and issues regarding this __development__ version of **GSVA**
41
+please use the GitHub issues link at the top-right of this page
42
+([https://github.com/rcastelo/GSVA/issues](https://github.com/rcastelo/GSVA/issues)).