You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my understanding, 7bp of R1 and R2 should not participate in the downstream BWA, while 3bp of R1 and R2 should be combined as UMI. How can I achieve this?
The text was updated successfully, but these errors were encountered:
In barcode patterns entered as strings, Ns are the bases that are taken as UMIs. Thus your definition of XXXNNNN specifies to UMI tools 3 bases that are not part of the UMI, but should be retained on the read sequence, followed by 4 bases of UMI. If your reads start with 3 bases of UMI, then your bc-pattern needs to start with NNN. X in patterns is for using when there are bases upstream of the UMI, that you none the less want to use (for example for demuxing) once the UMI has been removed.
Alternatively you can use regular expressions, with name UMI and DIscard groups.
My reads structure is
3bp umi+3bp N +T+ insertion +A+3bp N +3bp umi
so my cmd
but,i get
I don't know why it extracted 4bp as UMI,
In my understanding, 7bp of R1 and R2 should not participate in the downstream BWA, while 3bp of R1 and R2 should be combined as UMI. How can I achieve this?
The text was updated successfully, but these errors were encountered: