How to rescue the data form the assemble step. #1504
-
|
Hi, here i am again for another question. To better understand how Mixcr works, i am trying to separate every step to handle my data, and learn how this smart software think and do in these cases. I've exported the Alignments.tsv using
although there are several sequences that were not merged (in some sequences, i found "," between full R1 and R2), about 43,895, the proportion is low, it is ok to throw them away. Then, i assembled them using
After summing the total sequences in .tsv file → readcount / proportion = totalreads , i found that there are only 2,659,014 reads left in the .clns file, i understand some sequences will be thrown owing to different reasons like low quality or so., but for what reason there were almost a half of sequences were thrown away ? or what can i do to rescue them by adjusting the parameters? Many thanks for your help! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
|
Hi, can you export and share the reports for the align and assemble steps? |
Beta Was this translation helpful? Give feedback.
From the output
Reads dropped due to failed mapping, percent of total: 2064956 (41.91%), it's clear that the primary issue lies in the data quality. Approximately 40% of the reads, characterized by the presence low-quality nucleotides, were set aside before assembly and subsequently failed to merge into any clones. This step is part of sequencing error correction.If you wish to bypass this quality check, you can disable the mapping by using the following command:
mixcr assemble -ObadQualityThreshold=0 alignments.vdjca output.clnsThis command instructs MiXCR to consider all reads as high-quality.
However, it's important to note that doing so might lead to a significant increase in artifi…