Skip to content

Commit

Permalink
Enforced the consistent choice of supplementary chimeric alignments f…
Browse files Browse the repository at this point in the history
…or overlapping mates.
  • Loading branch information
alexdobin committed Oct 1, 2018
1 parent 456c589 commit eda1b0e
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 2 deletions.
Binary file modified bin/Linux_x86_64/STAR
Binary file not shown.
Binary file modified bin/Linux_x86_64/STARlong
Binary file not shown.
Binary file modified bin/Linux_x86_64_static/STAR
Binary file not shown.
Binary file modified bin/Linux_x86_64_static/STARlong
Binary file not shown.
2 changes: 1 addition & 1 deletion source/ReadAlign_chimericDetectionPEmerged.cpp
Expand Up @@ -39,7 +39,7 @@ void ReadAlign::chimericDetectionPEmerged(ReadAlign &seRA) {
};
};
for (uint jj=0; jj<2; jj++) {
if (segLen[ii][jj]<segLmin) {
if (segLen[ii][jj]<segLmin || (segLen[ii][jj]==segLmin && trChim[ii].exons[0][EX_G]>trChim[ii-1].exons[0][EX_G])) {
segLmin=segLen[ii][jj];
i1=ii;//trChim of the shortest segment length
i2=jj;//mate of the shortest segment length
Expand Down
2 changes: 1 addition & 1 deletion source/VERSION
@@ -1 +1 @@
#define STAR_VERSION "STAR_2.6.1b"
#define STAR_VERSION "STAR_2.6.1b_10-01"

0 comments on commit eda1b0e

Please sign in to comment.