Contents

1 Introduction

The GSgalgoR package provides a practical but straightforward callback mechanism for adapting different galgo() execution sections to final user needs. The GSgalgoR callbacks mechanism enables adding custom functions to change the galgo() function behavior by including minor modification to galgo’s workflow. A common application of the callback mechanism is to implement personalized reports, saving partial information during the evolution process or compute the execution time.

There are five possible points where the user can hook its own code inside galgo() execution process.

Each one of the five possible hooks can be accessed through parameters with the *_callback* suffix in the galgo() function.

galgo(...,
    start_galgo_callback = callback_default,# `galgo()` is about to start.
    end_galgo_callback = callback_default,  # `galgo()` is about to finish.
    start_gen_callback = callback_default, # At the beginning of each generation
    end_gen_callback = callback_default,    # At the end of each generation
    report_callback = callback_default,     # In the middle of the generation,
                                            #  right after the new mating pool 
                                            #  have been created.
    ...) 

2 Example 1: A simple custom callback function definition

A callback function definition can be any R function accepting six parameters.

-userdir: the directory (“character”) where the user can save information into local filesystem. -generation: the number (“integer”) of the current generation/iteration. -pop_pool: the data.frame containing the resulting solutions for current iteration. -pareto: the solutions found by galgo() accross all generations in the solution space -prob_matrix: the expression set (“matrix) where features are rows and samples distributed in columns. -current_time: The current time (an object of class”POSIXct").

The following callback function example prints the generation number and current time every two iterations

library(GSgalgoR)


my_callback <-
    function(userdir = "",
        generation,
            pop_pool,
            pareto,
            prob_matrix,
            current_time) {
    # code starts  here
    if (generation%%2 == 0)
        message(paste0("generation: ",generation,
                    " current_time: ",current_time))
    }

then, the my_callback() function needs to be assigned to some of the available hooks provided by the galgo(). An example of such assignment and the resulting output is provided in the two snippets below.

A reduced version of the TRANSBIG dataset is used to setup the expression and clinical information required for the galgo() function.

library(breastCancerTRANSBIG)
data(transbig)
train <- transbig
rm(transbig)
expression <- Biobase::exprs(train)
clinical <- Biobase::pData(train)
OS <- survival::Surv(time = clinical$t.rfs, event = clinical$e.rfs)
# use a reduced dataset for the example
expression <- expression[sample(1:nrow(expression), 100), ]
# scale the expression matrix
expression <- t(scale(t(expression)))

Then, the galgo() function is invoked and the recently defined function my_callback() is assigned to the report_callback hook-point.

library(GSgalgoR)
# Running galgo
GSgalgoR::galgo(generations = 6, 
            population = 15, 
            prob_matrix = expression, 
            OS = OS,
    start_galgo_callback = GSgalgoR::callback_default, 
    end_galgo_callback = GSgalgoR::callback_default,
    report_callback = my_callback,      # call `my_callback()` in the mile 
                                        # of each generation/iteration.
    start_gen_callback = GSgalgoR::callback_default,
    end_gen_callback = GSgalgoR::callback_default) 
#> Using CPU for computing pearson distance
#> generation: 2 current_time: 2023-10-24 17:29:57.62225
#> generation: 4 current_time: 2023-10-24 17:29:59.553298
#> generation: 6 current_time: 2023-10-24 17:30:01.075717
#> NULL

3 Example 2: Saving partial population pool using custom callback function

The following callback function save in a temporary directory the solutions obtained every five generation/iteration. A file the number of the generation and with a rda. extension will be left in a directory defined by the tempdir() function.

my_save_pop_callback <-
    function(userdir = "",
            generation,
            pop_pool,
            pareto,
            prob_matrix,
            current_time) {
        directory <- paste0(tempdir(), "/")
        if (!dir.exists(directory)) {
            dir.create(directory, recursive = TRUE)
        }
        filename <- paste0(directory, generation, ".rda")
        if (generation%%2 == 0){
            save(file = filename, pop_pool)
        }
        message(paste("solution file saved in",filename))
    }

As usual, the galgo() function is invoked and the recently defined function my_save_pop_callback() is assigned to the end_gen_callback hook-point. As a result, every five generation/iteration the complete solution obtained by galgo will be saved in a file.

# Running galgo
GSgalgoR::galgo(
    generations = 6, 
    population = 15, 
    prob_matrix = expression, 
    OS = OS,
    start_galgo_callback = GSgalgoR::callback_default, 
    end_galgo_callback = GSgalgoR::callback_default,   
    report_callback = my_callback,# call `my_callback()` 
                                #  in the middle of each generation/iteration.
    start_gen_callback = GSgalgoR::callback_default,
    end_gen_callback = my_save_pop_callback # call `my_save_pop_callback()` 
                                            # at the end of each 
                                            #   generation/iteration
    ) 
#> Using CPU for computing pearson distance
#> solution file saved in /tmp/Rtmp7jkyP6/1.rda
#> generation: 2 current_time: 2023-10-24 17:30:07.749382
#> solution file saved in /tmp/Rtmp7jkyP6/2.rda
#> solution file saved in /tmp/Rtmp7jkyP6/3.rda
#> generation: 4 current_time: 2023-10-24 17:30:09.460914
#> solution file saved in /tmp/Rtmp7jkyP6/4.rda
#> solution file saved in /tmp/Rtmp7jkyP6/5.rda
#> generation: 6 current_time: 2023-10-24 17:30:11.097087
#> solution file saved in /tmp/Rtmp7jkyP6/6.rda
#> NULL

4 Callbacks implemented in GSgalgoR

By default, GSfalgoR implements four callback functions

callback_default() a simple callback that does nothing at all. It is just used for setting the default behavior of some of the hook-points inside galgo() callback_base_report() a report callback for printing basic information about the solution provided by galgo() such as fitness and crowding distance. callback_no_report() a report callback for informing the user galgo is running. Not valuable information is shown. callback_base_return_pop() a callback function for building and returning t he galgo.Obj object.

In the the default definition of the galgo() function the hook-points are defined as follow:

-start_galgo_callback = callback_default

-end_galgo_callback = callback_base_return_pop

-report_callback = callback_base_report

-start_gen_callback = callback_default

-end_gen_callback = callback_default

Notice by using the callback mechanism it is possible to modify even the returning value of the galgo() function. The default callback_base_return_pop() returns a galgo.Obj object, however it would simple to change that behavior for something like the my_save_pop_callback() and the function will not returning any value.

# Running galgo
GSgalgoR::galgo(
    generations = 6, 
    population = 15, 
    prob_matrix = expression, 
    OS = OS,
    start_galgo_callback = GSgalgoR::callback_default, 
    end_galgo_callback = my_save_pop_callback,
    report_callback = my_callback,  # call `my_callback()` 
                                    # in the middle of each generation/iteration
    start_gen_callback = GSgalgoR::callback_default,
    end_gen_callback = GSgalgoR::callback_default
    ) 
#> Using CPU for computing pearson distance
#> generation: 2 current_time: 2023-10-24 17:30:17.8535
#> generation: 4 current_time: 2023-10-24 17:30:19.535928
#> generation: 6 current_time: 2023-10-24 17:30:21.331113
#> solution file saved in /tmp/Rtmp7jkyP6/6.rda

For preserving the return behavior of the galgo() function,
callback_base_return_pop() should be called inside a custom callback. An example of such situation is shown below:


another_callback <-
    function(userdir = "",
            generation,
            pop_pool,
            pareto,
            prob_matrix,
            current_time) {
    # code starts  here

    # code ends here  
    callback_base_return_pop(userdir,
                            generation,
                            pop_pool,
                            prob_matrix,
                            current_time)
    }

5 Session info

sessionInfo()
#> R version 4.3.1 (2023-06-16)
#> Platform: x86_64-pc-linux-gnu (64-bit)
#> Running under: Ubuntu 22.04.3 LTS
#> 
#> Matrix products: default
#> BLAS:   /home/biocbuild/bbs-3.18-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_GB              LC_COLLATE=C              
#>  [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] stats     graphics  grDevices utils     datasets  methods   base     
#> 
#> other attached packages:
#>  [1] survminer_0.4.9             ggpubr_0.6.0               
#>  [3] ggplot2_3.4.4               genefu_2.34.0              
#>  [5] AIMS_1.34.0                 e1071_1.7-13               
#>  [7] iC10_1.5                    iC10TrainingData_1.3.1     
#>  [9] impute_1.76.0               pamr_1.56.1                
#> [11] cluster_2.1.4               biomaRt_2.58.0             
#> [13] survcomp_1.52.0             prodlim_2023.08.28         
#> [15] survival_3.5-7              Biobase_2.62.0             
#> [17] BiocGenerics_0.48.0         GSgalgoR_1.12.0            
#> [19] breastCancerUPP_1.39.0      breastCancerTRANSBIG_1.39.0
#> [21] BiocStyle_2.30.0           
#> 
#> loaded via a namespace (and not attached):
#>   [1] jsonlite_1.8.7          magrittr_2.0.3          magick_2.8.1           
#>   [4] SuppDists_1.1-9.7       farver_2.1.1            rmarkdown_2.25         
#>   [7] zlibbioc_1.48.0         vctrs_0.6.4             memoise_2.0.1          
#>  [10] RCurl_1.98-1.12         rstatix_0.7.2           htmltools_0.5.6.1      
#>  [13] progress_1.2.2          curl_5.1.0              broom_1.0.5            
#>  [16] sass_0.4.7              parallelly_1.36.0       KernSmooth_2.23-22     
#>  [19] bslib_0.5.1             zoo_1.8-12              cachem_1.0.8           
#>  [22] commonmark_1.9.0        iterators_1.0.14        lifecycle_1.0.3        
#>  [25] pkgconfig_2.0.3         Matrix_1.6-1.1          R6_2.5.1               
#>  [28] fastmap_1.1.1           GenomeInfoDbData_1.2.11 future_1.33.0          
#>  [31] digest_0.6.33           colorspace_2.1-0        AnnotationDbi_1.64.0   
#>  [34] S4Vectors_0.40.0        nsga2R_1.1              RSQLite_2.3.1          
#>  [37] labeling_0.4.3          filelock_1.0.2          fansi_1.0.5            
#>  [40] km.ci_0.5-6             httr_1.4.7              abind_1.4-5            
#>  [43] compiler_4.3.1          proxy_0.4-27            doParallel_1.0.17      
#>  [46] bit64_4.0.5             withr_2.5.1             backports_1.4.1        
#>  [49] carData_3.0-5           DBI_1.1.3               ggsignif_0.6.4         
#>  [52] lava_1.7.2.1            rappdirs_0.3.3          tools_4.3.1            
#>  [55] future.apply_1.11.0     bootstrap_2019.6        glue_1.6.2             
#>  [58] gridtext_0.1.5          grid_4.3.1              generics_0.1.3         
#>  [61] gtable_0.3.4            KMsurv_0.1-5            class_7.3-22           
#>  [64] tidyr_1.3.0             data.table_1.14.8       hms_1.1.3              
#>  [67] xml2_1.3.5              car_3.1-2               utf8_1.2.4             
#>  [70] XVector_0.42.0          markdown_1.11           foreach_1.5.2          
#>  [73] pillar_1.9.0            stringr_1.5.0           limma_3.58.0           
#>  [76] splines_4.3.1           ggtext_0.1.2            dplyr_1.1.3            
#>  [79] BiocFileCache_2.10.0    lattice_0.22-5          bit_4.0.5              
#>  [82] tidyselect_1.2.0        Biostrings_2.70.0       knitr_1.44             
#>  [85] gridExtra_2.3           bookdown_0.36           IRanges_2.36.0         
#>  [88] stats4_4.3.1            xfun_0.40               statmod_1.5.0          
#>  [91] stringi_1.7.12          yaml_2.3.7              evaluate_0.22          
#>  [94] codetools_0.2-19        tibble_3.2.1            BiocManager_1.30.22    
#>  [97] cli_3.6.1               survivalROC_1.0.3.1     xtable_1.8-4           
#> [100] munsell_0.5.0           jquerylib_0.1.4         survMisc_0.5.6         
#> [103] Rcpp_1.0.11             GenomeInfoDb_1.38.0     rmeta_3.0              
#> [106] globals_0.16.2          dbplyr_2.3.4            png_0.1-8              
#> [109] XML_3.99-0.14           parallel_4.3.1          mco_1.15.6             
#> [112] blob_1.2.4              prettyunits_1.2.0       mclust_6.0.0           
#> [115] bitops_1.0-7            listenv_0.9.0           scales_1.2.1           
#> [118] purrr_1.0.2             crayon_1.5.2            rlang_1.1.1            
#> [121] KEGGREST_1.42.0