Skip to content

Commit

Permalink
Merge pull request #36 from ricoderks/issue_32
Browse files Browse the repository at this point in the history
fixes issue #32.
  • Loading branch information
ricoderks authored Sep 28, 2021
2 parents e5d0b10 + 6e99ac9 commit c245ae3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: lipidomics
Type: Package
Title: Lipidomics workflow
Version: 0.9.4
Version: 0.9.5
Author: Rico Derks
Maintainer: Rico Derks <[email protected]>
Description: Lipidomics workflow to proces the result files (export alignment)
Expand Down
3 changes: 2 additions & 1 deletion R/bubblePlotUI.R
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ bubblePlotUI <- function(id, data, pattern) {
num_lipid_class <- data %>%
filter(.data$sample_name == selected_name,
grepl(x = .data$LipidClass,
pattern = pattern)) %>%
pattern = pattern),
class_keep == TRUE) %>%
distinct(.data$LipidClass) %>%
pull(.data$LipidClass) %>%
length()
Expand Down

0 comments on commit c245ae3

Please sign in to comment.