How to retrieve back Sequence ID from the successful aligned .vdjca file? #1031
-
Dear MixCR developers, I have a quick question, do you know how to or in what parameters can I retrieve back the fastq Sequence ID in the alignment step? I know you can get the aligned Sequence by "mixcr exportAlignments", but don't see the sequence ID. Best! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Hi,
Then in
Also, if you want you can add
But do keep in mind that this parameter increases the size of |
Beta Was this translation helpful? Give feedback.
Hi,
Yes, it is possible to export both read Id and a description from the original FASTQ file(to do that you have to add a parameter in
mixcr align
):Then in
mixcr exportAlignments
you can add columns with the reads description from the original fastq file and read Ids:-descrR1
and-descrR2
add fastq original headers for every read, while-readIds
adds a unique ID number assigned by MiXCR. For read Id there is no need to save original reads but you can't easily backtrack alignments to the original reads by that id.Also…