Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Oct 31, 2018
1 parent a0d1f4e commit 0bb61ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/JBrowse/Store/SeqFeature/BAM.js
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 0bb61ff

Please sign in to comment.