File: timetree.h

package info (click to toggle)
iqtree 2.0.7%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 14,620 kB
  • sloc: cpp: 142,571; ansic: 57,789; sh: 275; python: 242; makefile: 95
file content (19 lines) | stat: -rw-r--r-- 288 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Time tree for phylogenetic dating
 *
 *  Created on: Apr 4, 2020
 *      Author: minh
 */

#ifndef TIMETREE_H_
#define TIMETREE_H_

#include "tree/phylotree.h"

/**
 main function to build time-tree
 @param tree input phylogenetic tree
 */
void doTimeTree(PhyloTree *tree);

#endif