Permalink
Please sign in to comment.
Browse files
patch samtools to handle situation where LB tags aren't in the @RG he…
…ader line
- Loading branch information...
Showing
with
15 additions
and 3 deletions.
- +3 −3 README.textile
- +1 −0 cmake/BuildSamtools.cmake
- +11 −0 vendor/samtools0.1.19.patch
| @@ -0,0 +1,11 @@ | ||
| +--- samtools-0.1.19/sam_header.c 2013-03-19 02:48:09.000000000 -0500 | ||
| ++++ vendor/samtools/sam_header.c 2014-04-23 20:58:22.114860000 -0500 | ||
| +@@ -687,7 +687,7 @@ | ||
| + HeaderTag *key, *value; | ||
| + key = header_line_has_tag(hline,key_tag); | ||
| + value = header_line_has_tag(hline,value_tag); | ||
| +- if ( !key && !value ) | ||
| ++ if ( !key || !value ) | ||
| + { | ||
| + l = l->next; | ||
| + continue; |
0 comments on commit
652e82f