Skip to content

Commit

Permalink
prep for release 1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjohnwright committed Apr 18, 2020
1 parent 7e6712e commit 35fc924
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [1.2.4] - 2020-04-17
- Initial WS276 release
- Bug fixes for interactions
- Protein Motif Details and Overview Widgets
- Homology-group Overview widget

## [1.2.3] -2020-03-06
- Fixing 500 error when gene does not have an associated protein in the homology widget

Expand Down
2 changes: 1 addition & 1 deletion Dockerrun.aws.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"AWSEBDockerrunVersion": 1,
"Image": {
"Name": "357210185381.dkr.ecr.us-east-1.amazonaws.com/wormbase/rest:1.2.3",
"Name": "357210185381.dkr.ecr.us-east-1.amazonaws.com/wormbase/rest:1.2.4",
"Update": "true"
},
"Ports": [
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
NAME := wormbase/rest
WORMBASE_REST_VERSION ?= "1.2.3"
WORMBASE_REST_VERSION ?= "1.2.4"
EBX_CONFIG := .ebextensions/.config
WB_DB_URI ?= $(shell sed -rn 's|value:(.*)|\1|p' \
${EBX_CONFIG} | tr -d " " | head -n 1)
Expand Down
10 changes: 5 additions & 5 deletions src/rest_api/classes/protein/widgets/homology.clj
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
:max (int (Math/floor (/ new-stop-position 3)))})))))


; This is likely going to be provided through the GFF files for JBrowse
(defn protein-homology [p]
{:data (let [hdb (d/db datomic-homology-conn)
db (d/db datomic-conn)]
Expand Down Expand Up @@ -105,8 +106,7 @@

(def widget
{:name generic/name-field
; :best_blastp_matches best-blastp-matches
:protein_homology protein-homology
; :homology_groups homology-groups
; :homology_image homology-image
})
:best_blastp_matches best-blastp-matches
; :protein_homology protein-homology
:homology_groups homology-groups
:homology_image homology-image})

0 comments on commit 35fc924

Please sign in to comment.