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).

from cogent3 import available_apps

available_apps()
packagenamecomposabledocinput typeoutput type
cogent3align_to_refTrueAligns sequences to a nominated reference in the unaligned collection.SequenceCollectionAlignment, ArrayAlignment, SerialisableType
cogent3ancestral_statesTrueComputes ancestral state probabilities from a model result.model_resultSerialisableType, tabular_result
cogent3approx_jc69TrueConverts p-distances and returns pairwise JC69 distancesDistanceMatrixDistanceMatrix
cogent3approx_pdistTrueCalculates an approximation of the p-distance between sequences based on Jaccard distances (see Notes for details).DistanceMatrixDistanceMatrix
cogent3bootstrapTrueParametric bootstrap for a provided hypothesis.Alignment, ArrayAlignmentSerialisableType, bootstrap_result
..................
piqtreepiqtree_jc_distsTrueAlignment, ArrayAlignmentPhyloNode, SerialisableType
piqtreepiqtree_mfinderTrueFind the models of best fit for an alignment using ModelFinder.Alignment, ArrayAlignmentModelFinderResult, SerialisableType
piqtreepiqtree_njTrueConstruct a neighbour joining tree from a pairwise distance matrix.DistanceMatrixPhyloNode
piqtreepiqtree_phyloTrueAlignment, ArrayAlignmentPhyloNode, SerialisableType
piqtreepiqtree_random_treesTrueGenerate a collection of random trees.intPhyloNode

Top 5 and bottom 5 rows from 52 rows x 6 columns

The name_filter argument can be used to display only the apps that match a string. For example, to display all the loader apps

available_apps(name_filter="load")
packagenamecomposabledocinput typeoutput type
cogent3load_alignedTrueLoads aligned sequences. Returns an Alignment object.IdentifierTypeAlignment, ArrayAlignment, SerialisableType
cogent3load_dbTrueLoads serialised cogent3 objects from a db. Returns whatever object type was stored.IdentifierTypeSerialisableType
cogent3load_jsonTrueLoads json serialised cogent3 objects from a json file. Returns whatever object type was stored.IdentifierTypeSerialisableType
cogent3load_tabularTrueLoads delimited data. Returns a Table.IdentifierTypeDictArray, DistanceMatrix, Table
cogent3load_unalignedTrueLoads unaligned sequences. Returns a SequenceCollection.IdentifierTypeSequenceCollection, SerialisableType

5 rows x 6 columns

Note

The first column lists the package providing the app.