Skip to content

Commit d821959

Browse files
committed
Correct misprints
1 parent 59980e0 commit d821959

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

R/RNAseqdata.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ RNAseqdata <- function(file, backgrounddose, check = TRUE,
4848

4949
# check that doses and responses are numeric
5050
if (!is.numeric(as.matrix(d[, 2:ncold])))
51-
stop("All the columns except the first one must be numeric with the numeric dose in the firt line
51+
stop("All the columns except the first one must be numeric with the numeric dose in the first line
5252
and the read counts (integer values corresponding to raw counts) of each item in the other lines.")
5353
}
5454

R/continuousanchoringdata.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ continuousanchoringdata <- function(file, backgrounddose, check = TRUE) {
2626
# check that doses and responses are numeric
2727
if (!is.numeric(as.matrix(d[, 2:ncold])))
2828
stop("All the columns except the first one must be numeric with the numeric
29-
dose in the firt line and the numeric response of each endpoint in the other lines.")
29+
dose in the first line and the numeric response of each endpoint in the other lines.")
3030
warning(strwrap(prefix = "\n", initial = "\n",
3131
"We recommend you to check that your anchoring data are continuous and
3232
defined in a scale that enable the use of a normal error model (needed at each step

R/metabolomicdata.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ continuousomicdata <- function(file, backgrounddose, check = TRUE) {
5656
# check that doses and responses are numeric
5757
if (!is.numeric(as.matrix(d[, 2:ncold])))
5858
stop("All the columns except the first one must be numeric with the numeric
59-
dose in the firt line and the numeric response of each item in the other lines.")
59+
dose in the first line and the numeric response of each item in the other lines.")
6060
warning(strwrap(prefix = "\n", initial = "\n",
6161
"We recommend you to check that your omic data were correctly pretreated
6262
before importation. In particular data (e.g. metabolomic signal)

R/microarraydata.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ microarraydata <- function(file, backgrounddose, check = TRUE,
3838
# check that doses and responses are numeric
3939
if (!is.numeric(as.matrix(d[, 2:ncold])))
4040
stop("All the columns except the first one must be numeric with the numeric
41-
dose in the firt line and the numeric response of each item in the other lines.")
41+
dose in the first line and the numeric response of each item in the other lines.")
4242
}
4343

4444
# Normalization using limma

0 commit comments

Comments
 (0)