AlphaFold3 / flax_model /alphafold3 /parsers /cpp /fasta_iterator.pyi
wuxing0105's picture
Add files using upload-large-folder tool
b7b760f 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]]: ...