Skip to content

Commit 1f061f4

Browse files
authored
Bring back funkyheatmapjs (#283)
* Update to new funkyheatmapjs * Update changelog * Update funkyheatmapjs
1 parent 039323d commit 1f061f4

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414

1515
- File format specification files were renamed from `**/api/anndata_*.yaml` to `**/api/file_*.yaml`.
1616

17+
* Restored summary figures by updating funkyheatmapjs (PR #283).
18+
1719
# openproblems.bio v2.3.0
1820

1921
## MAJOR CHANGES
@@ -75,7 +77,7 @@
7577
* Update to Quarto 1.3 (PR #221).
7678

7779
* Update license to Creative Commons CC-BY (PR #216).
78-
80+
7981
* Revert temporary navbar transition fix (PR #231).
8082

8183
* Revert quarto 1.3 weight changes (PR #236 & PR #244).
@@ -97,7 +99,7 @@
9799
* Added `../docs.css` to neurips 2021 documentation to activate the `.thumbnail-image` change (PR #232).
98100

99101
* Fix broken links (on other websites) by adding redirects to previously existing pages (PR #227).
100-
102+
101103
* Fix redirects with subdirs to events link (PR #245).
102104

103105
# openproblems.bio v2.1.2
@@ -131,7 +133,7 @@ of a stub task.
131133
* Changed the results and bibliography heros (PR #178, PR #181).
132134

133135
* Removed sub-stub regulatory effect prediction task (PR #197).
134-
136+
135137
## BUG FIXES
136138

137139
* Fix internal links being treated as external links in PR eviews (PR #179).

results/_include/_summary_figure.qmd

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -135,14 +135,11 @@ viewof scale_column = Inputs.toggle({label: "Minmax column"})
135135
136136
funkyheatmap(
137137
funky_heatmap_args.data,
138-
funky_heatmap_args.columns,
139138
funky_heatmap_args.column_info,
139+
[],
140140
funky_heatmap_args.column_groups,
141+
[],
141142
funky_heatmap_args.palettes,
142-
funky_heatmap_args.expand,
143-
funky_heatmap_args.col_annot_offset,
144-
funky_heatmap_args.add_abc,
145-
scale_column,
146143
{
147144
fontSize: 14,
148145
rowHeight: 26,
@@ -156,7 +153,8 @@ funkyheatmap(
156153
headerColor: 'var(--bs-white)',
157154
hoverColor: 'var(--bs-body-color)'
158155
}
159-
}
156+
},
157+
scale_column
160158
);
161159
```
162160

@@ -165,6 +163,6 @@ funkyheatmap(
165163
funkyheatmap = (await require('d3@7').then(d3 => {
166164
window.d3 = d3;
167165
window._ = _;
168-
return import('https://unpkg.com/funkyheatmap-js@0.1.8');
166+
return import('https://unpkg.com/funkyheatmapjs@0.2.3');
169167
})).default;
170168
```

0 commit comments

Comments
 (0)