Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a919e9f

Browse files
committedOct 21, 2020
Increment version number
1 parent 6caa249 commit a919e9f

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed
 

‎DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: SomaDataIO
33
Title: SomaData Input/Output Package
4-
Version: 4.0.0.9999
4+
Version: 5.0.0
55
Authors@R:
66
c(person(given = "Stu",
77
family = "Field",

‎NEWS.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
# SomaDataIO (development version)
1+
# SomaDataIO 5.0.0
22

3+
* Initial public release to GitHub!

‎R/utils-get-apts.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ getAptamers.default <- function(x, n, rm.controls) {
66
)
77
}
88
getAptamers.data.frame <- function(x, n = FALSE, rm.controls = FALSE) {
9-
getAptamers(names(x), n, rm.controls)
9+
getAptamers(names(x), n = n, rm.controls = rm.controls)
1010
}
1111
getAptamers.soma_adat <- getAptamers.data.frame
1212
getAptamers.list <- getAptamers.data.frame
1313
getAptamers.matrix <- function(x, n = FALSE, rm.controls = FALSE) {
14-
getAptamers(colnames(x), n, rm.controls)
14+
getAptamers(colnames(x), n = n, rm.controls = rm.controls)
1515
}
1616
getAptamers.character <- function(x, n = FALSE, rm.controls = FALSE) {
1717
lgl <- is.seq(x)

‎README.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ males %>%
240240
dplyr::select(SampleType, SampleMatrix, starts_with("NormScale"))
241241
```
242242

243-
#### Methods `soma_adat`
243+
#### Available S3 Methods `soma_adat`
244244
```{r methods}
245245
# see full complement of `soma_adat` methods
246246
methods(class = "soma_adat")

‎README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<!-- badges: start -->
77

88
![GitHub
9-
version](https://img.shields.io/badge/Version-4.0.0.9999-success.svg?style=flat&logo=github)
9+
version](https://img.shields.io/badge/Version-5.0.0-success.svg?style=flat&logo=github)
1010
[![CRAN
1111
badge](https://img.shields.io/badge/CRAN-No-red.svg)](https://cran.r-project.org)
1212
![cover](https://img.shields.io/badge/coverage-80-success.svg?style=flat&logo=codecov)
@@ -449,7 +449,7 @@ males %>%
449449
#> ═══════════════════════════════════════════════════════════════════════════════════════════
450450
```
451451

452-
#### Methods `soma_adat`
452+
#### Available S3 Methods `soma_adat`
453453

454454
``` r
455455
# see full complement of `soma_adat` methods

0 commit comments

Comments
 (0)