1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
.. _available_apps:
Displaying installed apps
-------------------------
Apps perform functions ranging from multiple sequence alignment (e.g. ``progressive_align``), to excluding alignment columns containing non-nucleotide characters (e.g. ``omit_degenerates``) to performing maximum-likelihood evolutionary analyses (e.g. ``model``).
.. jupyter-execute::
from cogent3 import available_apps
available_apps()
The ``name_filter`` argument can be used to display only the apps that match a string. For example, to display all the loader apps
.. jupyter-execute::
available_apps(name_filter="load")
|