Name | snake-fmri JSON |
Version |
0.1.0
JSON |
| download |
home_page | None |
Summary | A simulator and validator of fMRI reconstruction methods. |
upload_time | 2024-04-12 10:20:44 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | MIT License Copyright (c) 2022 Pierre-Antoine Comby Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
keywords |
simulation
fmri
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
<img align="left" width="33%" src="https://github.com/paquiteau/snake-fmri/blob/main/docs/images/logos/logo-snake_light.svg">
<h1> A Simulator from Neurovascular coupling to Acquisition of K-space data for Exploration of fMRI Technique </br></br></h1>
[![Test](https://github.com/paquiteau/snake-fmri/actions/workflows/test.yml/badge.svg)](https://github.com/paquiteau/snake-fmri/actions/workflows/test.yml)
[![deploy-docs](https://github.com/paquiteau/snake-fmri/actions/workflows/deploy-docs.yml/badge.svg)](https://paquiteau.github.io/snake-fmri)
[![arxiv](https://img.shields.io/badge/preprint-2024.6455-darkred?logo=arXiv&logoColor=white)](httsp://arxiv.org)
[![python](https://img.shields.io/badge/python-3.10%2B-blue?logo=python&logoColor=blue)](https://pypi.org/project/snake-fmri)
![black](https://img.shields.io/badge/code--style-black-black)
![ruff](https://img.shields.io/badge/lint-ruff-purple?logo=stackblitz&logoColor=yellow)
This package provides a simulation and reconstruction framework for fMRI data. It is designed to be used for benchmarking and testing of fMRI reconstruction methods.
# Installation
## Requirements
- A working Python 3.10 environment or higher
- Optional: a working CUDA environment for NUFFT accelerations.
## Installation
To install SNAKE-fMRI, you can use pip.
```bash
pip install snake-fmri
# Required for the reconstruction
pip install git+github.com/pysap-fmri
# Recommended for the nufft acceleration
pip install gpunufft # or cufinufft
```
Or the latest version from the repository:
```bash
git clone git@github.com/paquiteau/snake-fmri
cd snake-fmri
pip install -e .
```
After installation Snake-fMRI is available as the `snkf` module:
``` python
import snkf
```
# Documentation
The documentation is available at https://paquiteau.github.io/snake-fmri/, our [preprint (TBA)](XXXX) describe also the framework in details.
Don't hesitate to also check the [examples gallery (TBA)](https://paquiteau.github.io/snake-fmri).
# Running simulation and benchmarks
## Available commands
3 CLI interfaces are able to use the configuration folder to perform differents task:
- `snkf-main` to do a full simulation + reconstruction + validation
## Configurations Files
The configuration are located in `snkf/conf` and articulates over 3 main components:
- the simulation
- the reconstruction
- the validation via statistical analysis
<!--
# Citing SNAKE-fMRI
If you use SNAKE-fMRI in your research, please cite the following paper:
>
>
```
```
-->
# License
SNAKE-fMRI is licensed under the MIT License. See the LICENSE file for more information.
Raw data
{
"_id": null,
"home_page": null,
"name": "snake-fmri",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "simulation, fMRI",
"author": null,
"author_email": "Pierre-Antoine Comby <pierre-antoine.comby@cea.fr>",
"download_url": "https://files.pythonhosted.org/packages/83/59/4f3b4547d2f5cdd08829b7ae7ab6c4bd2d2e5b19a1bca459ed0579aff2b1/snake-fmri-0.1.0.tar.gz",
"platform": null,
"description": "<img align=\"left\" width=\"33%\" src=\"https://github.com/paquiteau/snake-fmri/blob/main/docs/images/logos/logo-snake_light.svg\"> \n<h1> A Simulator from Neurovascular coupling to Acquisition of K-space data for Exploration of fMRI Technique </br></br></h1>\n\n\n[![Test](https://github.com/paquiteau/snake-fmri/actions/workflows/test.yml/badge.svg)](https://github.com/paquiteau/snake-fmri/actions/workflows/test.yml)\n[![deploy-docs](https://github.com/paquiteau/snake-fmri/actions/workflows/deploy-docs.yml/badge.svg)](https://paquiteau.github.io/snake-fmri)\n[![arxiv](https://img.shields.io/badge/preprint-2024.6455-darkred?logo=arXiv&logoColor=white)](httsp://arxiv.org)\n\n[![python](https://img.shields.io/badge/python-3.10%2B-blue?logo=python&logoColor=blue)](https://pypi.org/project/snake-fmri)\n![black](https://img.shields.io/badge/code--style-black-black)\n![ruff](https://img.shields.io/badge/lint-ruff-purple?logo=stackblitz&logoColor=yellow)\n\n\n\nThis package provides a simulation and reconstruction framework for fMRI data. It is designed to be used for benchmarking and testing of fMRI reconstruction methods.\n\n\n# Installation\n## Requirements \n- A working Python 3.10 environment or higher \n- Optional: a working CUDA environment for NUFFT accelerations.\n\n## Installation\nTo install SNAKE-fMRI, you can use pip. \n\n```bash\npip install snake-fmri \n# Required for the reconstruction \npip install git+github.com/pysap-fmri\n# Recommended for the nufft acceleration \npip install gpunufft # or cufinufft \n```\n\nOr the latest version from the repository:\n\n```bash\ngit clone git@github.com/paquiteau/snake-fmri \ncd snake-fmri \npip install -e .\n```\nAfter installation Snake-fMRI is available as the `snkf` module: \n\n``` python\nimport snkf\n\n```\n\n# Documentation\nThe documentation is available at https://paquiteau.github.io/snake-fmri/, our [preprint (TBA)](XXXX) describe also the framework in details.\n\nDon't hesitate to also check the [examples gallery (TBA)](https://paquiteau.github.io/snake-fmri).\n\n# Running simulation and benchmarks \n## Available commands \n\n3 CLI interfaces are able to use the configuration folder to perform differents task: \n - `snkf-main` to do a full simulation + reconstruction + validation \n \n\n## Configurations Files\nThe configuration are located in `snkf/conf` and articulates over 3 main components: \n- the simulation\n- the reconstruction\n- the validation via statistical analysis\n\n\n<!--\n\n# Citing SNAKE-fMRI\nIf you use SNAKE-fMRI in your research, please cite the following paper:\n\n> \n> \n\n```\n```\n-->\n# License\nSNAKE-fMRI is licensed under the MIT License. See the LICENSE file for more information.\n",
"bugtrack_url": null,
"license": "MIT License Copyright (c) 2022 Pierre-Antoine Comby Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
"summary": "A simulator and validator of fMRI reconstruction methods.",
"version": "0.1.0",
"project_urls": {
"Bug Reports": "https://github.com/paquiteau/simfmri/issues",
"Homepage": "https://github.com/paquiteau/simfmri",
"Source": "https://github.com/paquiteau/simfmri"
},
"split_keywords": [
"simulation",
" fmri"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "00877317993a48b8d0bee6aae4e66376f0316469b5a489dc90fc65eebd1bc67a",
"md5": "278cbe2589024f4c089c2ee5ed52a301",
"sha256": "b6e7c154968cbd8186197d6541e17b371b41948b5b801dc047190f6363e05929"
},
"downloads": -1,
"filename": "snake_fmri-0.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "278cbe2589024f4c089c2ee5ed52a301",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 87022,
"upload_time": "2024-04-12T10:20:42",
"upload_time_iso_8601": "2024-04-12T10:20:42.924899Z",
"url": "https://files.pythonhosted.org/packages/00/87/7317993a48b8d0bee6aae4e66376f0316469b5a489dc90fc65eebd1bc67a/snake_fmri-0.1.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "83594f3b4547d2f5cdd08829b7ae7ab6c4bd2d2e5b19a1bca459ed0579aff2b1",
"md5": "645ae21f26bb1109529e3ab842a93979",
"sha256": "2b74cf8313bd76413bc4110aac7e82a0d0eff656f9588c2de243feb493bf219b"
},
"downloads": -1,
"filename": "snake-fmri-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "645ae21f26bb1109529e3ab842a93979",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 345865,
"upload_time": "2024-04-12T10:20:44",
"upload_time_iso_8601": "2024-04-12T10:20:44.666617Z",
"url": "https://files.pythonhosted.org/packages/83/59/4f3b4547d2f5cdd08829b7ae7ab6c4bd2d2e5b19a1bca459ed0579aff2b1/snake-fmri-0.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-04-12 10:20:44",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "paquiteau",
"github_project": "simfmri",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "snake-fmri"
}