We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0438499 commit 08042efCopy full SHA for 08042ef
src/junctions/junctions_extractor.cc
@@ -229,7 +229,7 @@ void JunctionsExtractor::print_all_junctions(ostream& out) {
229
230
//Get the strand from the XS aux tag
231
void JunctionsExtractor::set_junction_strand_XS(bam1_t *aln, Junction& j1) {
232
- uint8_t *p = bam_aux_get(aln, "XS");
+ uint8_t *p = bam_aux_get(aln, strand_tag_.c_str());
233
if(p != NULL) {
234
char strand = bam_aux2A(p);
235
strand ? j1.strand = string(1, strand) : j1.strand = string(1, '?');
0 commit comments