AlphaFold3 / flax_model /alphafold3 /parsers /cpp /msa_conversion.pyi
OneScience's picture
Upload folder using huggingface_hub
35cdf53 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]: ...