This image facilitates the usage of IQ-TREE 3, IQ-TREE 3 is a fast and versatile phylogenetic inference software that performs maximum-likelihood tree reconstruction, automatic evolutionary model selection, branch support analysis, partitioned phylogenomic analyses, ancestral state reconstruction, topology tests, and several other downstream phylogenetic tasks.
You should adapt and run the following command:
docker run --rm -v /your/data/dir:/data pegi3s/iqtree3 iqtree3 -s /data/your_alignment.fasta -m MFP -mtree --merit BIC -B 1000 -alrt 1000 --bnni --seed 1 --prefix /data/output_files/run1 -T AUTO
In this command, you should replace:
/your/data/dir with your actual working directoryyour_alignment.fasta with the actual name of your alignment file inside your working directoryoutput_files with the actual name of the folder where you want the output files to be writtenrun1 with the prefix you want for the output filesNOTES:
-m MFP: perform extended ModelFinder model selection and then infer the tree under the best-fit model-mtree: perform a full tree search for every tested model during model selection--merit BIC: use BIC as the criterion to rank and choose the best model-B 1000: perform 1000 ultrafast bootstrap replicates-alrt 1000: perform 1000 SH-aLRT replicates--bnni: optimize bootstrap trees by NNI on bootstrap alignments to reduce inflated support values--seed 1: set a fixed random seed for reproducibility--prefix /data/output_files/run1: prefix for all output files-T AUTO: automatically detect and use the available CPU threads--seqtype <type>: explicitly set the sequence type (BIN, DNA, AA, NT2AA, CODON, MORPH)-t <file|PARS|RAND>: specify a starting tree-o <taxon[,taxon,...]>: define outgroup taxon or taxa-p <file>: partition file for partitioned analyses--redo: redo both ModelFinder and tree search--redo-tree: keep ModelFinder result and redo only the tree search--safe: enable safe likelihood kernel to avoid numerical underflow--mem <num[G|M|%]>: limit RAM usage--runs <num>: number of independent runs-v: verbose mode-h: print the help text-V: show the current version numberdocker run --rm -v /your/data/dir:/data pegi3s/iqtree3 iqtree3 -s /data/your_alignment.fasta -m MF -mtree --merit BIC --prefix /data/output_files/modeltest -T AUTO
docker run --rm -v /your/data/dir:/data pegi3s/iqtree3 iqtree3 -s /data/your_alignment.fasta -m GTR+F+I+G4 --prefix /data/output_files/run1 -T AUTO
docker run --rm -v /your/data/dir:/data pegi3s/iqtree3 iqtree3 -s /data/concat_alignment.fasta -p /data/partitions.nex -m MFP+MERGE --merit BIC -B 1000 --seed 1 --prefix /data/output_files/run1 -T AUTO
-p with a partition file is generally more appropriate than treating the whole matrix as a single alignment.model.gz file.iqtree fileTo see the IQ-TREE 3 help, just run:
docker run --rm pegi3s/iqtree3 iqtree3 -h
Content type
Image
Digest
sha256:6cbe3e1c7…
Size
39.7 MB
Last updated
5 days ago
docker pull pegi3s/iqtree3