Skip to content
Prev 2495 / 21312 Next

[Bioc-devel] how to build a single .Rd file

On 03/04/2011 05:06 PM, Paul Shannon wrote:
Hi Paul --

R CMD check --help

shows a number of options to enhance this process, for instance
--no-vignettes --no-examples (similar options to R CMD INSTALL can
greatly speed up the install cycle during package development).

Within R, tools::checkRd and other functions are useful, e.g.,

  library(tools)
  checkRd("RCytoscape/man/CytoscapeConnection.Rd")

Martin