Skip to content

Commit

Permalink
Fix space
Browse files Browse the repository at this point in the history
  • Loading branch information
HediaTnani committed Jan 9, 2024
1 parent 70a22e5 commit 892280b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/DEqual.R
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ DEqual <- function(DE) {
if (!is.data.frame(DE)) { stop("Error: The input to DEqual is not a dataframe.") }

# Check if 't' is in the column names of DE
if (!("t" %in% colnames(DE))) {
if (!("t" %in% colnames(DE))) {
stop("Error: 't' is not a column in DE.")
}

# Check if DE has non-null row names
if (is.null(rownames(DE))) {
if (is.null(rownames(DE))) {
stop("Error: Row names of DE are null.")
}

Expand Down

0 comments on commit 892280b

Please sign in to comment.