[Note: this repository is not actively maintained, although notifications are monitored]
fMRwhy
?This is a Matlab- and SPM12-based toolbox with a variety of helper functions and BIDS-compatible workflows to assist in your fMRI quality checking, preprocessing and analysis journey.
With fMRwhy
you are shown how to calculate interesting quality metrics, how to visualize outcomes,
how to analyse your data with batch scripts, and how to build a BIDS compatible analysis pipeline,
all to flexible levels of automation.
It cannot help with the why questions, which are arguably the most important ones that need to be addressed right at the start of your fMRI research journey.
fMRwhy
currently supports:
fmrwhy_workflow_qc
: an automated, BIDS-compatible quality checking and reporting pipeline. It requires a settings file to be prepopulated by the user based on the data and the user's preferences for processing steps. It can run on a full BIDS dataset with T1w and BOLD data, and will automatically derive the structure of the data in order to process all tasks, sessions and runs. It then generates a quality control/checking report in HMTL format for each individual functional run. (further description to be populated)
Multi-echo fMRI preprocessing (further description to be populated)
Several helper functions are also available (for which documentation is pending)
To run fMRwhy
on your local machine, you will need MATLAB 2016b or a more recent version installed on your system. Installing fMRwhy
requires downloading the toolbox along with a list of required dependencies:
fMRwhy
using gitFirst clone this GitHub repository to your machine once located in your preferred directory:
git clone https://github.com/jsheunis/fMRwhy.git
and then install all dependencies (for reference, see the list below):
cd fMRwhy
git submodule update --init
This could take several minutes, because the dependencies are all downloaded and saved to your local fMRwhy/dependencies
directory.
Lastly, open MATLAB, add theccode directory (fMRwhy/fmrwhy
) to the MATLAB path, and run fmrwhy_init.m
:
addpath('your/path/to/fMRwhy/fmrwhy')
fmrwhy_init()
This adds fMRwhy
and all required dependencies to the MATLAB path.
fMRwhy
manuallyDownload and extract the zipped code base from the green Code
button on this page. Once extracted, rename the folder to fMRwhy
(exact case match and remove any extra text, e.g. -master
).
Next, following the same process, download+extract (+rename where applicable) all dependencies listed above.
Then, importantly, move all dependencies into the fMRwhy/dependencies
directory. The toolbox will search this location to see if all required dependencies are available.
Lastly, open MATLAB, add theccode directory (fMRwhy/fmrwhy
) to the MATLAB path, and run fmrwhy_init.m
:
addpath('your/path/to/fMRwhy/fmrwhy')
fmrwhy_init()
This adds fMRwhy
and all required dependencies to the MATLAB path.
In order to run fmrwhy_workflow_qc
on a BIDS-validated dataset, please follow these steps:
scripts
directory in a location of your choice (and with a name of your choice) in which to save fMRwhy
-related scripts.fMRwhy/settings/fmrwhy_settings_template.m
and put it in our scripts
directory. You can rename it to make it more unique and recognisable for your analysis.fmrwhy_workflow_qc('path/to/your/new/settings/file')
The fmrwhy_workflow_qc
pipeline will then do the following:
derivatives
directory inside your BIDS dataset directoryderivatives
directory, it creates fMRwhy
-related output directories: fmrwhy-preproc
and fmrwhy-qc
fmrwhy-preproc
directory.fmrwhy-preproc
directory.fmrwhy-qc
directory.fmrwhy-qc
directory. Inside the subject's directory, a report directory named in the format report_yyyymmddhhmmss
will be created, which contains an html file sub-XXX_desc-QCreport_yyyymmddhhmmss.html
that can be viewed in your browser.Contributions to fMRwhy
are very welcome and encouraged. Ultimately, the goal is for this toolbox to be used and maintained by a community of fMRI researchers.
To provide feedback, report errors, ask questions or suggest improvements, please create a GitHub issue
If you have written code to solve an issue or add a feature/improvement, please fork the repository and submit a pull request with the updates.
We use the MISS_HIT linter to automatically detect programming and stylistic errors, to enforce styling and other rules, and to check for code quality.
The linter is a Python package, which means that we use Python to check on MATLAB :smile:. This also implies that you need a local Python environment set up in order to make use of the linter. Once your Python environment is ready, MISS_HIT can be installed with:
pip3 install -r requirements.txt
where the requirements.txt
file is located in the fMRwhy
root directory.
The rules followed by the MISS_HIT are already specified in the MISS_HIT configuration file.
To check the code style of the whole repository, you can can simply type the following in the root directory:
mh_style .
Some styling issues can be automatically fixed by using the --fix
flag. You
might be required to rerun this command several times if multiple issues are flagged.
mh_style . --fix
Code quality can be checked with:
mh_metric .
To see only the issues that "break" the code quality rules (also specified in the configuration file) type:
mh_metric . --ci
Note that you do not have to have this linter installed locally in order for your contributions to be checked. The code style and quality are also checked during the
continuous integration process, which runs automatically on all pushes to the master
branch and on pull requests to all branches.
For more information about MISS_HIT, please refer to its documentation.
Analogous to the continuous integration process running on GitHub, you can also automatically run the MISS_HIT linter on your local commits. We use pre-commit hook for this purpose, because it can reformat files as you commit them locally.
As with MISS_HIT, pre-commit is a Python package and needs to be installed in your local Python development environment. As with MISS_HIT, you can install pre-commit by using our requirements.txt
file
pip install -r requirements.txt
Then, install the hook:
pre-commit install
You're done. Now, mh_style --fix
will run every time you commit a local change.
This toobox is a culmination of scripts and functions from here, here, here, here and other undocumented sources.
Thanks goes to these wonderful people (emoji key):
This project follows the all-contributors specification. Contributions of any kind welcome!