view hshhlp.R @ 1:253d531a0193 draft

planemo upload for repository https://github.com/workflow4metabolomics/lcmsmatching.git commit 36c9d8099c20a1ae848f1337c16564335dd8fb2b
author prog
date Sat, 03 Sep 2016 17:02:01 -0400
parents e66bb061af06
children
line wrap: on
line source

# Function for testing if a key exists inside a list/hashmap
hHasKey <- function(h, k) {
	return(length(which(names(h) == k)) > 0)
}

# Function for getting a boolean value from a list/hashmap
hGetBool <- function(h, k) {
	if (hHasKey(h, k)) return(h[[k]]) else return(FALSE)
}

# keys      A list of keys.
# values    A list of values.
# RETURN    A hash using keys as keys and values as values.
hCreate <- function(keys, values) {
	h <- list()
	sz <- min(length(keys), length(values))
	for(i in 1:sz)
		h[ keys[[i]] ] <- values[i]
	return(h)
}