R/printFunctionEntryInformation.R

# PRINTFUNCTIONENTRYINFORMATION
# 
#	Print function name inclusive parameter values (if verbose = TRUE)
#
# Author: stefanhaunsberger
###############################################################################


printFunctionEntryInformation = function (fun, match_call) {
	
	writeLines("================================================");
	writeLines(sprintf("%s(): Start ...", fun[1]));
	writeLines("Call details:");
	print(match_call);
	writeLines("------------------------------------------");
	
	return(as.character(fun[1]));
	
}	

Try the miRNAmeConverter package in your browser

Any scripts or data that you put into this service are public.

miRNAmeConverter documentation built on Nov. 8, 2020, 5:36 p.m.