-
Notifications
You must be signed in to change notification settings - Fork 9
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
More UMI Stuff (hts_ExtractUMI and hts_SuperDeduper) #264
Conversation
…. SuperDeduper now supports umis in tag and had a column parameter
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
for (const auto &c : get_comment()) { | ||
idx = c.find("RX:Z:"); | ||
if (idx != std::string::npos) { | ||
std::string umi = c.substr(idx + 5); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will the "RX:Z:" portion always be at the end of the comment string?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems to be the standard for the UMI information.
if (dragen & (del != ':')) { | ||
throw HtsIOException("Delimiter (--delimiter) must be ':' to be compatible with --DRAGEN parameter"); | ||
if (dragen & (del != ':' || sep != '+')) { | ||
throw HtsIOException("Delimiter (--delimiter) must be ':' and Separator (--separator) was be '+' to be compatible with --DRAGEN parameter"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Separator (--separator) was be '+'
-> must be
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops
Matt and I were talking about making this a release, any thoughts on that or things to change / bugs to fix before we make that happen? |
I pinged david on the bug fix he was working on, that's the only thing i
can think of atm.
…On Thu, Oct 24, 2024 at 11:19 AM Bradley N. Jenner ***@***.***> wrote:
Matt and I were talking about making this a release, any thoughts on that
or things to change / bugs to fix before we make that happen?
—
Reply to this email directly, view it on GitHub
<#264 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AB555SMIYMYCWNWCSDKYFNTZ5E22NAVCNFSM6AAAAABPB7YO5CVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDIMZWGA2TONZYGE>
.
You are receiving this because you commented.Message ID:
***@***.***>
--
---------------
Joe Angell
|
So this PR has a number of changes.
This one is definitely gonna need some review so let me know if any of you would like to schedule a zoom chat to discuss the changes.