AlphaFold3 / flax_model /alphafold3 /parsers /cpp /fasta_iterator.pyi
OneScience's picture
Upload folder using huggingface_hub
35cdf53 verified
Raw
History Blame Contribute Delete
524 Bytes
class FastaFileIterator:
def __init__(self, fasta_path: str) -> None: ...
def __iter__(self) -> FastaFileIterator: ...
def __next__(self) -> tuple[str,str]: ...
class FastaStringIterator:
def __init__(self, fasta_string: str | bytes) -> None: ...
def __iter__(self) -> FastaStringIterator: ...
def __next__(self) -> tuple[str,str]: ...
def parse_fasta(fasta_string: str | bytes) -> list[str]: ...
def parse_fasta_include_descriptions(fasta_string: str | bytes) -> tuple[list[str],list[str]]: ...