Skip to content

Commit

Permalink
utils lintr
Browse files Browse the repository at this point in the history
  • Loading branch information
KristinaGomoryova committed Feb 10, 2025
1 parent 70ff4d7 commit c84c5d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/recetox_plots/utils.r
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ load_data <- function(file_name, file_extension) {
if (file_extension == "csv") {
data_input <- read.csv(file_name, check.names = "false")
} else if (file_extension %in% c("tsv", "txt", "tabular")) {
data_input <- read.delim(file_name, sep="\t", check.names = "false")
data_input <- read.delim(file_name, sep = "\t", check.names = "false")
} else if (file_extension == "parquet") {
data_input <- arrow::read_parquet(file_name)
} else {
Expand Down

0 comments on commit c84c5d1

Please sign in to comment.