The alignment consists of two steps the prefilter and alignment.
:param query_db: The query database mmseqs2 file.
(You need to initially convert a fasta file into a mmseqs2 database using createdb).
:type query_db: :class:`string`
:param trg_db: The target database mmseqs2 file.
(You need to initially convert a fasta file into a mmseqs2 database using createdb).
:type trg_db: :class:`string`
:param resultDB: The output location.
(Output of createdb)
:type resultDB: :class:`string`
:param exe_path: The path where mmseqs2 executable is located.
:type exe_path: :class:`string`
:param directory: The directory for temperary files.
:type directory: :class:`string`
:param sen: It controls the speed and sensitivity of the search.
A very fast search would use a sensitivity of 1.0,
while a very sensitive search would use a sensitivity of up to 7.0.
:type sen: :class:`float`
:param start_sens: Best hit fast. The lowest sensitivity is defined with --start-sens.
:type start_sens: :class:`int`
:param sens_steps: Best hit fast.
The number of steps to reach the highest sensitivity can be defined with --sens-steps.
:type sens_steps: :class:`int`
Convert the result database into a BLAST tab formatted file.
The file is formatted as a tab-separated list with 12 columns:
(1,2) identifiers for query and target sequences/profiles,
(3) sequence identity,
(4) alignment length,
(5) number of mismatches,
(6) number of gap openings,
(7-8, 9-10) domain start and end-position in query and in target,
(11) E-value,
and (12) bit score.
The option --format-output defines a custom output format.
The fields that are supported can be found in the following link:
https://github.com/soedinglab/mmseqs2/wiki#custom-alignment-format-with-convertalis
:param resultDB_m8: The output location
:type resultDB_m8: :class:`string`
:param fmt: Format output type, if the default is not used.
:type fmt: :class:`string`
Definition at line 56 of file mmseqs2.py.