Displaying 1 result from an estimated 1 matches for "cur_node".
Did you mean:
cur_mode
2013 Aug 27
1
Minimum requirements for package submission
...s. I would appreciate any
help.
1. My functions are very basic. For example, getRoot gets the root of the
current tree (APE phylo object) and getAncestor gets the ancestor to the
current node:
getRoot <- function(cur_Tree){
return(length(cur_Tree$tip.label)+1)
}
getAncestor <- function(cur_Node, cur_Tree){
...
return(ancestor)
}
Is this okay or do I have to do anything else to submit the package? Later
on (within the next few months) I would have time to convert these
functions to S3/4 but at the moment the most important thing it to get it
out there on CRAN.
2. Does the vignette need t...