Compiled date: 2023-10-24

Last edited: 2018-11-29

License: MIT + file LICENSE

1 Feature

Using JavaScript, iSEE applications can leverage lightweight speech recognition libraries that react to specific vocal commands (think “OK Google”, “Hey Siri”) and trigger updates of the UI equivalent to one or more mouse or keyboard interaction with the UI components (Rue-Albrecht et al. 2018).

Note: As we value privacy, this feature is disabled by default: iSEE(..., voice=FALSE).

To keep the spoken commands reasonably short, only one panel may be under voice command at any one time. All spoken commands will affect the currently active panel, until a new panel is selected for voice command. See section Vocal commands available.

2 Implementation

We use the annyang lightweight JavaScript library to handle speech recongnition and update Shiny reactive values in the same way as mouse and keyboard UI elements trigger panel updates.

Note that annyang requires an active internet connection, as it relies on the browser’s own speech recognition engine (see the annyang FAQ). For instance, in Google Chrome, this engine performs the recognition in the cloud.

3 Supported web browsers

Note that the speech recognition library that we use does not work with every web browser. We currently only validated this feature in Google Chrome. Please refer to the annyang FAQ for details.

4 Usage

Using the sce object that we generated earlier, enabling speech recognition is as simple as setting voice=TRUE below:

library(iSEE)
app <- iSEE(sce, voice=TRUE)

With voice=TRUE, the lightweight JavaScript speech recognition library annyang is loaded and activated in any web browser tab that runs app.

If your default browser is not compatible with the feature, or if you work in RStudio, you can prevent the application from opening in the default browser by setting launch.browser=FALSE as follows:

if (interactive()) {
    shiny::runApp(app, port=1234, launch.browser=FALSE)
}

At that point, your R console should be displaying the address and port where app is running. In the example above, that would be:

Listening on http://127.0.0.1:1234

Using a compatible browser, navigate to the indicated address and port. Note that when the web page opens, you may be prompted to allow the web browser to use your microphone, which you must accept to enable the functionality.

5 Vocal commands available

As a proof of concept, only a subset of spoken commands are currently implemented, compared to the full range of interactions possible using the mouse and keyboard.

Note that in the commands below, words in brackets are optional.

  • Show active panel”: shows a persistent notification displaying the name of the panel currently under vocal control.
  • Create ”: Adds a new panel of the requested type to the GUI and immediately takes vocal control of it.
  • Remove <Reduced dimension plot 1>”: Removes the requested panel from the GUI. If the panel was under vocal control, clears vocal control.
  • Control <Reduced dimension plot 1>”: Takes vocal control of the requested panel.
  • Colour using <Column data | Feature name | …>”: Changes the colouring mode of the panel under vocal control.
  • Colour by <…>”: Changes the colouring covariate (e.g. gene name, colData column name) of the panel under vocal control.
  • Receive selection from <Reduced dimension plot 1>”: Makes the panel under vocal control receive the point selection from the requested panel.
  • Send selection to <Reduced dimension plot 1>”: Makes the requested panel receive the point selection from the panel under vocal control.
  • Good <boy | girl>!”: If the app is behaving well, throw it a bone!

Session Info

sessionInfo()
#> R Under development (unstable) (2023-10-22 r85388)
#> Platform: x86_64-pc-linux-gnu
#> Running under: Ubuntu 22.04.3 LTS
#> 
#> Matrix products: default
#> BLAS:   /home/biocbuild/bbs-3.19-bioc/R/lib/libRblas.so 
#> LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
#> 
#> locale:
#>  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
#>  [3] LC_TIME=en_US.UTF-8        LC_COLLATE=en_US.UTF-8    
#>  [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
#>  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
#>  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
#> [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
#> 
#> time zone: America/New_York
#> tzcode source: system (glibc)
#> 
#> attached base packages:
#> [1] stats4    stats     graphics  grDevices utils     datasets  methods  
#> [8] base     
#> 
#> other attached packages:
#>  [1] TENxPBMCData_1.19.0         HDF5Array_1.31.0           
#>  [3] rhdf5_2.47.0                DelayedArray_0.29.0        
#>  [5] SparseArray_1.3.0           S4Arrays_1.3.0             
#>  [7] abind_1.4-5                 Matrix_1.6-1.1             
#>  [9] scater_1.31.0               ggplot2_3.4.4              
#> [11] scuttle_1.13.0              scRNAseq_2.15.0            
#> [13] iSEE_2.15.0                 SingleCellExperiment_1.25.0
#> [15] SummarizedExperiment_1.33.0 Biobase_2.63.0             
#> [17] GenomicRanges_1.55.0        GenomeInfoDb_1.39.0        
#> [19] IRanges_2.37.0              S4Vectors_0.41.0           
#> [21] BiocGenerics_0.49.0         MatrixGenerics_1.15.0      
#> [23] matrixStats_1.0.0           BiocStyle_2.31.0           
#> 
#> loaded via a namespace (and not attached):
#>   [1] splines_4.4.0                 later_1.3.1                  
#>   [3] BiocIO_1.13.0                 bitops_1.0-7                 
#>   [5] filelock_1.0.2                tibble_3.2.1                 
#>   [7] XML_3.99-0.14                 lifecycle_1.0.3              
#>   [9] doParallel_1.0.17             lattice_0.22-5               
#>  [11] ensembldb_2.27.0              magrittr_2.0.3               
#>  [13] sass_0.4.7                    rmarkdown_2.25               
#>  [15] jquerylib_0.1.4               yaml_2.3.7                   
#>  [17] httpuv_1.6.12                 DBI_1.1.3                    
#>  [19] RColorBrewer_1.1-3            zlibbioc_1.49.0              
#>  [21] Rtsne_0.16                    purrr_1.0.2                  
#>  [23] AnnotationFilter_1.27.0       RCurl_1.98-1.12              
#>  [25] rappdirs_0.3.3                circlize_0.4.15              
#>  [27] GenomeInfoDbData_1.2.11       ggrepel_0.9.4                
#>  [29] irlba_2.3.5.1                 DelayedMatrixStats_1.25.0    
#>  [31] codetools_0.2-19              DT_0.30                      
#>  [33] xml2_1.3.5                    tidyselect_1.2.0             
#>  [35] shape_1.4.6                   ScaledMatrix_1.11.0          
#>  [37] viridis_0.6.4                 shinyWidgets_0.8.0           
#>  [39] BiocFileCache_2.11.0          GenomicAlignments_1.39.0     
#>  [41] jsonlite_1.8.7                GetoptLong_1.0.5             
#>  [43] BiocNeighbors_1.21.0          ellipsis_0.3.2               
#>  [45] iterators_1.0.14              foreach_1.5.2                
#>  [47] tools_4.4.0                   progress_1.2.2               
#>  [49] Rcpp_1.0.11                   glue_1.6.2                   
#>  [51] gridExtra_2.3                 xfun_0.40                    
#>  [53] mgcv_1.9-0                    dplyr_1.1.3                  
#>  [55] shinydashboard_0.7.2          withr_2.5.1                  
#>  [57] BiocManager_1.30.22           fastmap_1.1.1                
#>  [59] rhdf5filters_1.15.0           fansi_1.0.5                  
#>  [61] shinyjs_2.1.0                 digest_0.6.33                
#>  [63] rsvd_1.0.5                    R6_2.5.1                     
#>  [65] mime_0.12                     colorspace_2.1-0             
#>  [67] biomaRt_2.59.0                RSQLite_2.3.1                
#>  [69] utf8_1.2.4                    generics_0.1.3               
#>  [71] rtracklayer_1.63.0            prettyunits_1.2.0            
#>  [73] httr_1.4.7                    htmlwidgets_1.6.2            
#>  [75] pkgconfig_2.0.3               gtable_0.3.4                 
#>  [77] blob_1.2.4                    ComplexHeatmap_2.19.0        
#>  [79] XVector_0.43.0                htmltools_0.5.6.1            
#>  [81] bookdown_0.36                 ProtGenerics_1.35.0          
#>  [83] rintrojs_0.3.2                clue_0.3-65                  
#>  [85] scales_1.2.1                  png_0.1-8                    
#>  [87] knitr_1.44                    rjson_0.2.21                 
#>  [89] nlme_3.1-163                  curl_5.1.0                   
#>  [91] shinyAce_0.4.2                cachem_1.0.8                 
#>  [93] GlobalOptions_0.1.2           stringr_1.5.0                
#>  [95] BiocVersion_3.19.0            parallel_4.4.0               
#>  [97] miniUI_0.1.1.1                vipor_0.4.5                  
#>  [99] AnnotationDbi_1.65.0          restfulr_0.0.15              
#> [101] pillar_1.9.0                  grid_4.4.0                   
#> [103] vctrs_0.6.4                   promises_1.2.1               
#> [105] BiocSingular_1.19.0           dbplyr_2.3.4                 
#> [107] beachmat_2.19.0               xtable_1.8-4                 
#> [109] cluster_2.1.4                 beeswarm_0.4.0               
#> [111] evaluate_0.22                 GenomicFeatures_1.55.0       
#> [113] cli_3.6.1                     compiler_4.4.0               
#> [115] Rsamtools_2.19.0              rlang_1.1.1                  
#> [117] crayon_1.5.2                  ggbeeswarm_0.7.2             
#> [119] stringi_1.7.12                viridisLite_0.4.2            
#> [121] BiocParallel_1.37.0           munsell_0.5.0                
#> [123] Biostrings_2.71.0             lazyeval_0.2.2               
#> [125] colourpicker_1.3.0            ExperimentHub_2.11.0         
#> [127] hms_1.1.3                     sparseMatrixStats_1.15.0     
#> [129] bit64_4.0.5                   Rhdf5lib_1.25.0              
#> [131] KEGGREST_1.43.0               shiny_1.7.5.1                
#> [133] interactiveDisplayBase_1.41.0 AnnotationHub_3.11.0         
#> [135] fontawesome_0.5.2             igraph_1.5.1                 
#> [137] memoise_2.0.1                 bslib_0.5.1                  
#> [139] bit_4.0.5
# devtools::session_info()

References

Rue-Albrecht, K., F. Marini, C. Soneson, and A. T. L. Lun. 2018. “ISEE: Interactive Summarizedexperiment Explorer.” F1000Research 7 (June): 741.