create_pkg {HubPub} | R Documentation |
This function creates the skeleton of a package that follow the guidelines for Bioconductor type packages. It is expected of the user to go through and make any necessary changes or improvements once the package begins to take shape. For examples, the DESCRIPTION contains very basic requirements, but the developer should go back and fill in the 'Title:' and 'Description:' fields.
create_pkg(package, type = c("AnnotationHub", "ExperimentHub"), use_git = TRUE)
package |
A |
type |
A |
use_git |
A |
Path to package location
fl <- tempdir() create_pkg(file.path(fl, "tstPkg"), "AnnotationHub")