Mercurial > repos > prog > lcmsmatching
view MsDbLogger.R @ 6:b8f70d8216b3 draft
planemo upload for repository https://github.com/workflow4metabolomics/lcmsmatching.git commit b3a4e34cf9356447ae3507cc6fe2ff6a1f24afbc-dirty
| author | prog |
|---|---|
| date | Mon, 27 Mar 2017 06:27:29 -0400 |
| parents | 3afe41d3e9e7 |
| children |
line wrap: on
line source
if ( ! exists('MsDbLogger')) { # Do not load again if already loaded source('MsDbObserver.R') ##################### # CLASS DECLARATION # ##################### MsDbLogger <- setRefClass("MsDbLogger", contains = 'MsDbObserver', fields = list(.verbose = 'numeric', .file = 'ANY' )) ############### # CONSTRUCTOR # ############### MsDbLogger$methods( initialize = function(verbose = 1, file = NULL, ...) { .verbose <<- if ( ! is.null(verbose) && ! is.na(verbose)) verbose else 1 .file <<- if ( ! is.null(file) && ! is.na(file)) file else stderr() callSuper(...) # calls super-class initializer with remaining parameters }) ############ # PROGRESS # ############ MsDbLogger$methods( progress = function(msg, level = 1) { if (.self$.verbose >= level) cat(msg, "\n", sep = '', file = .self$.file) }) } # end of load safe guard
