gramene-search 2.1.11 → 2.2.0
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/.claude/launch.json +11 -0
- package/.claude/settings.local.json +6 -1
- package/.env.example +6 -0
- package/.parcel-cache/13f2d5707e7af45c-RequestGraph +0 -0
- package/.parcel-cache/5ae0570a78c0dba3-AssetGraph +0 -0
- package/.parcel-cache/9ac092379278e465-BundleGraph +0 -0
- package/.parcel-cache/data.mdb +0 -0
- package/.parcel-cache/lock.mdb +0 -0
- package/.parcel-cache/snapshot-13f2d5707e7af45c.txt +2 -2
- package/dist/index.js +2065 -154
- package/dist/index.js.map +1 -1
- package/package.json +5 -2
- package/src/bundles/api.js +10 -4
- package/src/bundles/exprViz.js +97 -1
- package/src/bundles/index.js +4 -1
- package/src/bundles/ontologyEnrichment.js +14 -1
- package/src/bundles/savedViews.js +335 -0
- package/src/bundles/uiViewState.js +174 -0
- package/src/bundles/viewSnapshot.js +313 -0
- package/src/bundles/views.js +22 -0
- package/src/components/Auth.js +23 -3
- package/src/components/SaveView.js +157 -0
- package/src/components/exprViz/ExprVizView.js +16 -11
- package/src/components/exprViz/ParallelCoordsPlot.js +15 -0
- package/src/components/results/GeneList.js +45 -15
- package/src/components/results/OntologyEnrichment.js +13 -6
- package/src/components/results/details/BAR.js +148 -0
- package/src/components/results/details/Expression.js +43 -11
- package/src/components/results/details/Homology.js +170 -32
- package/src/components/results/details/Pathways.js +4 -2
- package/src/components/results/details/Sequences.js +24 -8
- package/src/demo.js +22 -17
- package/src/index.js +2 -1
- package/src/suppressDevWarnings.js +13 -0
- package/src/utils/bootView.js +38 -0
|
@@ -82,7 +82,12 @@
|
|
|
82
82
|
"Bash(git -C /Users/olson/src/warelab/gramene-search apply /tmp/demo-firebase.patch)",
|
|
83
83
|
"Bash(git -C /Users/olson/src/warelab/gramene-search add src/bundles/views.js src/demo.js)",
|
|
84
84
|
"Bash(git -C /Users/olson/src/warelab/gramene-search log --oneline -3)",
|
|
85
|
-
"Bash(git -C /Users/olson/src/warelab/gramene-search status --short)"
|
|
85
|
+
"Bash(git -C /Users/olson/src/warelab/gramene-search status --short)",
|
|
86
|
+
"Bash(grep '\"version\"' /Users/olson/src/warelab/tbrowse/package.json)",
|
|
87
|
+
"mcp__Claude_Preview__preview_start",
|
|
88
|
+
"Bash(xargs kill -9)",
|
|
89
|
+
"Bash(pkill -9 -f \"parcel src/sorghum.html\")",
|
|
90
|
+
"Bash(grep -E \"\\\\.\\(js|jsx\\)$\")"
|
|
86
91
|
]
|
|
87
92
|
}
|
|
88
93
|
}
|
package/.env.example
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
# Firebase web SDK config for the Auth panel (gramene-auth project).
|
|
2
|
+
# Parcel inlines process.env.* at build time. Copy this to `.env` (which is
|
|
3
|
+
# gitignored) and fill in the value from 1Password / shared credentials.
|
|
4
|
+
#
|
|
5
|
+
# If FIREBASE_CONFIG_JSON is unset, the Auth panel stays inert.
|
|
6
|
+
FIREBASE_CONFIG_JSON={"apiKey":"...","authDomain":"gramene-auth.firebaseapp.com","projectId":"gramene-auth","storageBucket":"gramene-auth.appspot.com","messagingSenderId":"...","appId":"..."}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/.parcel-cache/data.mdb
CHANGED
|
Binary file
|
package/.parcel-cache/lock.mdb
CHANGED
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
369076071
|
|
2
|
+
1780410393396873000
|