Skip to content

Commit

Permalink
style: long line
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanbass committed Dec 18, 2023
1 parent 6cf6d57 commit 5ff5fbe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/read_chemstation_ch.R
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ read_chemstation_ch <- function(path, format_out = c("matrix", "data.frame"),
format_out <- match.arg(format_out, c("matrix", "data.frame"))
data_format <- match.arg(data_format, c("wide", "long"))
metadata_format <- match.arg(metadata_format, c("chromconverter", "raw"))
metadata_format <- switch(metadata_format, chromconverter = "chemstation", raw = "raw")
metadata_format <- switch(metadata_format, chromconverter = "chemstation",
raw = "raw")

f <- file(path, "rb")
on.exit(close(f))
Expand Down

0 comments on commit 5ff5fbe

Please sign in to comment.