Skip to content

Commit

Permalink
closes #19
Browse files Browse the repository at this point in the history
  • Loading branch information
pfgherardini committed Aug 27, 2018
1 parent a427ee5 commit c47abca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: premessa
Type: Package
Title: R package for pre-processing of flow and mass cytometry data
Version: 0.2.2
Version: 0.2.3
Author: "Pier Federico Gherardini <[email protected]> [aut, cre]"
Description: This package includes panel editing/renaming for FCS files, bead-based normalization and debarcoding.
Imports: shiny (>= 0.14), flowCore, reshape, ggplot2, hexbin, gridExtra, rhandsontable, jsonlite
Expand Down
4 changes: 2 additions & 2 deletions inst/normalizer_shinyGUI/server.R
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ shinyServer(function(input, output, session) {
title = "Normalizer report",
"Bead removal started, please wait..."
))
remove_beads_from_file(file.path(normed.dir, input$beadremovalui_selected_fcs),
premessa::remove_beads_from_file(file.path(normed.dir, input$beadremovalui_selected_fcs),
input$beadremovalui_cutoff, beads.removed.dir)
showModal(modalDialog(
title = "Normalizer report",
Expand All @@ -125,7 +125,7 @@ shinyServer(function(input, output, session) {
))
files.list <- lapply(files.list, function(f.name) {
fcs <- flowCore::read.FCS(file.path(normed.dir, f.name))
remove_beads_from_file(file.path(normed.dir, f.name), input$beadremovalui_cutoff, beads.removed.dir)
premessa::remove_beads_from_file(file.path(normed.dir, f.name), input$beadremovalui_cutoff, beads.removed.dir)
return(f.name)
})
showModal(modalDialog(
Expand Down

0 comments on commit c47abca

Please sign in to comment.