Skip to content

Commit

Permalink
Added na.omit to matrix reading in exploratory_plots.R (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
WackerO authored Jul 13, 2023
1 parent d7e1c15 commit 7bd9fb9
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions exec/exploratory_plots.R
Original file line number Diff line number Diff line change
Expand Up @@ -154,11 +154,13 @@ assay_files <-
# Expect that 'variance stabilised' expression profiles will already be logged

assay_data <- lapply(assay_files, function(x) {
read_matrix(
x,
sample_metadata = sample_metadata,
feature_metadata = feature_metadata,
row.names = 1
na.omit(
read_matrix(
x,
sample_metadata = sample_metadata,
feature_metadata = feature_metadata,
row.names = 1
)
)
})

Expand Down

0 comments on commit 7bd9fb9

Please sign in to comment.