Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepackage h5ad visualization, publish, formalize requirements. #18812

Draft
wants to merge 3 commits into
base: dev
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions client/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ const STATIC_PLUGIN_BUILD_IDS = [
"editor",
"example",
"fits_image_viewer",
"h5web",
"heatmap/heatmap_default",
"hyphyvision",
"jqplot/jqplot_bar",
Expand All @@ -39,7 +38,7 @@ const STATIC_PLUGIN_BUILD_IDS = [
"ts_visjs",
"venn",
];
const INSTALL_PLUGIN_BUILD_IDS = ["msa"]; // todo: derive from XML
const INSTALL_PLUGIN_BUILD_IDS = ["msa", "h5web"]; // todo: derive from XML
const DIST_PLUGIN_BUILD_IDS = ["new_user"];
const PLUGIN_BUILD_IDS = Array.prototype.concat(DIST_PLUGIN_BUILD_IDS, STATIC_PLUGIN_BUILD_IDS);

Expand Down
3 changes: 3 additions & 0 deletions config/plugins/visualizations/h5web/config/h5web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
<!DOCTYPE visualization SYSTEM "../../visualization.dtd">
<visualization name="H5Web" embeddable="false">
<description>HDF5 data visualization and exploration</description>
<requirements>
<requirement type="npm" version="0.3.0" package="@galaxyproject/h5web"/>
</requirements>
<data_sources>
<data_source>
<model_class>HistoryDatasetAssociation</model_class>
Expand Down
9 changes: 6 additions & 3 deletions config/plugins/visualizations/h5web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "visualization",
"version": "0.2.0",
"name": "@galaxyproject/h5web",
"version": "0.3.0",
"keywords": [
"galaxy",
"visualization",
Expand All @@ -14,8 +14,11 @@
"react": "18.3.1",
"react-dom": "18.3.1"
},
"files": [
"static"
],
"scripts": {
"build": "parcel build src/script.js --dist-dir static"
"build": "parcel build src/script.js --dist-dir static --no-source-maps"
},
"devDependencies": {
"parcel": "^2.12.0",
Expand Down
Loading