<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.gacrc.uga.edu/index.php?action=history&amp;feed=atom&amp;title=MrBayes-Sapelo2</id>
	<title>MrBayes-Sapelo2 - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.gacrc.uga.edu/index.php?action=history&amp;feed=atom&amp;title=MrBayes-Sapelo2"/>
	<link rel="alternate" type="text/html" href="https://wiki.gacrc.uga.edu/index.php?title=MrBayes-Sapelo2&amp;action=history"/>
	<updated>2026-06-08T00:16:54Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.7</generator>
	<entry>
		<id>https://wiki.gacrc.uga.edu/index.php?title=MrBayes-Sapelo2&amp;diff=20132&amp;oldid=prev</id>
		<title>Shtsai: Created page with &quot;Category:Sapelo2Category:SoftwareCategory:Bioinformatics   === Category ===  Bioinformatics  === Program On === Sapelo2  === Version ===   3.2.6, 3.2.7a   === Auth...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.gacrc.uga.edu/index.php?title=MrBayes-Sapelo2&amp;diff=20132&amp;oldid=prev"/>
		<updated>2021-06-23T02:14:49Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;&lt;a href=&quot;/wiki/Category:Sapelo2&quot; title=&quot;Category:Sapelo2&quot;&gt;Category:Sapelo2&lt;/a&gt;&lt;a href=&quot;/wiki/Category:Software&quot; title=&quot;Category:Software&quot;&gt;Category:Software&lt;/a&gt;&lt;a href=&quot;/wiki/Category:Bioinformatics&quot; title=&quot;Category:Bioinformatics&quot;&gt;Category:Bioinformatics&lt;/a&gt;   === Category ===  Bioinformatics  === Program On === Sapelo2  === Version ===   3.2.6, 3.2.7a   === Auth...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[[Category:Sapelo2]][[Category:Software]][[Category:Bioinformatics]]  &lt;br /&gt;
=== Category ===&lt;br /&gt;
&lt;br /&gt;
Bioinformatics&lt;br /&gt;
&lt;br /&gt;
=== Program On ===&lt;br /&gt;
Sapelo2&lt;br /&gt;
&lt;br /&gt;
=== Version ===&lt;br /&gt;
 &lt;br /&gt;
3.2.6, 3.2.7a&lt;br /&gt;
 &lt;br /&gt;
=== Author / Distributor ===&lt;br /&gt;
 &lt;br /&gt;
Fredrik Ronquist, School of Computational Science, Florida State University, ronquist@csit.fsu.edu&lt;br /&gt;
 &lt;br /&gt;
John P. Huelsenbeck, Section of Ecology, Behavior and Evolution, Division of Biological Sciences, University of California, San Diego, johnh@biomail.ucsd.edu&lt;br /&gt;
 &lt;br /&gt;
=== Description ===&lt;br /&gt;
 &lt;br /&gt;
MrBayes (Bayesian Analysis of Phylogeny)&lt;br /&gt;
 &lt;br /&gt;
MrBayes is a program for the Bayesian estimation of phylogeny. 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. It uses Markov chain Monte Carlo (or CMC) to approximate the posterior probabilities of trees.&lt;br /&gt;
&lt;br /&gt;
=== Running Program ===&lt;br /&gt;
 &lt;br /&gt;
Also refer to [[Running Jobs on Sapelo2]]&lt;br /&gt;
 &lt;br /&gt;
*Version 3.2.6 is installed in /apps/eb/MrBayes/3.2.6-foss-2019b/&lt;br /&gt;
&lt;br /&gt;
To use this version of MrBayes, please first load the module with&lt;br /&gt;
&amp;lt;pre  class=&amp;quot;gscript&amp;quot;&amp;gt;&lt;br /&gt;
module load MrBayes/3.2.6-foss-2019b&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Version 3.2.7a is installed in /apps/eb/MrBayes/3.2.7a-foss-2019b/&lt;br /&gt;
&lt;br /&gt;
To use this version of MrBayes, please first load the module with&lt;br /&gt;
&amp;lt;pre  class=&amp;quot;gscript&amp;quot;&amp;gt;&lt;br /&gt;
module load MrBayes/3.2.7a-foss-2019b&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Note that this version of MrBayes does not work on the AMD Opteron processors. When using this version, please add the option --constraint=EDR to exclude the Opteron processors. For example, add the following line to your job submission script:&lt;br /&gt;
&amp;lt;pre  class=&amp;quot;gscript&amp;quot;&amp;gt;&lt;br /&gt;
#SBATCH --constraint=EDR &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Sample script subp.sh to run in the batch queue asking for 18 cores:&lt;br /&gt;
&amp;lt;pre  class=&amp;quot;gscript&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
#SBATCH --job-name=mrbayes            # Job name&lt;br /&gt;
#SBATCH --partition=batch             # Partition (queue) name&lt;br /&gt;
#SBATCH --constraint=EDR              # node feature&lt;br /&gt;
#SBATCH --nodes=2                     # Number of nodes&lt;br /&gt;
#SBATCH --ntasks=18                   # Number of MPI ranks&lt;br /&gt;
#SBATCH --ntasks-per-node=9           # How many tasks on each node&lt;br /&gt;
#SBATCH --cpus-per-task=1             # Number of cores per MPI rank &lt;br /&gt;
#SBATCH --mem-per-cpu=600mb           # Memory per processor&lt;br /&gt;
#SBATCH --time=24:00:00               # Time limit hrs:min:sec&lt;br /&gt;
#SBATCH --output=%x.%j.out            # Standard output log&lt;br /&gt;
#SBATCH --error=%x.%j.err             # Standard error log&lt;br /&gt;
#SBATCH --mail-type=ALL               # Mail events (NONE, BEGIN, END, FAIL, ALL)&lt;br /&gt;
#SBATCH --mail-user=username@uga.edu  # Where to send mail&lt;br /&gt;
&lt;br /&gt;
cd $SLURM_SUBMIT_DIR&lt;br /&gt;
&lt;br /&gt;
module load MrBayes/3.2.7a-foss-2019b&lt;br /&gt;
&lt;br /&gt;
mpirun $EBROOTMRBAYES/bin/mb &amp;lt; input.par&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
where &amp;#039;input.par&amp;#039; needs to be replaced by the input file that you want to use. Other parameters of the job, such as the maximum wall clock time, maximum memory, the number of nodes and cores per node, and the job name need to be modified appropriately as well. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Then submit job to the queue as&lt;br /&gt;
&amp;lt;pre class=&amp;quot;gcommand&amp;quot;&amp;gt;&lt;br /&gt;
sbatch ./subp.sh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Documentation ===&lt;br /&gt;
 &lt;br /&gt;
http://mrbayes.csit.fsu.edu/wiki/index.php/Manual&lt;br /&gt;
&lt;br /&gt;
=== Installation ===&lt;br /&gt;
 &lt;br /&gt;
Source code downloaded from http://mrbayes.csit.fsu.edu/&lt;br /&gt;
&lt;br /&gt;
=== System ===&lt;br /&gt;
64-bit Linux&lt;/div&gt;</summary>
		<author><name>Shtsai</name></author>
	</entry>
</feed>