package.R

# Package Creation Script
library(devtools)
# Sharing the package
rm(list = ls())
current.code <- as.package(".")
load_all(current.code)
document(current.code)
check(current.code)
#check_doc(current.code)

# if you want in your local environment to test
install(current.code)
library(CCPredict)
Anderson-Lab/CCPredict documentation built on May 5, 2019, 5:58 a.m.