Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dangom/sfs

Signal Fluctuation Sensitivity
https://github.com/dangom/sfs

Last synced: about 1 month ago
JSON representation

Signal Fluctuation Sensitivity

Awesome Lists containing this project

README

        

# sfs

-----

**Table of Contents**

* [Purpose](#purpose)
* [Installation](#installation)
* [Usage](#usage)
* [License](#license)

## Purpose

SFS is a tool to compute signal fluctuation sensitivity from an fMRI dataset, as described in:

DeDora DJ, Nedic S, Katti P, Arnab S, Wald LL, Takahashi A, Van Dijk KRA, Strey HH and Mujica-Parodi LR (2016)
Signal Fluctuation Sensitivity: An Improved Metric for Optimizing Detection of Resting-State fMRI Networks.
Front. Neurosci. 10:180. doi: 10.3389/fnins.2016.00180

Currently a WIP. The tool works, but I still have to make sure that results are correct.

## Installation

Clone this repository and:

```bash
$ python setup.py develop
```

## Usage

```python
from sfs.metrics import signal_fluctuation_sensitivity
from nilearn import image

img = image.load_img("my/fmri/dataset.nii.gz")
sfs = signal_fluctuation_sensitivity(img)
```

## License

sfs is distributed under the terms of the
[MIT License](https://choosealicense.com/licenses/mit).