Displaying 1 result from an estimated 1 matches for "ncollate".
Did you mean:
collate
2008 Mar 30
1
package.skeleton.S4
...(!length(list))
stop("no R classes specified or available")
### Addition to DESCRIPTION
message("Adding to DESCRIPTION ...")
description <- file(file.path(dir, "DESCRIPTION"), "a+b")
cat("\nDepends: methods\nLazyLoad: yes\nCollate: gives the order in
which file shall be sourced\n",append=TRUE,file = description,sep = "")
close(description)
### Remove elements starting with "." from the list
internalObjInds <- grep("^\\.", list)
internalObjs <- list[internalObjInds]...