Skip to content

Commit

Permalink
Fix error, correct variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
hsonne committed Oct 28, 2023
1 parent 545109b commit 16444d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/read_intermediate_results_from_log.R
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ read_intermediate_results_from_log <- function(
code_lines <- sapply(textblocks, "[", 1L)

# Name the list elements according to the codes
names(textblocks) <- gsub(pattern, "", code_lines)
names(textblocks) <- gsub(pattern_code, "", code_lines)

# Convert the text blocks with first (= code) line excluded to matrices
matrices <- lapply(textblocks, function(x) {
Expand Down

0 comments on commit 16444d2

Please sign in to comment.