@weng-lab/genomebrowser-ui 0.2.8 → 0.2.10

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.
@@ -0,0 +1,17 @@
1
+ # Notes
2
+
3
+ ## Missing data
4
+
5
+ mouse chrom hmm file missing
6
+
7
+ ```json
8
+ {
9
+ "id": "chromhmm-ENCFF491PKK",
10
+ "assay": "chromhmm",
11
+ "url": "https://downloads.wenglab.org/Registry-V4/ENCFF491PKK.bigBed",
12
+ "experimentAccession": "",
13
+ "fileAccession": "ENCFF491PKK"
14
+ },
15
+ ```
16
+
17
+ also intestine 15.5 days sometimes 416's
package/test/main.tsx CHANGED
@@ -79,7 +79,7 @@ function injectCallbacks(track: Track, callbacks: TrackCallbacks): Track {
79
79
 
80
80
  function Main() {
81
81
  const [open, setOpen] = useState(false);
82
- const currentAssembly: Assembly = "GRCh38";
82
+ const currentAssembly: Assembly = "mm10";
83
83
 
84
84
  const browserStore = createBrowserStoreMemo({
85
85
  // chr7:19,695,494-19,699,803
package/vite.config.ts CHANGED
@@ -30,6 +30,9 @@ export default defineConfig({
30
30
  },
31
31
  },
32
32
  },
33
+ server: {
34
+ allowedHosts: true,
35
+ },
33
36
  build: {
34
37
  lib: {
35
38
  entry: path.resolve(__dirname, "src/lib.ts"),