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
which could be clearly seen in the error log, among other warnings and messages:
[E::bwa_set_rg] the read group line contained literal characters -- replace with escaped tabs: \t
however this scenario is not handled and it keeps going further.
A simple double-escape of tab: $bwaopt .= qq{ -v 2 -M -R '\@rg\\tID:$rgid\\tSM:$rgid'};
solves the problem
The text was updated successfully, but these errors were encountered:
@tseemann I'm running into the same problem using the bioconda version which is still 3.1. I was starting to update the bioconda recipe to upload the new release... before realizing I was a bit early :')
Do you have an idea regarding when you'll be able to release this new version ?
Thanks a lot for all the good work !
(pinging you because I don't know whether you receive notifs on closed issues, sorry)
snippy/bin/snippy
Line 214 in 848a62e
line 214:
https://github.com/tseemann/snippy/blob/v3.1/bin/snippy#L214
This is double quoted string, which interpolates \t into actual tab, however latest bwa dies if it sees tabs there:
https://github.com/lh3/bwa/blob/master/bwa.c#L428
which could be clearly seen in the error log, among other warnings and messages:
[E::bwa_set_rg] the read group line contained literal characters -- replace with escaped tabs: \t
however this scenario is not handled and it keeps going further.
A simple double-escape of tab: $bwaopt .= qq{ -v 2 -M -R '\@rg\\tID:$rgid\\tSM:$rgid'};
solves the problem
The text was updated successfully, but these errors were encountered: