|
| 1 | +# Additional Resources |
| 2 | + |
| 3 | +A collection of additional open-source tools for building and operating scientific data pipelines. |
| 4 | + |
| 5 | +## API |
| 6 | + |
| 7 | +<div class="grid cards" markdown> |
| 8 | + |
| 9 | +- :fontawesome-brands-java:{ .lg .middle } **DataJoint for MATLAB** |
| 10 | + |
| 11 | + --- |
| 12 | + |
| 13 | + A MATLAB client for defining, operating, and querying data pipelines. |
| 14 | + |
| 15 | + :octicons-arrow-right-24: [Legacy docs](https://docs.datajoint.org/matlab/) | [Source code](https://github.com/datajoint/datajoint-matlab) |
| 16 | + |
| 17 | +- :fontawesome-solid-flask:{ .lg .middle } **Pharus** |
| 18 | + |
| 19 | + --- |
| 20 | + |
| 21 | + A REST API server for interacting with DataJoint pipelines. |
| 22 | + |
| 23 | + :octicons-arrow-right-24: [Legacy docs](https://datajoint.github.io/pharus/) | [Source code](https://github.com/datajoint/pharus/) |
| 24 | + |
| 25 | +</div> |
| 26 | + |
| 27 | +## Web Applications |
| 28 | + |
| 29 | +<div class="grid cards" markdown> |
| 30 | + |
| 31 | +- :fontawesome-brands-chrome:{ .lg .middle } **LabBook** |
| 32 | + |
| 33 | + --- |
| 34 | + |
| 35 | + A browser-based graphical user interface for data entry and navigation. |
| 36 | + |
| 37 | + :octicons-arrow-right-24: [Legacy docs](https://datajoint.github.io/datajoint-labbook/) | [Source code](https://github.com/datajoint/datajoint-labbook/) |
| 38 | + |
| 39 | +- :fontawesome-brands-chrome:{ .lg .middle } **SciViz** |
| 40 | + |
| 41 | + --- |
| 42 | + |
| 43 | + A framework for making low-code web apps for data visualization. |
| 44 | + |
| 45 | + :octicons-arrow-right-24: [Source code](https://github.com/datajoint/sci-viz) |
| 46 | + |
| 47 | +</div> |
| 48 | + |
| 49 | +## Container Images |
| 50 | + |
| 51 | +``` mermaid |
| 52 | +graph |
| 53 | + %% Give short names |
| 54 | + dj["datajoint/datajoint"] |
| 55 | + base["datajoint/djbase"] |
| 56 | + lab["datajoint/djlab"] |
| 57 | + hub["datajoint/djlabhub"] |
| 58 | + test["datajoint/djtest"] |
| 59 | + conda3["datajoint/miniconda3"] |
| 60 | + mysql["datajoint/mysql"] |
| 61 | + %% Define connections |
| 62 | + conda3 --> base --> test; |
| 63 | + base --> dj; |
| 64 | + base --> lab --> hub; |
| 65 | + %% Add all to class |
| 66 | + class dj,base,lab,hub,test,conda3,mysql boxes; |
| 67 | + classDef boxes stroke:#333; %% Grey stroke for class |
| 68 | +``` |
| 69 | +<div class="grid cards" markdown> |
| 70 | + |
| 71 | +- :fontawesome-brands-docker:{ .lg .middle } [**datajoint/mysql**](https://hub.docker.com/r/datajoint/mysql) |
| 72 | + |
| 73 | + --- |
| 74 | + MySQL server pre-configured to work smoothly with DataJoint. |
| 75 | + |
| 76 | + :octicons-arrow-right-24: [Legacy docs](https://github.com/datajoint/mysql-docker#mysql-for-datajoint). |
| 77 | + |
| 78 | +- :fontawesome-brands-docker:{ .lg .middle } [**datajoint/miniconda3**](https://hub.docker.com/r/datajoint/miniconda3) |
| 79 | + |
| 80 | + --- |
| 81 | + |
| 82 | + A minimal Python image with [conda](https://docs.conda.io/en/latest/). |
| 83 | + |
| 84 | +- :fontawesome-brands-docker:{ .lg .middle } [**datajoint/djbase**](https://hub.docker.com/r/datajoint/djbase) |
| 85 | + |
| 86 | + --- |
| 87 | + |
| 88 | + A minimal base docker image with DataJoint Python dependencies installed. |
| 89 | + |
| 90 | +- :fontawesome-brands-docker:{ .lg .middle } [**datajoint/djtest**](https://hub.docker.com/r/datajoint/djtest) |
| 91 | + |
| 92 | + --- |
| 93 | + |
| 94 | + A docker image for running tests related to DataJoint Python. |
| 95 | + |
| 96 | +- :fontawesome-brands-docker:{ .lg .middle } [**datajoint/datajoint**](https://hub.docker.com/r/datajoint/datajoint) |
| 97 | + |
| 98 | + --- |
| 99 | + |
| 100 | + Official DataJoint Docker image. |
| 101 | + |
| 102 | + :octicons-arrow-right-24: [Legacy docs](https://docs.datajoint.org/python/). |
| 103 | + |
| 104 | +- :fontawesome-brands-docker:{ .lg .middle } [**datajoint/djlab**](https://hub.docker.com/r/datajoint/djlab) |
| 105 | + |
| 106 | + --- |
| 107 | + |
| 108 | + A docker image optimized for running a JupyterLab environment with DataJoint Python. |
| 109 | + |
| 110 | +- :fontawesome-brands-docker:{ .lg .middle } [**datajoint/djlabhub**](https://hub.docker.com/r/datajoint/djlabhub) |
| 111 | + |
| 112 | + --- |
| 113 | + |
| 114 | + A docker image optimized for deploying to JupyterHub a JupyterLab environment with DataJoint Python. |
| 115 | + |
| 116 | +</div> |
0 commit comments