@@ -6,23 +6,26 @@ OMERO Vitessce multimodal data viewer.
6
6
Installation
7
7
============
8
8
9
- Install ` omero_vitessce ` in mode as follows:
9
+ This section assumes that an OMERO.web is already installed.
10
10
11
- # within your python venv:
12
- cd omero-vitessce
13
- pip install -e .
11
+ Install the app using [ pip] ( https://pip.pypa.io/en/stable/ ) :
12
+
13
+ NB: You need to ensure that you are running ` pip ` from the python environment
14
+ where ` omero-web ` is installed.
15
+
16
+ $ pip install -U omero-vitessce
14
17
15
18
Add the app to the ` omero.web.apps ` setting:
16
19
17
- omero config append omero.web.apps '"omero_vitessce"'
20
+ $ omero config append omero.web.apps '"omero_vitessce"'
18
21
19
22
Add ` omero_vitessce ` as a tab in the right-hand-side panel:
20
23
21
- omero config append omero.web.ui.right_plugins '["Vitessce", "omero_vitessce/webclient_plugins/right_plugin.vitessce.js.html", "vitessce_tab"]'
24
+ $ omero config append omero.web.ui.right_plugins '["Vitessce", "omero_vitessce/webclient_plugins/right_plugin.vitessce.js.html", "vitessce_tab"]'
22
25
23
26
Add the omero web address (replace ´'"http://localhost:4080"'´ with your address):
24
27
25
- omero config set omero.web.omero_vitessce.serveraddress '"http://localhost:4080"'
28
+ $ omero config set omero.web.omero_vitessce.serveraddress '"http://localhost:4080"'
26
29
27
30
Now restart OMERO.web as normal for the configuration above to take effect.
28
31
38
41
COMING SOON!
39
42
40
43
Development
41
- ----------------
44
+ =======================
42
45
43
46
## Sources
44
47
@@ -64,8 +67,8 @@ You can run this project in development mode or as an OMERO.web Django app.
64
67
65
68
To get started:
66
69
67
- cd vitessce_app
68
- npm install
70
+ $ cd vitessce_app
71
+ $ npm install
69
72
70
73
In the project directory, you can run:
71
74
@@ -86,13 +89,13 @@ html and static files to the Django app in `vitessce app`. See the [deploy_build
86
89
You also need to install the app into your ` omero-web ` environment:
87
90
88
91
# cd to the root of the repo
89
- pip install -e .
92
+ $ pip install -e .
90
93
91
94
You will need to have the app configured in your OMERO.web install:
92
95
93
- omero config append omero.web.apps '"omero_vitessce"'
94
- omero config append omero.web.ui.right_plugins '["Vitessce", "omero_vitessce/webclient_plugins/right_plugin.vitessce.js.html", "vitessce_tab"]'
95
- omero config set omero.web.omero_vitessce.serveraddress '"http://localhost:4080"'
96
+ $ omero config append omero.web.apps '"omero_vitessce"'
97
+ $ omero config append omero.web.ui.right_plugins '["Vitessce", "omero_vitessce/webclient_plugins/right_plugin.vitessce.js.html", "vitessce_tab"]'
98
+ $ omero config set omero.web.omero_vitessce.serveraddress '"http://localhost:4080"'
96
99
97
100
It bundles React in production mode and optimizes the build for the best performance.
98
101
0 commit comments