Difference between revisions of "Beast"
Line 14: | Line 14: | ||
== Example == | == Example == | ||
#!/bin/bash | #!/bin/bash | ||
#SBATCH --ntasks=1 | #SBATCH --ntasks=1 | ||
#SBATCH --mem=2G | #SBATCH --mem=2G | ||
#SBATCH --time=0-2:00 | #SBATCH --time=0-2:00 | ||
#SBATCH --job-name=BCFTOOLS-TEST | #SBATCH --job-name=BCFTOOLS-TEST | ||
#SBATCH --output= | #SBATCH --output=beast-test.%j.out | ||
#SBATCH --error= | #SBATCH --error=beast-test.%j.err | ||
module load BCFtools/1.3.1-intel-2016b | module load BCFtools/1.3.1-intel-2016b | ||
== Documentation == | == Documentation == | ||
You can find more informations about Beast 2 and even some tutorials on the [http://www.beast2.org/ official website]. | You can find more informations about Beast 2 and even some tutorials on the [http://www.beast2.org/ official website]. |
Revision as of 09:53, 15 May 2017
Introduction
BEAST 2 is a cross-platform program for Bayesian phylogenetic analysis of molecular sequences. It estimates rooted, time-measured phylogenies using strict or relaxed molecular clock models. It can be used as a method of reconstructing phylogenies but is also a framework for testing evolutionary hypotheses without conditioning on a single tree topology. BEAST 2 uses Markov chain Monte Carlo (MCMC) to average over tree space, so that each tree is weighted proportional to its posterior probability.
Installed version
The currently installed version is 2.4.5.
Using Beast on the Cluster
If you want to use Beast on the cluster, you can do that by loading the corresponding module with the command:
module load Beast
At the moment, there is only one version of Beast installed, thats why you dont have to specify a version (e.g. Beast/2.4.5).
Example
#!/bin/bash #SBATCH --ntasks=1 #SBATCH --mem=2G #SBATCH --time=0-2:00 #SBATCH --job-name=BCFTOOLS-TEST #SBATCH --output=beast-test.%j.out #SBATCH --error=beast-test.%j.err module load BCFtools/1.3.1-intel-2016b
Documentation
You can find more informations about Beast 2 and even some tutorials on the official website.