AlphaFold3 / flax_model /alphafold3 /parsers /cpp /msa_conversion.pyi
wuxing0105's picture
Add files using upload-large-folder tool
b7b760f verified
Raw
History Blame Contribute Delete
396 Bytes
"""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]: ...