Mercurial > repos > prog > lcmsmatching
view tolst.R @ 4:b34c14151f25 draft
planemo upload for repository https://github.com/workflow4metabolomics/lcmsmatching.git commit 494194bb501d1d7033613131865f7bd68976041c
author | prog |
---|---|
date | Tue, 14 Mar 2017 12:40:22 -0400 |
parents | e66bb061af06 |
children |
line wrap: on
line source
################## # OBJECT TO LIST # ################## .object_to_list <- function(obj) { if(is.null(obj)) return(NULL) field_names <- names(obj$getRefClass()$fields()) l <- c() lapply( field_names, function(x) { l<<-c(l,list(obj$field(x))) } ) names(l) <- field_names return(l) } ########### # TO LIST # ########### tolst <- function(v) { switch(typeof(v), S4 = lst <- .object_to_list(v), list = lst <- v, stop("Unknown type '", typeof(v), "'.") ) return(lst) }