Skip to content

Commit

Permalink
Initial commit. This version can use 1,500 taxa and unlimited checkpoint
Browse files Browse the repository at this point in the history
cycles.
  • Loading branch information
mariodosreis committed Aug 4, 2024
0 parents commit f4d8ca1
Show file tree
Hide file tree
Showing 7 changed files with 21,838 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
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).
13 changes: 13 additions & 0 deletions src/Makefile
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)
Loading

0 comments on commit f4d8ca1

Please sign in to comment.