Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
allaway authored May 21, 2022
1 parent c45157f commit 8eeff54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/validationResult.R
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ validationResult <- function(anno.res, template, manifest) {

# create table to display errors for users
error_table <- lapply(errors, function(i) {
data.frame(Row = as.numeric(i[[1]]), Column = i[[2]], Value = as.character(i[[4]][[1]]), Error = i[[3]])
data.frame(Row = as.numeric(i[[1]]), Column = as.character(i[[2]]), Value = as.character(i[[4]][[1]]), Error = i[[3]])
}) %>% bind_rows()

# create list for hightlight function; key: error_column, value: error_value
Expand Down

0 comments on commit 8eeff54

Please sign in to comment.