Browse code

Updated vignette and README.

Robert Castelo authored on 30/03/2021 17:49:45
Showing 3 changed files

... ...
@@ -1,5 +1,5 @@
1 1
 Package: GSVA
2
-Version: 1.39.20
2
+Version: 1.39.21
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"),
... ...
@@ -3,9 +3,12 @@
3 3
 [![Bioconductor Time](https://bioconductor.org/shields/years-in-bioc/GSVA.svg)](https://bioconductor.org/packages/release/bioc/html/GSVA.html "How long has been GSVA in a release of Bioconductor")
4 4
 [![Bioconductor Downloads](https://bioconductor.org/shields/downloads/release/GSVA.svg)](https://bioconductor.org/packages/stats/bioc/GSVA/ "Ranking by number of downloads. A lower number means the package is downloaded more frequently. Determined within a package type (software, experiment, annotation, workflow) and uses the number of distinct IPs for the last 12 months.")
5 5
 [![Support posts](https://bioconductor.org/shields/posts/GSVA.svg)](https://support.bioconductor.org/t/GSVA/ "Support site activity on GSVA, last 6 months: answered posts/total posts.")
6
+[![R-CMD-check-bioc](https://github.com/rcastelo/GSVA/workflows/R-CMD-check-bioc/badge.svg)](https://github.com/rcastelo/GSVA/actions?query=workflow%3AR-CMD-check-bioc)
7
+[![codecov.io](https://codecov.io/github/rcastelo/GSVA/coverage.svg?branch=master)](https://codecov.io/github/rcastelo/GSVA?branch=master)
6 8
 <img align="right" src="https://raw.githubusercontent.com/Bioconductor/BiocStickers/master/GSVA/GSVA.png" height="200"/>
7 9
 
8
-**Current build status**
10
+
11
+**Current Bioconductor build status**
9 12
 - `release` [![Bioconductor Availability](https://bioconductor.org/shields/availability/release/GSVA.svg)](https://bioconductor.org/packages/release/bioc/html/GSVA.html#archives "Whether GSVA release is available on all platforms") 
10 13
 [![Bioconductor Dependencies](https://bioconductor.org/shields/dependencies/release/GSVA.svg)](https://bioconductor.org/packages/release/bioc/html/GSVA.html#since "Number of recursive dependencies needed to install package")
11 14
 [![Bioconductor Commits](https://bioconductor.org/shields/lastcommit/release/bioc/GSVA.svg)](https://bioconductor.org/checkResults/release/bioc-LATEST/GSVA "Time since last commit, possible values: today, < 1 week, < 1 month, < 3 months, since release, before release")
... ...
@@ -284,7 +284,7 @@ library(org.Hs.eg.db)
284 284
 
285 285
 goannot <- select(org.Hs.eg.db, keys=keys(org.Hs.eg.db), columns="GO")
286 286
 head(goannot)
287
-genesbygo <- split(annot$ENTREZID, annot$GO)
287
+genesbygo <- split(goannot$ENTREZID, goannot$GO)
288 288
 length(genesbygo)
289 289
 head(genesbygo)
290 290
 ```