Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Joshua Shapiro <[email protected]>
  • Loading branch information
sjspielman and jashapiro authored Dec 7, 2023
1 parent 5a60129 commit 73cc8b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/merge_sce_list.R
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ prepare_altexps_for_merge <- function(
sce_altexp <- altExp(sce)

# Determine which features are missing
missing_features <- altexp_features[!(altexp_features %in% rownames(sce_altexp))]
missing_features <- setdiff(altexp_features, rownames(sce_altexp))
n_missing <- length(missing_features)

# Update altExp if any features are missing
Expand Down

0 comments on commit 73cc8b4

Please sign in to comment.