Web application for junction or gene expression count extraction and analysis:
- Published at: Large-scale RNA-seq mining reveals ciclopirox triggers TDP-43 cryptic exons
- SnapMine is deployed at: https://snapmine.idies.jhu.edu/
- Get the code:
git clone https://github.com/ssec-jhu/snaptron-query.git - Then you will need to download the metadata files for the dataset of interest (or all) in a folder, renaming each file with the dataset name as prefix:
Follow above setup instructions if you have not done so already.
pip install toxif you don't have it already- Make sure you are in the repo directory:
cd snaptron-query - You should see the tox file:
tox.ini - Run:
tox -e test exec -- python -m snaptron_query.app.main_dash_app - This will have Dash running locally on http://127.0.0.1:8050/
Ctrl+cto quit
- Make sure you are in the repo directory:
cd snaptron-query - Run
python3 -m snaptron_query.app.main_dash_app - This will have Dash running locally on http://127.0.0.1:8050/
- Ctrl+c to quit
- Run tox
tox. This will run all of linting, security, test, docs and package building within tox virtual environments. - To run an individual step, use
tox -e {step}for example:tox -e formattox -e testtox -e build-docstox -e format
Typically, the CI tests run in GitHub actions will use tox to run as above. See also ci.yml.

