CIPRES API - MrBayes Submission Client.
Find a file
2021-08-11 08:52:47 -03:00
.gitignore Some information on the project. 2018-09-05 08:22:59 -03:00
Application.py Get error messages correctly 2019-09-17 08:50:22 -03:00
COPYING Initial commit. Project sketch. 2018-09-04 14:00:20 -03:00
cramb.ico Add cute icon. 2018-09-28 09:56:18 -03:00
cx_freeze.py Get error messages correctly 2019-09-17 08:50:22 -03:00
download_folder_path.py Initial commit. Project sketch. 2018-09-04 14:00:20 -03:00
get_results.py List Job directly from server. Let the .pkl file be only a backup to retrieve results manually. 2018-09-17 08:35:28 -03:00
job_show.py Retrieve old results. 2018-09-07 08:10:31 -03:00
main.py Handle connection error on startup. 2018-10-25 14:52:55 -03:00
pycipres.conf Small adjustment. 2018-09-08 10:31:53 -03:00
README.md Updated README 2021-08-11 08:52:47 -03:00
requirements.txt Added a requeriments file. 2018-09-10 09:38:09 -03:00
setup.py Get error messages correctly 2019-09-17 08:50:22 -03:00

cramb

CIPRES API - MrBayes Submission Client

Github Releases GitHub release

cramb is a Python 3 application with a GUI built using Tkinter. It is intended to ease the process of sending a Nexus file to CIPRES servers for a bayesian phylogenetic inference (using MrBayes) and then retrieve the results. It assumes your Nexus file has a MrBayes Block correctly configured along with the data to be analysed.

Here is an example of a MrBayes Block inside a Nexus File:

begin mrbayes;
    set autoclose=yes nowarn=yes;
    charset Locus1 = 1-100;
    charset Locus2 = 101-200;
    partition Multi = 2: Locus1, Locus2;
    set partition = Multi;
    lset applyto=(1) nst=6 rates=invgamma;
    lset applyto=(2) nst=6 rates=gamma;
    prset applyto=(2) statefreqpr=fixed(equal);
    outgroup 1;
    mcmc ngen=500000 printfreq=1000 samplefreq=100 nchains=4 temp=0.5 savebrlens=yes;
    sumt relburnin=yes burninfrac=0.25 contype=halfcompat conformat=simple;
END;

More information on the application usage, can be found here.