The source code provided with the voom paper uses a function called qAbundanceDist
, which gets loaded through the load
statement shown below:
> ls() [1] "" > load(url("http://bioinf.wehi.edu.au/voom/qAbundanceDist.RData")) > ls() [1] "qAbundanceDist" > class(qAbundanceDist) [1] "function"
If I try to view the source code for this function, what I get is this:
> qAbundanceDist function (v) .approxfun(x, y, v, method, yleft, yright, f) <bytecode: 0x2df5310=""> <environment: 0x2275540="">
Where can I get the actual source code for this function?
BTW, this function is pretty mysterious. It's not mentioned (at least not by the name qAbundanceDist
) in the voom paper, and there's no documentation for it:
> ?qAbundanceDist No documentation for ‘qAbundanceDist’ in specified packages and libraries: you could try ‘??qAbundanceDist’ > ??qAbundanceDist No vignettes or demos or help files found with alias or concept or title matching ‘qAbundanceDist’ using fuzzy matching.
(I emphasize, however, that I'm not looking for the function's documentation, but for its source code.)
All Google hits for source code mentioning qAbundanceDist
just point to the load
statement shown above.
Thanks for the clarification.