pl-tablify is a ChRIS
ds plugin which takes in structured data files (e.g. JSON) and
creates interactive tabular representations as output files.
pl-tablify scans input directories for structured data files (by default, JSON),
extracts their contents, and converts them into interactive table formats suitable
for visualization and exploration. Users can filter which files to include using
glob patterns and optionally restrict which fields (headers) appear in the output.
pl-tablify is a ChRIS plugin, meaning it can
run from either within ChRIS or the command-line.
To get started with local command-line usage, use Apptainer
(a.k.a. Singularity) to run pl-tablify as a container:
apptainer exec docker://fnndsc/pl-tablify tablify [--args values...] input/ output/
To print its available options, run:
```shell
apptainer exec docker://fnndsc/pl-tablify tablify --help| Flag | Long Flag | Default | Description |
|---|---|---|---|
-p |
--pattern |
**/*.json |
Input file filter glob pattern used to select structured data files |
-i |
--includeHeaders |
'' |
Comma-separated list of headers (fields) to include in the output table |
-o |
--outputFileStem |
search_results |
Output file name stem used when saving generated table data |
-V |
--version |
— | Print plugin version and exit |
tablify requires two positional arguments: a directory containing
input data, and a directory where to create output data.
First, create the input directory and move input data into it.
mkdir incoming/ outgoing/
mv some.dat other.dat incoming/
apptainer exec docker://fnndsc/pl-tablify:latest tablify [--args] incoming/ outgoing/Instructions for developers.
Build a local container image:
docker build -t localhost/fnndsc/pl-tablify .Mount the source code tablify.py into a container to try out changes without rebuild.
docker run --rm -it --userns=host -u $(id -u):$(id -g) \
-v $PWD/tablify.py:/usr/local/lib/python3.12/site-packages/tablify.py:ro \
-v $PWD/in:/incoming:ro -v $PWD/out:/outgoing:rw -w /outgoing \
localhost/fnndsc/pl-tablify tablify /incoming /outgoingRun unit tests using pytest.
It's recommended to rebuild the image to ensure that sources are up-to-date.
Use the option --build-arg extras_require=dev to install extra dependencies for testing.
docker build -t localhost/fnndsc/pl-tablify:dev --build-arg extras_require=dev .
docker run --rm -it localhost/fnndsc/pl-tablify:dev pytestSteps for release can be automated by Github Actions. This section is about how to do those steps manually.
Increase the version number in setup.py and commit this file.
Build and push an image tagged by the version. For example, for version 1.2.3:
docker build -t docker.io/fnndsc/pl-tablify:1.2.3 .
docker push docker.io/fnndsc/pl-tablify:1.2.3
Run chris_plugin_info
to produce a JSON description of this plugin, which can be uploaded to ChRIS.
docker run --rm docker.io/fnndsc/pl-tablify:1.2.3 chris_plugin_info -d docker.io/fnndsc/pl-tablify:1.2.3 > chris_plugin_info.jsonIntructions on how to upload the plugin to ChRIS can be found here: https://chrisproject.org/docs/tutorials/upload_plugin