diff --git a/DESCRIPTION b/DESCRIPTION
index a33a5b52849c7bfe1c5bba8b01b3cd1e1b2fa168..b63778a663f37f3d1e39ff93a061a84824952219 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -1,7 +1,7 @@
 Package: SCHNAPPs
 Type: Package
 Title: Single Cell Shiny Application for Analysing Single Cell Transcriptomics Data
-Version: 1.1.22
+Version: 1.1.23
 Authors@R: c(person("Bernd", "Jagla", role = c("aut", "cre"), email = "bernd.jagla@pasteur.fr", comment = c(ORCID = "0000-0002-7696-0484")))
 Maintainer: Bernd Jagla <bernd.jagla@pasteur.fr>
 Description: Single Cell sHiny APPlication (SCHNAPPs) is a R/Shiny based application to interact, manipulate, explore, and analyze single cell RNA-seq experiments, including MARS-seq and others.
diff --git a/inst/app/moduleServer.R b/inst/app/moduleServer.R
index 273616f0ca9e8094c4812751f2a644cd551724ea..53c2a92383dda62c73fa7278008c8ed598c95f85 100644
--- a/inst/app/moduleServer.R
+++ b/inst/app/moduleServer.R
@@ -797,7 +797,7 @@ tableSelectionServer <- function(input, output, session,
     }
     
     ns <- session$ns
-    
+    nsStr = ns("-")
     dataTables <- dataTab()
     selectedRows <- input$cellNameTable_rows_selected
     scEx <- scEx()
diff --git a/inst/app/reactives.R b/inst/app/reactives.R
index ad144e2ecc40ed2bd789e629856456ef91f5bd53..17bc006142562c9512d6d33e424988436aa4861c 100644
--- a/inst/app/reactives.R
+++ b/inst/app/reactives.R
@@ -1025,11 +1025,7 @@ gsRMGenesTable <- reactive({
     )
   }
   # load("~/SCHNAPPsDebug/removedGenesTable.RData")
-<<<<<<< HEAD
- 
-=======
-  
->>>>>>> GUI2
+
   scEx <- assays(dataTables$scEx)[[1]]
   fd <- rowData(dataTables$scEx)
   dt <- fd[useGenes, ]
@@ -1043,10 +1039,7 @@ gsRMGenesTable <- reactive({
   firstCol <- firstCol <- c(firstCol, which(colnames(dt) %in% c("rowSums", "rowSamples")))
   colOrder <- c(firstCol, (1:ncol(dt))[-firstCol])
   dt <- dt[, colOrder]
-<<<<<<< HEAD
-  
-=======
->>>>>>> GUI2
+
   # dt <- dt[dt$rowSums < minGenes, ]
   exportTestValues(removedGenesTable = {
     as.data.frame(dt)