Skip to content

Commit

Permalink
Hide reads with incorrect alignments to restore the old filter that t…
Browse files Browse the repository at this point in the history
…he missing mates filter previously was
  • Loading branch information
cmdcolin committed Nov 19, 2018
1 parent edfde94 commit ca28919
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/JBrowse/View/Track/_AlignmentsMixin.js
Expand Up @@ -219,6 +219,13 @@ return declare([ MismatchesMixin, NamedFeatureFiltersMixin ], {
return ! ( f.get('multi_segment_template') && f.get('multi_segment_next_segment_unmapped') );
}
},
hideIncorrectAlignment: {
desc: 'Hide reads that are not correctly aligned',
func: function( f ) {
return ! ( f.get('multi_segment_template') && ! f.get('multi_segment_all_aligned') );
}
},

hideUnmapped: {
desc: 'Hide unmapped reads',
func: function( f ) {
Expand Down

0 comments on commit ca28919

Please sign in to comment.