Skip to content

Commit

Permalink
Merge pull request #217 from rhpvorderman/refactortags
Browse files Browse the repository at this point in the history
Refactor tags parsing
  • Loading branch information
rhpvorderman authored Dec 8, 2024
2 parents 919784e + b284b5b commit 8bad37a
Show file tree
Hide file tree
Showing 5 changed files with 318 additions and 219 deletions.
4 changes: 3 additions & 1 deletion src/sequali/_qc.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,12 @@ INSERT_SIZE_MAX_ADAPTER_STORE_SIZE: int

class FastqRecordView:
obj: bytes
def __init__(self, __name, __sequence, __qualities) -> None: ...
def __init__(self, name: str, sequence: str, qualities: str,
tags: Optional[bytes] = None) -> None: ...
def name(self) -> str: ...
def sequence(self) -> str: ...
def qualities(self) -> str: ...
def tags(self) -> bytes: ...

class FastqRecordArrayView:
obj: bytes
Expand Down
Loading

0 comments on commit 8bad37a

Please sign in to comment.