-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit. This version can use 1,500 taxa and unlimited checkpoint
cycles.
- Loading branch information
0 parents
commit f4d8ca1
Showing
7 changed files
with
21,838 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
MCMCtree is a Bayesian MCMC program for estimation of species divergence times using molecular and trait data. MCMCtree was written by Ziheng Yang from University College London. This is a fork of MCMCtree version 4.9j with small modifications suitable for large-scale analyses. The latest version can be found in [PAML's repository](https://github.com/abacus-gene/paml). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
PRGS = mcmctree | ||
CC = cc # cc, gcc, cl # if running on an intel cluster, check if you can compile with the intel compiler, icc | ||
|
||
CFLAGS = -O3 | ||
#CFLAGS = -fast # this flag is for the intel compiler | ||
|
||
LIBS = -lm # -lM | ||
|
||
all : $(PRGS) | ||
|
||
mcmctree : mcmctree.c tools.c treesub.c treespace.c paml.h | ||
$(CC) $(CFLAGS) -o $@ mcmctree.c tools.c $(LIBS) | ||
$(CC) $(CFLAGS) -o infinitesites -D INFINITESITES mcmctree.c tools.c $(LIBS) |
Oops, something went wrong.