variable name typo
This commit is contained in:
parent
8ac1582514
commit
75c6efe4a6
@ -3,12 +3,13 @@
|
||||
# Purpose: A Bioinformatics Course:
|
||||
# R code accompanying the BIN-PHYLO-Tree_analysis unit.
|
||||
#
|
||||
# Version: 1.0.1
|
||||
# Version: 1.0.2
|
||||
#
|
||||
# Date: 2017 10 31
|
||||
# Author: Boris Steipe (boris.steipe@utoronto.ca)
|
||||
#
|
||||
# Versions:
|
||||
# 1.0.2 Typo in variable name, style changes
|
||||
# 1.0.1 Wrong section heading
|
||||
# 1.0 First 2017 version
|
||||
# 0.1 First code copied from 2016 material.
|
||||
@ -29,17 +30,17 @@
|
||||
#TOC> ==========================================================================
|
||||
#TOC>
|
||||
#TOC> Section Title Line
|
||||
#TOC> -------------------------------------------
|
||||
#TOC> 1 ___Section___ 38
|
||||
#TOC> 2 Tree Analysis 77
|
||||
#TOC> 2.1 Rooting Trees 136
|
||||
#TOC> 2.2 Rotating Clades 182
|
||||
#TOC> 2.3 Computing tree distances 229
|
||||
#TOC> --------------------------------------------
|
||||
#TOC> 1 Preparation and Tree Plot 43
|
||||
#TOC> 2 Tree Analysis 82
|
||||
#TOC> 2.1 Rooting Trees 141
|
||||
#TOC> 2.2 Rotating Clades 187
|
||||
#TOC> 2.3 Computing tree distances 234
|
||||
#TOC>
|
||||
#TOC> ==========================================================================
|
||||
|
||||
|
||||
# = 1 Preparation and Tree Plot ============================================
|
||||
# = 1 Preparation and Tree Plot ===========================================
|
||||
|
||||
|
||||
if (!require(Rphylip, quietly=TRUE)) {
|
||||
@ -72,7 +73,7 @@ for (i in seq_along(fungiTree$tip.label)) {
|
||||
|
||||
# Plot the tree
|
||||
plot(fungiTree, cex = 1.0, root.edge = TRUE, no.margin = TRUE)
|
||||
nodelabels(text=orgTree$node.label, cex=0.6, adj=0.2, bg="#D4F2DA")
|
||||
nodelabels(text = fungiTree$node.label, cex = 0.6, adj = 0.2, bg = "#D4F2DA")
|
||||
# Note that you can use the arrow buttons in the menu above the plot to scroll
|
||||
# back to plots you have created earlier - so you can reference back to the
|
||||
# species tree.
|
||||
|
Loading…
Reference in New Issue
Block a user