Displaying 1 result from an estimated 1 matches for "cur_tree".
Did you mean:
cur_ref
2013 Aug 27
1
Minimum requirements for package submission
...on in package submission and
so it's difficult to understand the Google results. 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...