Skip to content

Commit b49a51b

Browse files
Merge pull request #184 from szhan/uppercase_seqs
Uppercase input sequences
2 parents c618069 + d46bf33 commit b49a51b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

sc2ts/alignments.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ def append(self, alignments, show_progress=False):
125125
bar = tqdm.tqdm(total=num_chunks, disable=not show_progress)
126126
chunk = []
127127
for k, v in alignments.items():
128+
v = np.char.upper(v)
128129
chunk.append((k, compress_alignment(v)))
129130
if len(chunk) == chunk_size:
130131
self._flush(chunk)

0 commit comments

Comments
 (0)