@weng-lab/genomebrowser-ui 0.2.0-beta.1 → 0.2.0-beta.2
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/dist/TrackSelect/Folders/genes/data/human.json.d.ts +1 -1
- package/dist/TrackSelect/Folders/genes/data/mouse.json.d.ts +1 -1
- package/dist/genomebrowser-ui.es.js +2 -2
- package/package.json +1 -1
- package/src/TrackSelect/Folders/genes/data/human.json +1 -1
- package/src/TrackSelect/Folders/genes/data/mouse.json +1 -1
- package/test/main.tsx +2 -2
|
@@ -1650,7 +1650,7 @@ function Qe(e) {
|
|
|
1650
1650
|
}
|
|
1651
1651
|
const ua = [
|
|
1652
1652
|
{
|
|
1653
|
-
id: "
|
|
1653
|
+
id: "gencode-basic",
|
|
1654
1654
|
displayName: "GENCODE Basic Genes",
|
|
1655
1655
|
versions: [
|
|
1656
1656
|
29,
|
|
@@ -1664,7 +1664,7 @@ const ua = [
|
|
|
1664
1664
|
data: ua
|
|
1665
1665
|
}), ha = [
|
|
1666
1666
|
{
|
|
1667
|
-
id: "
|
|
1667
|
+
id: "gencode-basic",
|
|
1668
1668
|
displayName: "GENCODE Basic Genes",
|
|
1669
1669
|
versions: [
|
|
1670
1670
|
21,
|
package/package.json
CHANGED
package/test/main.tsx
CHANGED
|
@@ -359,11 +359,11 @@ export function setLocalTracks(tracks: Track[], assembly: string) {
|
|
|
359
359
|
|
|
360
360
|
// Default selections for TrackSelect UI (uses folder row IDs)
|
|
361
361
|
const defaultHumanSelections = new Map<string, Set<string>>([
|
|
362
|
-
["human-genes", new Set(["
|
|
362
|
+
["human-genes", new Set(["gencode-basic"])],
|
|
363
363
|
["human-biosamples", new Set(["ccre-aggregate", "dnase-aggregate"])],
|
|
364
364
|
]);
|
|
365
365
|
|
|
366
366
|
const defaultMouseSelections = new Map<string, Set<string>>([
|
|
367
|
-
["mouse-genes", new Set(["
|
|
367
|
+
["mouse-genes", new Set(["gencode-basic"])],
|
|
368
368
|
["mouse-biosamples", new Set(["ccre-aggregate", "dnase-aggregate"])],
|
|
369
369
|
]);
|