Skip to content

Commit

Permalink
Merge branch 'release/0.3.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
abought committed Mar 17, 2022
2 parents c781107 + bf37fde commit c7903b1
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion assets/js/pages/gwas_region.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { createStudyAssocSources } from '../util/lz-helpers';
function makePlot(template_vars) {
let state = paramsFromUrl(stateUrlMapping);
// Fill in default params for any values not provided by the url
state.genome_build = template_vars.build;
state.genome_build = template_vars.genome_build;
state = Object.assign(
{ chr: template_vars.chr, start: template_vars.start, end: template_vars.end },
state
Expand Down
2 changes: 1 addition & 1 deletion locuszoom_plotting_service/gwas/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def get_context_data(self, **kwargs):
token,
),
'label': gwas.label,
'build': gwas.build,
'genome_build': gwas.build,
# Default region for bare URLs is the top hit in the study
'chr': gwas.top_hit_view.chrom,
'start': gwas.top_hit_view.start,
Expand Down
17 changes: 9 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"d3": "^5.16.0",
"d3-tip": "0.9.1",
"gwas-credible-sets": "^0.1.0",
"localzoom": "git+https://github.com/statgen/localzoom.git#eb10524",
"locuszoom": "git+https://github.com/statgen/locuszoom.git#674d25c",
"localzoom": "git+https://github.com/statgen/localzoom.git#b78103b",
"locuszoom": "0.14.0",
"lodash": "^4.17.21",
"pako": "^1.0.11",
"tabulator-tables": "^4.9.3",
Expand Down

0 comments on commit c7903b1

Please sign in to comment.