File: available-apps.rst

package info (click to toggle)
python-cogent 2024.5.7a1%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 74,600 kB
  • sloc: python: 92,479; makefile: 117; sh: 16
file content (18 lines) | stat: -rw-r--r-- 615 bytes parent folder | download
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")