-
Notifications
You must be signed in to change notification settings - Fork 11
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
Try to use the reads rather than UMIs for counting SNPs in spatial transcriptome (10x Visium) #133
Comments
Hi, thanks for the detailed feedback. The In other words, when you set It is not recommended to use |
Thank you very much for such a quick response. I will check the usage of the "--exclFLAG" and update feedback later. |
By using that flag, the overall DP increases to three times what it was before. It seems to be working well. Thanks a lot. The cellsnp-lite is really a very nice tool. |
Hi, Cellsnp-lite totally relies on the FLAG set by the upstream alignment tool. You may further check the FLAG of the reads to investigate the DP difference between the three scenarios. |
I am working on calling variants in spatial transcriptomics data (10x Visium). Since the sequencing depth of spatial transcriptome is poorer than single-cell data, I want to treat all reads in the bam independently. Therefore, I used
--UMItag None
. That means, I changed the code from this (using the default UMI tag)cellsnp-lite -s $OUT_BAM -b $BARCODE -O $OUT_DIR -R $REGION_VCF -p ${n_processes} --minMAF 0.05 --minCOUNT 20 --gzip --genotype
to this (using UMItag None)
cellsnp-lite -s $OUT_BAM -b $BARCODE --UMItag None -O $OUT_DIR -R $REGION_VCF -p ${n_processes} --minMAF 0.05 --minCOUNT 20 --gzip --genotype
I expected a higher sequencing depth (DP) in the output VCF but it wasn't. The overall DP decreased.
Could it be because of some filtering criteria? When should I use --countORPHAN?
The text was updated successfully, but these errors were encountered: