I am using kallistobustools, namely kb ref and kb count commands to build the count matrix of a scRNA-seq dataset.
I have ran bustools sort and bustools text on output.filtered.bus in order to look at the alignments like the following:
bustools sort -o output_sorted.bus output.filtered.busbustools text -o output_sorted.txt output_sorted.bus
In your BUS-format repo, you describe the output as 5 columns named barcode, umi, ec, count, flags. However, my output only has 4.
Why is that the case?
Which information is stored in each column of my output?
output_sorted.txt looks like the following:
AAATCCTGTAAACGTACCAATTACCGG AAAAAACA 93002 3AAATCCTGTAAACGTACCAATTACCGG AAAAAAGA 1049056 1
Hi,
I am using kallistobustools, namely
kb ref
andkb count
commands to build the count matrix of a scRNA-seq dataset.I have ran
bustools sort
andbustools text
on output.filtered.bus in order to look at the alignments like the following:bustools sort -o output_sorted.bus output.filtered.bus
bustools text -o output_sorted.txt output_sorted.bus
In your
BUS-format
repo, you describe the output as 5 columns named barcode, umi, ec, count, flags. However, my output only has 4.output_sorted.txt looks like the following:
AAATCCTGTAAACGTACCAATTACCGG AAAAAACA 93002 3
AAATCCTGTAAACGTACCAATTACCGG AAAAAAGA 1049056 1
Thank you in advance!