From 391b15cf92fd5dc0799d3487510d50e4dc84f75c Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Mon, 31 Aug 2015 13:35:01 -0700 Subject: [PATCH 1/5] genbank url for whole genome sequences --- app/pods/protected/strains/show/template.hbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/pods/protected/strains/show/template.hbs b/app/pods/protected/strains/show/template.hbs index 1b96c8a..55b2bff 100644 --- a/app/pods/protected/strains/show/template.hbs +++ b/app/pods/protected/strains/show/template.hbs @@ -39,7 +39,7 @@
Whole Genome Sequence
- {{model.wholeGenomeSequence}} + {{genbank-url genbank=model.wholeGenomeSequence}}
From 1ee73a342e7cbf7a4ab3552465615e7fe039e0a1 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 3 Sep 2015 08:41:17 -0700 Subject: [PATCH 2/5] Fixed sort order in strains list --- app/pods/protected/strains/index/controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/pods/protected/strains/index/controller.js b/app/pods/protected/strains/index/controller.js index 45eb163..ec348db 100644 --- a/app/pods/protected/strains/index/controller.js +++ b/app/pods/protected/strains/index/controller.js @@ -1,6 +1,6 @@ import Ember from 'ember'; export default Ember.Controller.extend({ - sortParams: ['fullNameMU', 'totalMeasurements'], + sortParams: ['sortOrder'], sortedStrains: Ember.computed.sort('model', 'sortParams'), }); From 24c870353f5ad4cebc21b0a727561f144eca08d4 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 3 Sep 2015 10:50:01 -0700 Subject: [PATCH 3/5] 'Select All' in compare. Fixes #8 --- app/pods/protected/compare/controller.js | 29 +++++++++++++++++++++++- app/pods/protected/compare/template.hbs | 16 +++++++++++++ 2 files changed, 44 insertions(+), 1 deletion(-) diff --git a/app/pods/protected/compare/controller.js b/app/pods/protected/compare/controller.js index da7295b..00ef991 100644 --- a/app/pods/protected/compare/controller.js +++ b/app/pods/protected/compare/controller.js @@ -9,6 +9,33 @@ export default Ember.Controller.extend({ }; this.transitionToRoute('protected.compare.results', {queryParams: query}); - } + }, + + selectAllStrains: function() { + let strains = this.get('strains'); + let strain_ids = []; + strains.forEach((strain) => { + strain_ids.push(strain.id); + }); + this.set('selectedStrains', strain_ids.join(",")); + }, + + deselectAllStrains: function() { + this.set('selectedStrains', ''); + }, + + selectAllCharacteristics: function() { + let chars = this.get('characteristics'); + let char_ids = []; + chars.forEach((char) => { + char_ids.push(char.id); + }); + this.set('selectedCharacteristics', char_ids.join(",")); + }, + + deselectAllCharacteristics: function() { + this.set('selectedCharacteristics', ''); + }, + } }); diff --git a/app/pods/protected/compare/template.hbs b/app/pods/protected/compare/template.hbs index 48c2bd3..fefe9a6 100644 --- a/app/pods/protected/compare/template.hbs +++ b/app/pods/protected/compare/template.hbs @@ -16,6 +16,14 @@ placeholder="Select one or more strains" }} +
  • + + +
  • {{ @@ -28,6 +36,14 @@ placeholder="Select one or more characteristics" }}
  • +
  • + + +