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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Adds options to specify a delimiter for a cell barcode or UMI which should be concatenated + options to specify a string splitting the cell barcode or UMI into multiple parts, of which only the first will be used. Note, this options will only work if the barcodes are contained in the BAM tag - if they were appended to the read name using umi_tools extract there is no need for these options. See #217 for motivation:
--umi-tag-delimiter=[STRING] = remove the delimeter STRING from the UMI. Defaults to None
--umi-tag-split=[STRING] = split UMI by STRING and take only the first portion. Defaults to None
--cell-tag-delimiter=[STRING] = remove the delimeter STRING from the cell barcode. Defaults to None
--cell-tag-split=[STRING] = split cell barcode by STRING and take only the first portion. Defaults to - to deal with 10X GEMs
Reduced memory requirements for count --wide-format-cell-counts: #222