File size: 524 Bytes
35cdf53
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15


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]]: ...