@sjcrh/proteinpaint-server 2.76.0 → 2.77.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sjcrh/proteinpaint-server",
3
- "version": "2.76.0",
3
+ "version": "2.77.1",
4
4
  "type": "module",
5
5
  "description": "a genomics visualization tool for exploring a cohort's genotype and phenotype data",
6
6
  "main": "src/app.js",
@@ -57,7 +57,8 @@ function make(q, res, ds, genome) {
57
57
  isGeneSetTermdb: tdb.isGeneSetTermdb,
58
58
  lollipop: tdb.lollipop,
59
59
  urlTemplates: tdb.urlTemplates,
60
- title: "title" in ds.cohort ? ds.cohort.title : { text: ds.label }
60
+ title: "title" in ds.cohort ? ds.cohort.title : { text: ds.label },
61
+ hideGroupsTab: ds.cohort.hideGroupsTab
61
62
  };
62
63
  if (tdb.chartConfigByType)
63
64
  c.chartConfigByType = tdb.chartConfigByType;
@@ -214,6 +215,8 @@ function addNonDictionaryQueries(c, ds, genome) {
214
215
  data: {
215
216
  sameLegend: q.singleCell.data.sameLegend,
216
217
  refName: q.singleCell.data.refName,
218
+ width: q.singleCell.data.width,
219
+ height: q.singleCell.data.height,
217
220
  plots: q.singleCell.data.plots.map((p) => {
218
221
  return { name: p.name, colorColumn: p.colorColumn.name };
219
222
  })