Bayesian inference of phylogeny is based upon a quantity called the posterior probability distribution of trees, which is the probability of a tree conditioned on the observations. The conditioning is accomplished using Bayes's theorem. The posterior probability distribution of trees is impossible to calculate analytically; instead, MrBayes uses a simulation technique called Markov chain Monte Carlo (or MCMC) to approximate the posterior probabilities of trees. WWW: http://mrbayes.csit.fsu.edu/ PR: ports/118542 Submitted by: mzaki at biol.s.u-tokyo.ac.jp
34 lines
735 B
Makefile
34 lines
735 B
Makefile
# New ports collection makefile for: mrbayes
|
|
# Date created: 11 December 2007
|
|
# Whom: mzaki@biol.s.u-tokyo.ac.jp
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mrbayes
|
|
PORTVERSION= 3.1.2
|
|
CATEGORIES= biology
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= mzaki@biol.s.u-tokyo.ac.jp
|
|
COMMENT= Bayesian inference of phylogeny
|
|
|
|
USE_GMAKE= yes
|
|
|
|
LIB_DEPENDS+= readline.5:${PORTSDIR}/devel/readline
|
|
|
|
PLIST_FILES= bin/mb
|
|
|
|
PORTEXAMPLES= adh.nex anolis.nex avian_ovomucoids.nex bglobin.nex \
|
|
cynmix.nex kim.nex primates.nex replicase.nex
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/mb ${PREFIX}/bin/
|
|
.if !defined(NOPORTEXAMPLES)
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
.for file in ${PORTEXAMPLES}
|
|
@${INSTALL_DATA} ${WRKSRC}/${file} ${EXAMPLESDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|