Skip to content

Commit 6c99fdb

Browse files
committed
Add notebook
1 parent 4c8689b commit 6c99fdb

File tree

2 files changed

+95
-378
lines changed

2 files changed

+95
-378
lines changed

examples/JupyterServer.ipynb

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "code",
5+
"execution_count": null,
6+
"id": "f1562cea-288f-4817-8ca7-606cd104630e",
7+
"metadata": {},
8+
"outputs": [],
9+
"source": [
10+
"# !wget -O test.mcool https://osf.io/3h9js/download\t"
11+
]
12+
},
13+
{
14+
"cell_type": "code",
15+
"execution_count": null,
16+
"id": "db2277b1",
17+
"metadata": {},
18+
"outputs": [],
19+
"source": [
20+
"import higlass as hg\n",
21+
"import ipywidgets\n",
22+
"import traitlets\n",
23+
"import itertools\n",
24+
"\n",
25+
"# TODO: Need to find an abstraction that brings this into notebooks.\n",
26+
"class Tilesets(ipywidgets.DOMWidget):\n",
27+
" value = traitlets.Int(0).tag(sync=True)\n",
28+
" def __init__(self):\n",
29+
" super().__init__()\n",
30+
" self.on_msg(self._handle_custom_msg)\n",
31+
" self.ts = dict()\n",
32+
"\n",
33+
" def add(self, ts):\n",
34+
" self.ts[ts.tileset.uid] = ts.tileset\n",
35+
" return self\n",
36+
"\n",
37+
" def _handle_custom_msg(self, data, buffers):\n",
38+
" payload = data[\"payload\"]\n",
39+
" uuid = data[\"uuid\"]\n",
40+
" match payload:\n",
41+
" case { \"type\": \"tileset_info\", \"tilesetUid\": uid }:\n",
42+
" info = { uid: self.ts[uid].info() }\n",
43+
" self.send({ \"uuid\": uuid, \"payload\": info })\n",
44+
" case { \"type\": \"tiles\", \"tileIds\": tids }:\n",
45+
" all_tiles = []\n",
46+
" for uid, tids in itertools.groupby(\n",
47+
" iterable=sorted(tids), key=lambda tid: tid.split(\".\")[0]\n",
48+
" ):\n",
49+
" tiles = self.ts[uid].tiles(list(tids))\n",
50+
" all_tiles.extend(tiles)\n",
51+
" data = {tid: tval for tid, tval in all_tiles}\n",
52+
" self.send({ \"uuid\": uuid, \"payload\": data })\n",
53+
" case _:\n",
54+
" raise ValueError(\"Something's wrong with the Internet\")\n",
55+
"\n",
56+
"ts = hg.cooler(\"./test.mcool\")\n",
57+
"tss = Tilesets().add(ts)\n",
58+
"track = ts.track(\"heatmap\")\n",
59+
"hg.view(track, width=6).widget(ts=tss)"
60+
]
61+
},
62+
{
63+
"cell_type": "code",
64+
"execution_count": null,
65+
"id": "12cfe9dc-ddec-4e77-b1a2-6e6378a9dc64",
66+
"metadata": {},
67+
"outputs": [],
68+
"source": []
69+
}
70+
],
71+
"metadata": {
72+
"kernelspec": {
73+
"display_name": "Python 3 (ipykernel)",
74+
"language": "python",
75+
"name": "python3"
76+
},
77+
"language_info": {
78+
"codemirror_mode": {
79+
"name": "ipython",
80+
"version": 3
81+
},
82+
"file_extension": ".py",
83+
"mimetype": "text/x-python",
84+
"name": "python",
85+
"nbconvert_exporter": "python",
86+
"pygments_lexer": "ipython3",
87+
"version": "3.13.0"
88+
}
89+
},
90+
"nbformat": 4,
91+
"nbformat_minor": 5
92+
}

0 commit comments

Comments
 (0)