Skip to content

Commit

Permalink
fix reversed ordere
Browse files Browse the repository at this point in the history
  • Loading branch information
kelshmo committed Sep 20, 2021
1 parent 1cb4aa5 commit 5b5f6cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/functions.R
Original file line number Diff line number Diff line change
Expand Up @@ -815,11 +815,11 @@ store_results <- function(clean_md = clean_md,
parse_residual_matrix <- purrr::map(residualized_counts, function(x) x$output)

# append differential expression data frames already nested in list
targets <- append(targets, de_results)
targets <- append(targets, parse_residual_matrix)
targets <- append(targets, de_results)

# append null rownames for differential expression object
rownames <- append(rownames, rep(list(NULL), length(de_results) + length(residualized_counts)))
rownames <- append(rownames, rep(list(NULL), length(residualized_counts) + length(de_results)))

mash <- list(
target = targets,
Expand Down

0 comments on commit 5b5f6cb

Please sign in to comment.