File size: 396 Bytes
35cdf53 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
"""Type annotations for Python bindings for `msa_conversion`.
The type annotations in this file were modified from the automatically generated
stubgen output.
"""
from collections.abc import Iterable
def align_sequence_to_gapless_query(
sequence: str | bytes,
query_sequence: str | bytes,
) -> str: ...
def convert_a3m_to_stockholm(a3m_sequences: Iterable[str]) -> list[str]: ...
|