biotite.application

A subpackage that provides interfaces for external software in case Biotite’s integrated functionality is not sufficient for your tasks. These interfaces range from locally installed software (e.g. MSA software) to web services (e.g. BLAST). The interfaces are seamless: Writing input files and reading output files is handled internally. The user only needs to provide objects like a Sequence and will receive objects like an Alignment.

Note that in order to use an interface in biotite.application the corresponding software must be installed or the web server must be reachable, respectively. These programs are not shipped with the Biotite package.

Each application is represented by its respective Application class. Application objects are created, started and after the run has finished, the results are collected. The current state of the the execution is indicated by an AppState object, which restricts which method calls are allowed: For example, the parameters can only be set, when the Application has not been started yet and the results can only be collected after Application has finished.

The execution of an Application can run in parallel: In the time between starting the run and collecting the results can be used to run other code, similar to the Python Thread or Process classes.

Application classes

Application

This class is a wrapper around an external piece of runnable software in any sense.

WebApp

The base class for all web based applications.

LocalApp

The base class for all locally installed applications, that are used via the command line.

MSAApp

This is an abstract base class for multiple sequence alignment software.

Miscellaneous

AppState

This enum type represents the app states of an application.

AppStateError

Indicate that the application lifecycle was violated.

RuleViolationError

Indicates that the user guidelines of the web application would be violated, if the program continued.

TimeoutError

Indicate that the application's timeout expired.

VersionError

Indicate that the application's version is invalid.

requires_state

A decorator for methods of Application subclasses that raises an AppStateError in case the method is called, when the Application is not in the specified AppState app_state.

Subpackages

biotite.application.clustalo

A subpackage for multiple sequence alignments using Clustal-Omega.

biotite.application.sra

A subpackage for obtaining sequencing data from the NCBI sequence read archive (SRA).

biotite.application.dssp

A subpackage for protein secondary structure annotation using DSSP.

biotite.application.mafft

A subpackage for multiple sequence alignments using MAFFT.

biotite.application.muscle

A subpackage for multiple sequence alignments using MUSCLE.

biotite.application.blast

A subpackage for heuristic local alignments against a large database using BLAST.

biotite.application.tantan

A subpackage for masking sequence regions using the tantan software.

biotite.application.viennarna

A subpackage that provides interfaces to the ViennaRNA software package.

biotite.application.autodock

A subpackage for static ligand docking with Autodock.