Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Oct 27, 2018
1 parent 84fe1ee commit 06c8ed6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/JBrowse/Store/SeqFeature/BAM.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ class PairedBamRead {
}
get(field) {
if(field == 'start') {
return Math.min(this.f1.get('start'), this.f2.get('start'))
return Math.min(this.f1.get('start'), this.f2.get('start'))
} else if(field == 'end') {
return Math.max(this.f1.get('end'), this.f2.get('end'))
return Math.max(this.f1.get('end'), this.f2.get('end'))
} else if(field == 'name') {
return this.f1.get('name')
}
Expand Down

0 comments on commit 06c8ed6

Please sign in to comment.