X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=R%2Fidentify.phylo.R;h=64ecc38734dd2be60e6dd72edf87eccbe45be497;hb=1f8c4f7bf4f7100178bd11f274247ae9fac1b876;hp=108f03e4a37ee547329f7d85e59d082425e86cf6;hpb=1d0651b1374592d87400614a03b34b4e0cc63aae;p=ape.git diff --git a/R/identify.phylo.R b/R/identify.phylo.R index 108f03e..64ecc38 100644 --- a/R/identify.phylo.R +++ b/R/identify.phylo.R @@ -1,33 +1,44 @@ -## identify.phylo.R (2008-02-08) +## identify.phylo.R (2011-03-23) ## Graphical Identification of Nodes and Tips -## Copyright 2008 Emmanuel Paradis +## Copyright 2008-2011 Emmanuel Paradis ## This file is part of the R-package `ape'. ## See the file ../COPYING for licensing issues. identify.phylo <- function(x, nodes = TRUE, tips = FALSE, - labels = FALSE, ...) + labels = FALSE, quiet = FALSE, ...) { - cat("Click close to a node of the tree...\n") + if (!quiet) + cat("Click close to a node of the tree...\n") xy <- locator(1) - Ntip <- get("last_plot.phylo$Ntip", envir = .PlotPhyloEnv) - d <- sqrt((xy$x - get("last_plot.phylo$xx", envir = .PlotPhyloEnv))^2 + - (xy$y - get("last_plot.phylo$yy", envir = .PlotPhyloEnv))^2) + if (is.null(xy)) return(NULL) + lastPP <- get("last_plot.phylo", envir = .PlotPhyloEnv) + ## rescale the coordinates (especially if the x- and + ## y-scales are very different): + pin <- par("pin") + rescaleX <- pin[1]/max(lastPP$xx) + xx <- rescaleX * lastPP$xx + rescaleY <- pin[2]/max(lastPP$yy) + yy <- rescaleY * lastPP$yy + xy$x <- rescaleX * xy$x + xy$y <- rescaleY * xy$y + ## end of rescaling + d <- (xy$x - xx)^2 + (xy$y - yy)^2 # no need to sqrt() NODE <- which.min(d) res <- list() - if (NODE <= Ntip) { + if (NODE <= lastPP$Ntip) { res$tips <- if (labels) x$tip.label[NODE] else NODE return(res) } if (tips) { - TIPS <- prop.part(x)[[NODE - Ntip]] + TIPS <- prop.part(x)[[NODE - lastPP$Ntip]] res$tips <- if (labels) x$tip.label[TIPS] else TIPS } if (nodes) { if (is.null(x$node.label)) labels <- FALSE - res$nodes <- if (labels) x$node.label[NODE - Ntip] else NODE + res$nodes <- if (labels) x$node.label[NODE - lastPP$Ntip] else NODE } res }