We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2b1c7bf + ba76997 commit 9aca52fCopy full SHA for 9aca52f
1 file changed
bin/stats/site_variant_readers.py
@@ -191,7 +191,7 @@ def parse_strand(self) -> int:
191
case _:
192
raise Exception(f"Invalid strand value: {strand_str}")
193
194
-class Jacusa2Reader():
+class Jacusa2Reader(RNAVariantReader):
195
def __init__(self, file_handle: TextIO) -> None:
196
self.file_handle: TextIO = file_handle
197
@@ -220,7 +220,7 @@ def read(self) -> Optional[SiteVariantData]:
220
case '+':
221
strand = 1
222
case '-':
223
- strand -1
+ strand = -1
224
225
frequencies=np.int32(parts[JACUSA_FIELDS_INDEX["bases11"]].split(',') + [0])
226
0 commit comments