[Phylobase-commits] r566 - pkg/inst/doc
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Sat Aug 22 06:31:27 CEST 2009
Author: pdc
Date: 2009-08-22 06:31:20 +0200 (Sat, 22 Aug 2009)
New Revision: 566
Modified:
pkg/inst/doc/phylobase.Rnw
Log:
Wrap some examples in try() to prevent them from killing the build and check processes reported as bug #599
Modified: pkg/inst/doc/phylobase.Rnw
===================================================================
--- pkg/inst/doc/phylobase.Rnw 2009-08-21 22:10:24 UTC (rev 565)
+++ pkg/inst/doc/phylobase.Rnw 2009-08-22 04:31:20 UTC (rev 566)
@@ -239,9 +239,13 @@
One could drop the clade by doing
<<geodrop,results=hide>>=
+try(
subset(g2, tips.exclude=c("fuliginosa", "fortis", "magnirostris",
"conirostris", "scandens"))
+ , silent=TRUE)
+try(
subset(g2, tips.exclude=names(descendants(g2 ,MRCA(g2, c("difficilis", "fortis")))))
+ , silent=TRUE)
@
% This isn't implemented yet
More information about the Phylobase-commits
mailing list