@@ -201,7 +201,7 @@ DeconvExplorer <- function(deconvexp_bulk = NULL,
201201 column(
202202 width = 4 ,
203203 selectInput(" deconvMethod" , " Deconvolution Method" ,
204- choices = c(' MuSiC' = ' music' , omnideconv :: deconvolution_methods [- 10 ])
204+ choices = c(" MuSiC" = " music" , omnideconv :: deconvolution_methods [- 10 ])
205205 )
206206 ),
207207 column(
@@ -220,8 +220,10 @@ DeconvExplorer <- function(deconvexp_bulk = NULL,
220220 column(
221221 width = 3 ,
222222 div(
223- shinyBS :: popify(shinyWidgets :: actionBttn(" deconvolute" , " Deconvolute" , style = ' simple' , icon = icon(' triangle-exclamation' ), color = ' warning' ),
224- " Attention" , " Some methods are considerably slower than others; please keep this in mind when using DeconvExplorer for deconvolution." ),
223+ shinyBS :: popify(
224+ shinyWidgets :: actionBttn(" deconvolute" , " Deconvolute" , style = " simple" , icon = icon(" triangle-exclamation" ), color = " warning" ),
225+ " Attention" , " Some methods are considerably slower than others; please keep this in mind when using DeconvExplorer for deconvolution."
226+ ),
225227 style = " margin-top:1.7em"
226228 )
227229 ),
@@ -234,7 +236,7 @@ DeconvExplorer <- function(deconvexp_bulk = NULL,
234236 title = " " ,
235237 content = " Select a deconvolution method to run. If required and supported by the deconvolution method you can additionally select a custom signature to be used in computation. Please note this is an advanced feature and should be used with caution. "
236238 )
237-
239+
238240
239241 deconv_plot_box <- shinydashboard :: box(
240242 id = " tour_deconvPlot" ,
@@ -511,43 +513,45 @@ DeconvExplorer <- function(deconvexp_bulk = NULL,
511513 title = span(" Clustered Signature" , icon(" question-circle" , id = " sigHeatmapQ" )),
512514 status = " info" , solidHeader = TRUE ,
513515 width = 12 ,
514- fluidRow(
516+ fluidRow(
515517 column(
516518 width = 4 ,
517519 selectInput(" signatureToHeatmap" , " Select a Signature" , choices = NULL )
518520 ),
519521 column(
520522 width = 2 ,
521523 selectInput(" signatureAnnotationScore" , " Select an annotation score" ,
522- choices = c(" Entropy" = " entropy" , " Gini Index" = " gini" )
524+ choices = c(" Entropy" = " entropy" , " Gini Index" = " gini" )
523525 )
524526 ),
525527 column(
526528 width = 2 ,
527529 selectInput(" signatureAnnotationPlotType" , " Annotation Type" ,
528- choices = c(" Bars" = " bar" , " Lines" = " line" )
530+ choices = c(" Bars" = " bar" , " Lines" = " line" )
529531 )
530532 ),
531533 column(
532534 width = 2 ,
533535 selectInput(" clusterCelltypes" , " Order rows (cell types)" ,
534- choices = c(" .. by cell-type similarity" = " cluster" , " .. alphabetically" = " no_cluster" )
536+ choices = c(" .. by cell-type similarity" = " cluster" , " .. alphabetically" = " no_cluster" )
535537 )
536538 ),
537539 column(
538540 width = 2 ,
539541 selectInput(" clusterGenes" , " Order columns (genes)" ,
540- choices = c(" .. by maximal z-score per cell type" = " z-score cutoff" ,
541- " .. hierarchically based on euclidean distance" = " hierarchical clustering" ,
542- " .. alphabetically" = " alphabetical" )
542+ choices = c(
543+ " .. by maximal z-score per cell type" = " z-score cutoff" ,
544+ " .. hierarchically based on euclidean distance" = " hierarchical clustering" ,
545+ " .. alphabetically" = " alphabetical"
546+ )
543547 )
544548 )
545549 ),
546550 fluidRow(
547551 column(
548552 width = 12 ,
549553 InteractiveComplexHeatmap :: originalHeatmapOutput(" clusteredHeatmapOneSignature" ,
550- width = " 1250px" , height = " 450px" , containment = TRUE
554+ width = " 1250px" , height = " 450px" , containment = TRUE
551555 )
552556 )
553557 ),
@@ -725,7 +729,7 @@ DeconvExplorer <- function(deconvexp_bulk = NULL,
725729 column(
726730 width = 7 ,
727731 sliderInput(" refinePercentZero" , " Maximum percentage of zeroes allowed for each gene" ,
728- min = 0 , max = 100 , value = 90 , step = 1 , post = " %"
732+ min = 0 , max = 100 , value = 90 , step = 1 , post = " %"
729733 )
730734 ),
731735 column(
@@ -759,6 +763,13 @@ DeconvExplorer <- function(deconvexp_bulk = NULL,
759763 )
760764 )
761765
766+ refUnspecificPopover <-
767+ shinyBS :: bsPopover(
768+ id = " refUnspecificQ" ,
769+ title = " " ,
770+ content = " The overall expression is binned into 'high', 'medium' and 'low expression' for each gene. The number of cell types the gene has to be in the 'high' bin can be modified and defaults to 1. Each gene expressed 'high' in more cell types than this parameter is removed. "
771+ )
772+
762773 refinementBestNBox <- shinydashboard :: box(
763774 solidHeader = FALSE , width = NULL , background = " red" ,
764775 fluidRow(
@@ -810,8 +821,8 @@ DeconvExplorer <- function(deconvexp_bulk = NULL,
810821 shinyBS :: bsPopover(
811822 id = " refManuallyQ" ,
812823 title = " " ,
813- content =
814- )
824+ content =
825+ )
815826
816827 # Info Boxes --------------------------------------------------------------
817828 info_overview <- shinydashboard :: box(
@@ -1654,7 +1665,7 @@ DeconvExplorer <- function(deconvexp_bulk = NULL,
16541665 scoring_method = input $ signatureAnnotationScore ,
16551666 annotation_type = input $ signatureAnnotationPlotType ,
16561667 color_palette = input $ globalColor ,
1657- order_rows = input $ clusterCelltypes ,
1668+ order_rows = input $ clusterCelltypes ,
16581669 order_columns = input $ clusterGenes
16591670 ),
16601671 " clusteredHeatmapOneSignature" ,
0 commit comments