We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c70139 commit a381664Copy full SHA for a381664
fgpyo/sam/__init__.py
@@ -161,8 +161,8 @@
161
from typing import Iterator
162
from typing import List
163
from typing import Optional
164
+from typing import Set
165
from typing import Tuple
-from typing import set
166
from typing import Union
167
from typing import cast
168
@@ -193,7 +193,7 @@
193
SAM_UMI_DELIMITER: str = "-"
194
"""Multiple UMI delimiter, which SAM specification recommends should be a hyphen"""
195
196
-VALID_UMI_CHARACTERS: set[str] = set("ACGTN")
+VALID_UMI_CHARACTERS: Set[str] = set("ACGTN")
197
"""Illumina's restricted UMI characters."""
198
199
ILLUMINA_UMI_DELIMITER: str = "+"
0 commit comments