Infer a phylogenetic tree with bootstrap support
infer_treeBuild a maximum-likelihood tree with per-clade bootstrap support from aligned nucleotide sequences. Requires a substitution model and bootstrap replicates.
Instructions
Build a maximum-likelihood tree and measure how well the data support it.
Always bootstraps. There is deliberately no option to skip it: an unsupported topology is the failure mode this server exists to prevent.
Args:
fasta: Aligned nucleotide sequences in FASTA. All sequences must be the
same length — this server does not align.
model: Substitution model, e.g. "JC", "HKY", "GTR+G". Run select_model
first if you do not have a reason to prefer one.
replicates: Bootstrap replicates (20-1000). Cost is roughly linear in
this, so 100 is a reasonable default and 1000 is for a final answer.
seed: Fixes both the resampling and the engine's search.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| seed | No | ||
| fasta | Yes | ||
| model | No | GTR+G | |
| replicates | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | ||
| newick | Yes | ||
| support | Yes | ||
| warnings | Yes | ||
| alignment | Yes | ||
| log_likelihood | Yes | ||
| reproducibility | Yes | ||
| newick_with_support | Yes |