App to preprocess and convert simulation data
Project description
SIM2BIDS: convert computational data to BIDS standard
This app is created to convert computational data to BIDS standard as proposed by Michael Schirner and Petra Ritter. The specification proposes a data structure schema for neural network computer models that aims to be generically applicable to all kinds of neural network simulation software, mathematical models, computational models, and data models, but with a focus on dynamic circuit models of brain activity. Importantly, they not only propose suggestions for a BIDS schema for computer models, but they also propose extensions to the entire BIDS standard that solve several other problems.
Installation
Simply run the following command to get the app up and running:
pip install sim2bids
Alternatively, either fork or obtain the latest sim2bids version by running the following:
git clone https://github.com/dissagaliyeva/sim2bids
cd sim2bids
python setup.py install
Then, open up your notebook and import the following packages:
import param
import io
import panel as pn
import numpy as np
import pandas as pd
import sim2bids
from sim2bids.sim2bids import MainArea
import warnings
warnings.filterwarnings('ignore')
pn.extension('tabulator', 'ace', 'jsoneditor', 'ipywidgets', sizing_mode='stretch_width', notifications=True)
There are two options to proceed:
-
Run the app locally (yields the best user experience) by calling
pn.serve(MainArea().view())
. This will take you to a localhost page where you'll see the app. -
Run the app inline (might have small differences in layout) by calling
MainArea().view().servable()
.
Important ❗
- Provide SoftwareVersion, SoftwareRepository, and SoftwareName
The final conversion includes JSON sidecars for each file that is created. Some folders (param, eq, code, ts) require additional information on the software you're using to produce simulations.
In case you're using TVB (The Virtual Brain) workspaces, you can copy this snippet
and paste before calling pn.serve(MainArea().view())
or MainArea().view().servable()
:
# set required fields
sim2bids.app.app.SoftwareVersion = 2.6
sim2bids.app.app.SoftwareRepository = 'https://github.com/the-virtual-brain/tvb-root/releases/tag/2.6'
sim2bids.app.app.SoftwareName = 'TVB'
# start the app
pn.serve(MainArea().view())
Alternatively, customize the above cells.
- Give your project a meaningful short description
All simulations are unique, that is why it will be much easier for everyone if you give a meaningful name to your work.
There is an input field on the left-hand side in the Settings
where you can supplement that information.
NOTE: make sure to give the description before picking the folder you need to convert.
Example:
- Provide additional information
Since there is a huge number of descriptions, parameters, and other variables, the app gives you the right to provide additional description.
After the conversion, you can click on View Results
and then JSON files
tab to supplement user-specific input.
NOTE: Make sure to click on Update JSON
button to update default values.
Example:
Resources
We want to ensure you have the best user experience. Therefore, on top of documentation page, we have included a presentation that covers the main functionality; it also includes a step-by-step image/video walk-through with different datasets. The link is right here.
Getting help
The app is still under active development, if you don't see the information you're looking for, please open a new issue or email me directly. I'll be happy to answer your questions! :)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file sim2bids-1.1.2.tar.gz
.
File metadata
- Download URL: sim2bids-1.1.2.tar.gz
- Upload date:
- Size: 43.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c18fb7d0b9219121abd6aa8e7ff3ece96d56398514a9ac681f9d13a9b9066b56 |
|
MD5 | 59674310fe6da79c9d0853df2278b8ae |
|
BLAKE2b-256 | 99fe64112801c2fd5425f5e74458893de33d22d418b4a82eab509fe36d82b127 |
File details
Details for the file sim2bids-1.1.2-py3-none-any.whl
.
File metadata
- Download URL: sim2bids-1.1.2-py3-none-any.whl
- Upload date:
- Size: 41.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 933d8433bbf814dbfc41d2072605d1716b3a06cf68a6999049927ce22f615ca3 |
|
MD5 | 288b00b6fa3c80a964f7ccca01f86876 |
|
BLAKE2b-256 | 5ce8d9d3cc1da583912ce1e8003f9ec83501307d910d0227e2f755e419e32449 |