Skip to content

Commit d63b9f7

Browse files
authored
Merge pull request #63 from zhoujt1994/patch-10
Update utilities.py
2 parents d726033 + e49e579 commit d63b9f7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ALLCools/utilities.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ def parse_mc_pattern(pattern: str) -> set:
7676
except KeyError:
7777
raise KeyError(f"Base {base} is not in IUPAC table.")
7878
context_set = {"".join(i) for i in itertools.product(*all_pos_list)}
79-
if pattern == 'CH':
80-
context_set.add('CH')
79+
if pattern == "CH":
80+
context_set.add("CH")
8181
return context_set
8282

8383

0 commit comments

Comments
 (0)