-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
10x Barcodes #2
Comments
is what i meant for R2 |
@Simon-Coetzee, this is a correct description of the 10X V2 chemistry. I believe concatenating the sample and cellular barcodes, however, is incorrect ( This is because 10X uses four 8 bp oligonucleotides per sample index to address sequencing biases. This can be easily observed with any sample barcode file:
Concatenating the sample and cellular barcodes will (I think) result in reads for a given cell being associated with four different barcodes. Using just the 16 bp cellular barcode should avoid these issues. |
10x Barcodes with v2 chemistry work like this:
examples from
merge_barcodefiles_10x()
looks like there may be some confusion about which file does what?
I1 = sample barcode (SB) (8 bp)
python regex:
(@.*)\n(?P<SB>.*)\n+(.*)\n(.*)\n
R1 = cellular barcode (CB) (16 bp) + molecular barcode (MB) (umi) 10bp
python regex:
(@.*)\n(?P<CB>.{16})(?P<MB>.{10})\n+(.*)\n(.*)\n
R2 = rna reads (98 bp)
python regex:
(?P<name>@.*) .*\n(?P<seq>.*)\n+(.*)\n(?P<qual>.*)\n
The text was updated successfully, but these errors were encountered: