Skip to content

Commit a0df33a

Browse files
committed
temporary adjustment to 10xv4
1 parent 5d4eb5c commit a0df33a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

kb_python/count.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,11 @@ def kallisto_bus(
181181
command += ['-i', index_path]
182182
command += ['-o', out_dir]
183183
if not demultiplexed:
184-
command += ['-x', technology]
184+
if technology.upper() == "10XV4":
185+
# TODO: REMOVE THIS WHEN KALLISTO IS UPDATED
186+
command += ['-x', "10XV3"]
187+
else:
188+
command += ['-x', technology]
185189
elif technology[0] == '-':
186190
# User supplied a custom demuxed (no-barcode) technology
187191
command += ['-x', technology]

0 commit comments

Comments
 (0)