concept-collection / remote-hdf5-lazy-read
Add link to source code (nav bar + README)
magland <jmagland@flatironinstitute.org> committed commit 5321a9c14fde parent d9fc1b2 Browse files
2 changed files+18−0
README.mdmodified+3−0View file
@@ -5,6 +5,9 @@ large [NWB](https://www.nwb.org/) files directly in the browser, pulling data ou
55 of HDF5 files that live on remote storage without downloading them in full and
66 without any backend server.
77
8+The source code for this demo is at
9+[concept-collection/remote-hdf5-lazy-read](https://github.com/concept-collection/remote-hdf5-lazy-read).
10+
811 The [live demo](?#demo) opens one NWB file from
912 [DANDI dandiset 000986](https://dandiarchive.org/dandiset/000986) (recordings from
1013 mouse auditory cortex) straight from DANDI's S3 bucket. It reads the session
src/App.tsxmodified+15−0View file
@@ -36,6 +36,21 @@ export const App = () => {
3636 <TabButton active={tab === "demo"} onClick={() => setTab("demo")}>
3737 Live demo
3838 </TabButton>
39+ <a
40+ href="https://github.com/concept-collection/remote-hdf5-lazy-read"
41+ target="_blank"
42+ rel="noopener noreferrer"
43+ style={{
44+ marginLeft: "auto",
45+ alignSelf: "center",
46+ color: "#1f6feb",
47+ fontSize: 14,
48+ fontWeight: 600,
49+ textDecoration: "none",
50+ }}
51+ >
52+ Source ↗
53+ </a>
3954 </nav>
4055 <div style={{ paddingTop: 20 }}>
4156 {tab === "about" ? <MarkdownPage /> : <Demo />}