1 / 5

QuickTree : Building big trees (quickly)

QuickTree : Building big trees (quickly). Three years old – why talk about it now? About to start releasing a tree flat-file Application note in Bioinformatics Trees in Pfam Tree-order alignments NIFAS Method: Neighbour-joining. while (| L | > 2) {

daria
Download Presentation

QuickTree : Building big trees (quickly)

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. QuickTree : Building big trees (quickly) • Three years old – why talk about it now? • About to start releasing a tree flat-file • Application note in Bioinformatics • Trees in Pfam • Tree-order alignments • NIFAS • Method: Neighbour-joining

  2. while (|L| > 2) { 1. Find i, j that minimises Dij = dij – (ri + rj), where 2. Make new node k and set dkm = (dim + djm – dij) / 2, for all m in L 3. Join i and j to k with dik = (dij + ri – rj) / 2 djk = dik – dik 4. Remove i and j from L and add k } Neighbour-joining

  3. 1. Find i, j that minimises Dij = dij – (ri + rj), where for i = 1 to |L| { for j = 1 to |L| {… for k = 1 to |L| {… for k = 1 to |L| {… while(|L| > 2) { for i = 1 to |L| { for j = 1 to |L| Dij = dij – (ri + rj) … } } Make new node Update matrix } Clustal W / Phylip => O(n4)QuickTree => O(n3)

More Related