ASTRAL is a tool for estimating an unrooted species tree given a set of unrooted gene trees. ASTRAL is statistically consistent under the multi-species coalescent model (and thus is useful for handling incomplete lineage sorting, i.e., ILS). ASTRAL finds the species tree that has the maximum number of shared induced quartet trees with the set of gene trees, subject to the constraint that the set of tripartitions in the species tree comes from a predefined set of tripartitions.
ASTRAL-IV re-implements ASTRAL as a scalable alternative to ASTRAL on datasets for which ASTRAL is not suitable (e.g. large datasets, multi-individual, and gene trees with missing taxa). ASTRAL-IV also integrates CASTLES-II and thus computes terminal and internal branch lengths in substitution-per-site units.
As a scalable alternative to ASTRAL-III, ASTRAL-IV lacks of some features of ASTRAL-III (e.g. bootstrapping). You can work around by first computing optimal tree with ASTRAL-IV and use the ASTRAL-IV output tree as -q
option to ASTRAL-III.
[1] Chao Zhang, Siavash Mirarab, Weighting by Gene Tree Uncertainty Improves Accuracy of Quartet-based Species Trees, Molecular Biology and Evolution, 2022, msac215, https://doi.org/10.1093/molbev/msac215
[2] Chao Zhang, Maryam Rabiee, Erfan Sayyari, and Siavash Mirarab. 2018. “ASTRAL-III: Polynomial Time Species Tree Reconstruction from Partially Resolved Gene Trees.” BMC Bioinformatics 19 (S6): 153. doi:10.1186/s12859-018-2129-y.
[3] Yasamin Tabatabaee, Chao Zhang, Tandy Warnow, Siavash Mirarab, Phylogenomic branch length estimation using quartets, Bioinformatics, Volume 39, Issue Supplement_1, June 2023, Pages i185–i193, https://doi.org/10.1093/bioinformatics/btad221
We obtained the species tree from gene trees using ASTRAL-IV v1.20.4.6 [1] by optimizing the objective function of ASTRAL [2]. Branch lengths are computed using integrated CASTLES-II [3].
Many ASTER tools have been integrated in PhyloSuite, an integrated and scalable desktop platform for streamlined molecular sequence data management and evolutionary phylogenetics studies.
Please check out our software with GUI. Simply download the zip file, extract the contents, enter exe
folder, and click aster-gui.exe
.
Contact chao.zhang@sund.ku.dk
, aster-users@googlegroups.com
, or post on ASTER issues page.
- The rest of this TUTORIAL file
- Forums (feel free to ask questions or ask for help running ASTER):
- User group discussions
- ASTER issues page
- QQ group: 130635706
For most users, installing ASTER is very easy! Download using one of two approaches:
- You simply need to download the zip file for Windows/MacOS/Linux and extract the contents to a folder of your choice.
- Alternatively, you can clone the github repository and checkout the branch named Windows/MacOS/Linux.
Binary files should be in the exe
folder for Windows or bin
folder otherwise. If you are lucky, these may just work as is and you may not need to build at all.
- In terminal,
cd
into the downloaded directory and runmake
.
- If you see
*** Installation complete! ***
then you are done! - If you see
Command 'g++' not found
then before rerunningmake
,- Debian (Ubuntu) users try
sudo apt update sudo apt install g++
- CentOS (RedHat) users try
sudo yum update sudo yum install gcc-c++
- Unix (MacOS) users should be prompted for installing
g++
and please click "install". If no prompt, tryg++
.
- Debian (Ubuntu) users try
- If you see "error" when running
make
, please trymake astral4
instead and file a bug report.
- Binary files should be in the
bin
folder.
- Executables for x86-64 are available in
exe
folder and it is very likely that they already work. - Windows Subsystem for Linux (WSL) is HIGHLY recommanded if you need to install on your own! Please follow instructions in "For Linux/Unix/WSL users" section.
- To compile windows excutables:
- Download MinGW and install posix version for your architecture (eg. x86-64)
- Add path to
bin
folder of MinGW to system environment variablePATH
- Double click
make.bat
inside the downloaded directory
Please check out our software with GUI. Simply download the zip file, extract the contents, enter exe
folder, and click aster-gui.exe
.
- The input trees can have missing taxa, polytomies (unresolved branches), and multiple individuals per species.
- When individuals genes from the same species are available, you can ask ASTRAL to force them to be together in the species tree. You can do this in two ways.
- You can give multiple individuals from the same species the same name in the input gene trees (e.g.,
((species_name_A,species_name_B),(species_name_A,species_name_C));
). - OR, a mapping file needs to be provided using the
-a
option. This mapping file should have one line per genes, and each line needs to be in the following formats (e.g., for gene trees like((individual_A1,individual_B1),(individual_A2,individual_C1));
):
- You can give multiple individuals from the same species the same name in the input gene trees (e.g.,
individual_A1 species_name_A
individual_A2 species_name_A
individual_B1 species_name_B
individual_B2 species_name_B
individual_B3 species_name_B
...
The output in is Newick format and gives:
- the species tree topology
- (NEW) branch lengths in substitution-per-site units (IQ-TREE like) for all branches
- branch supports measured as local posterior probabilities
- It can also annotate branches with other quantities, such as quartet supports and localPPs for all three topologies.
ASTER currently has no GUI. You need to run it through the command-line. In a terminal/PowerShell, go to the directory (location) where you have downloaded ASTER and issue the following command:
bin/astral4
This will give you a list of options available. If you are using Windows, please replace bin/astral4
with .\exe\astral4.exe
.
To find the species tree with input from in a file called INPUT_FILE
, use:
bin/astral4 INPUT_FILE
or
bin/astral4 -i INPUT_FILE
In the first case, INPUT_FILE is hard-coded to be the last argument for backward compatibility.
For example if you want to run astral4
with input example/genetree.nw
, then run
bin/astral4 example/genetree.nw
or
bin/astral4 -i example/genetree.nw
The results will be outputted to the standard output. To save the results in a file use the -o OUTPUT_FILE
option before INPUT_FILE
(Strongly recommended):
bin/astral4 -o OUTPUT_FILE INPUT_FILE
or
bin/astral4 -i INPUT_FILE -o OUTPUT_FILE
With -i INPUT_FILE
option, the order does not matter anymore. For brevity, from here on we will not demonstrate -i INPUT_FILE
cases.
To save the logs (also recommended), run:
bin/astral4 -o OUTPUT_FILE INPUT_FILE 2>LOG_FILE
For example, you can run
bin/astral4 -o example/genetree.nw.stree example/genetree.nw 2>example/genetree.nw.log
ASTER supports multi-threading. To run program with 4 threads, add -t 4
before INPUT_FILE
:
bin/astral4 -t 4 -o OUTPUT_FILE INPUT_FILE 2>LOG_FILE
ASTER has very good parrallel efficiency up to 64 cores when input data is large. In fact, it often experiences super-linear speedup with 16 cores or more. So feel free to use as many cores as you want.
ASTER also allows rooting at an given outgroup:
bin/astral4 --root YOUR_OUTGROUP INPUT_FILE
For ASTRAL, correct rooting is strongly recommended to accurately compute branch lengths.
By default, ASTRAL assumes multiple individuals from the same species in the same input gene trees having the same name. Alternatively, a mapping file needs to be provided using the -a
option (see INPUT section). For example,
bin/astral4 -a example/genetree.map example/genetree.nw
When your dataset has no more than 50 species and no more than 500 genes, you may want to run with more rounds using -R
(see below).
ASTER algorithm first performs R
(4 by default) rounds of search and then repeatedly performs S
(4 by default) rounds of subsampling and exploration until no improvement found.
bin/astral4 -r R -s S -o OUTPUT_FILE INPUT_FILE 2>LOG_FILE
If you want to run with more rounds of placement for ensured optimality, then you can run with
bin/astral4 -r 16 -s 16 -o OUTPUT_FILE INPUT_FILE 2>LOG_FILE
or simply
bin/astral4 -R -o OUTPUT_FILE INPUT_FILE 2>LOG_FILE
If you want to place taxa on an existing fully resolved species tree, you can use -c SPECIES_TREE_IN_NEWICK_FORMAT
before INPUT_FILE
:
bin/astral4 -o OUTPUT_FILE -c SPECIES_TREE_IN_NEWICK_FORMAT INPUT_FILE
Specifically, you can score and annotate a fully resolved species tree containing all taxa with -c SPECIES_TREE_IN_NEWICK_FORMAT
. If want to score a species tree or you want to place only one taxon onto the tree, you can use
bin/astral4 -r 1 -s 0 -o OUTPUT_FILE -c SPECIES_TREE_IN_NEWICK_FORMAT INPUT_FILE
or simply,
bin/astral4 -C -o OUTPUT_FILE -c SPECIES_TREE_IN_NEWICK_FORMAT INPUT_FILE
If you want to give hints by providing candidate species trees or trees similar to the species tree, you can use -g SPECIES_TREES_IN_NEWICK_FORMAT
before INPUT_FILE
:
bin/astral4 -o OUTPUT_FILE -g SPECIES_TREES_IN_NEWICK_FORMAT INPUT_FILE
Add -u 0
before INPUT_FILE
if you want to compute species tree topology only; Add -u 2
before INPUT_FILE
if you support and local-PP for all three resolutions of each branch.
bin/astral4 -u 0 -o OUTPUT_FILE INPUT_FILE
bin/astral4 -u 2 -o OUTPUT_FILE INPUT_FILE
Species tree with more than 5000 taxa may cause overflow. Use the following command instead:
make astral_int128
bin/astral4_int128 -o OUTPUT_FILE INPUT_FILE