Skip to content
Cecile Ane edited this page Jul 6, 2018 · 22 revisions

Phylogenetic networks

Explicit networks have a biological interpretation: internal nodes represent ancestral species (or populations); the main evolutionary history is depicted by the "major tree". Various methods that estimate explicit networks use models that account for ILS and for gene tree estimation error.

Implicit networks are typically descriptive: internal nodes do not represent ancestral species. Implicit networks do not discriminate between ILS, gene flow/hybridization or gene tree estimation error, and can be hard to interpret biologically.

Read/write networks: extended Newick format

Recall that in parenthetical format, internal nodes can have a name:

To represent networks in parenthetical format, we simply need to split each hybrid node into two nodes with the same name:

By convention, the hybrid tag is # + H,LGT,R + number, and the minor hybrid edge leads to a leaf.

Thus, we get: (((A,(B)#H1),(C,#H1)),D);. We can write inheritance probabilities in the parenthetical format: (C,#H1):branch length:bootstrap support:inheritance probability.

In Julia:

using PhyloNetworks
net = readTopology("(((A,(B)#H1:::0.9),(C,#H1:::0.1)),D);")
writeTopology(net)

net, as obtained above, is a Julia object that can be manipulated inside Julia. For example, we can plot it with:

using PhyloPlots
plot(net, :R)

The hybrid edges are displayed in blue: dark blue for the major edge, and light blue for the minor edge. There are options to show node/edge numbers, edge length, inheritance probabilities, change colors, etc. Type ? within Julia to turn on the help mode, and then plot to get help and options on the plot function.

We can also change the root placement to a different edge or node, or to an outgroup.

rootatnode!(net,"A")
plot(net, :R)

Warning: we need to be careful with the placement of the root, because it should agree with the direction of the hybrid edges.

PhyloNetworks

PhyloNetworks is a Julia package for explicit phylogenetic networks with functions to

  • read/write networks in parenthetical format
  • plot networks
  • change the root, or make other network modifications
  • estimate the maximum pseudolikelihood network
  • do a bootstrap analysis, summarize a sample of (bootstrap) networks
  • comparative methods for trait evolution on a network

Julia is a high-level and interactive programming language (like R or Matlab), but it is also high-performance (like C). Also, Julia allows for collaboration in an easy way through Github. See here to install Julia, then refer to the PhyloNetworks documentation to install and use PhyloNetworks.

To change the directory used by julia in a session, say to a folder named "tutorial" in your "Desktop", you have 2 options.

  • quit your session, navigate to the directory and restart julia there.
  • or change the working directory within your Julia session like this
homedir()  # just to show the command homedir() to extract the path to your home directory
cd("$(homedir())/Desktop/tutorial") # changes the working directory
pwd()      # just to check: print working directory

If you are going to use the example data, make sure you are inside the folder baseline.gamma0.3_n30. If you are using your own data, make sure that you are in the folder where the data are.

Next: estimate a network from data with SNaQ.

PhyloNetworks Workshop

Clone this wiki locally