Skip to content

Commit

Permalink
- remove stringr dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-enzlein committed Jun 3, 2024
1 parent 0f2c211 commit 7430933
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion functions/getVolumes.R
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ getVolumes <- function(exclude = NULL) {
volumes <- volumes[!names(volumes) %in% exclude]
}
volumes <- tolower(volumes)
names(volumes) <- str_remove(volumes, ":")
names(volumes) <- gsub(x = volumes, pattern = ":", replacement = "")

return(volumes)
}
3 changes: 1 addition & 2 deletions req.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,13 @@ tibble
tidyr
ggplot2
purrr
stringr
forcats
shinyFiles
MALDIquant
MALDIquantForeign
DT
plotly
shiny
shinyFiles
shinycssloaders
shinyhelper
shinybusy
Expand Down

0 comments on commit 7430933

Please sign in to comment.