Skip to content

Commit

Permalink
Support multi and single mapped name hits
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Jul 13, 2018
1 parent a791188 commit 7395aeb
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/JBrowse/View/Dialog/Search.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,15 @@ function (
tracks: elt.multipleLocations[j].tracks[0]
});
}
} else {
console.log(elt)
grid.push({
locstring: Util.assembleLocString(elt.location),
location: elt.location,
label: elt.location.objectName,
description: elt.location.tracks[0].label,
tracks: elt.location.tracks[0]
});
}
}
}
Expand Down

0 comments on commit 7395aeb

Please sign in to comment.