Skip to content

Commit

Permalink
Merge pull request #209 from tcezard/EVA3542_release_count_page
Browse files Browse the repository at this point in the history
EVA-3542 - Update the release page to use the new release count webservice
  • Loading branch information
tcezard authored Jul 8, 2024
2 parents 65fff37 + 44b68c1 commit 3e60d45
Show file tree
Hide file tree
Showing 4 changed files with 70 additions and 65 deletions.
13 changes: 10 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ module.exports = function (grunt) {
'EVA_RELEASE_HOST' : "wwwint.ebi.ac.uk/eva/webservices/release",
'EVA_ACCESSIONING_HOST': 'wwwint.ebi.ac.uk/eva/webservices/identifiers',
'EVA_VCF_DUMPER_HOST': 'wwwint.ebi.ac.uk/eva/webservices/vcf-dumper',
'EVA_VERSION': 'v1'
'EVA_VERSION': 'v1',
'EVA_STAT_VERSION': 'v2'
}
}
},
Expand All @@ -78,7 +79,8 @@ module.exports = function (grunt) {
'EVA_RELEASE_HOST' : "wwwdev.ebi.ac.uk/eva/webservices/release",
'EVA_ACCESSIONING_HOST': 'wwwdev.ebi.ac.uk/eva/webservices/identifiers',
'EVA_VCF_DUMPER_HOST': 'wwwdev.ebi.ac.uk/eva/webservices/vcf-dumper',
'EVA_VERSION': 'v1'
'EVA_VERSION': 'v1',
'EVA_STAT_VERSION': 'v2'
}
}
},
Expand All @@ -93,7 +95,8 @@ module.exports = function (grunt) {
'EVA_RELEASE_HOST' : "www.ebi.ac.uk/eva/webservices/release",
'EVA_ACCESSIONING_HOST': 'www.ebi.ac.uk/eva/webservices/identifiers',
'EVA_VCF_DUMPER_HOST': 'www.ebi.ac.uk/eva/webservices/vcf-dumper',
'EVA_VERSION': 'v1'
'EVA_VERSION': 'v1',
'EVA_STAT_VERSION': 'v2'
}
}
}
Expand Down Expand Up @@ -137,6 +140,10 @@ module.exports = function (grunt) {
{
match: 'EVA_VERSION',
replacement: '<%= grunt.config.get("EVA_VERSION") %>'
},
{
match: 'EVA_STAT_VERSION',
replacement: '<%= grunt.config.get("EVA_STAT_VERSION") %>'
}
]
},
Expand Down
1 change: 1 addition & 0 deletions src/js/eva-manager-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ EVA_VCF_DUMPER_HOST = "https:" + "//@@EVA_VCF_DUMPER_HOST";
DBSNP_VERSION = '@@DBSNP_VERSION';
DGVA_VERSION = '@@DGVA_VERSION';
EVA_VERSION = '@@EVA_VERSION';
EVA_STAT_VERSION = '@@EVA_STAT_VERSION';

var EvaManager = {
host: EVA_HOST,
Expand Down
Loading

0 comments on commit 3e60d45

Please sign in to comment.