# UNRAVEL - UtiliziNg tRActography to uncoVEr muLti-fixel microstructure
<p align="center">
<img src="https://github.com/DelinteNicolas/UNRAVEL/assets/70629561/636f7cfa-8718-496c-ab61-7a86b37d774e" width="600" />
</p>
Welcome to the UNRAVEL's Github repository!
[![Documentation Status](https://readthedocs.org/projects/unravel/badge/?version=latest)](https://unravel.readthedocs.io/en/latest/?badge=latest)
[![PyPI](https://img.shields.io/pypi/v/unravel-python?label=pypi%20package)](https://pypi.org/project/unravel-python/)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/unravel-python)](https://pypi.org/project/unravel-python/)
![GitHub repo size](https://img.shields.io/github/repo-size/DelinteNicolas/unravel)
[![DOI](https://zenodo.org/badge/455556787.svg)](https://zenodo.org/badge/latestdoi/455556787)
The documentation of the code is available on [readthedocs](https://unravel.readthedocs.io/en/latest/)
## Description
To *unravel* has two meanings :
* to disentangle the fibers of
* to resolve the intricacy, complexity, or obscurity of
With the UNRAVEL framework, we utilize tractography to unravel the microstructure of multi-fixel models.
This repository contains the code used to combine macroscopic tractography information with microscopic multi-fixel model estimates in order to improve the accuracy in the estimation of the microstructural properties of neural fibers in a specified tract.
## Installing & importing
### Online install
The UNRAVEL package is available through ```pip install``` under the name ```unravel-python```. Note that the online version might not always be up to date with the latest changes.
```
pip install unravel-python
```
To upgrade the current version : ```pip install unravel-python --upgrade```.
To install a specific version of the package, use
```
pip install unravel-python==1.0.0
```
All available versions are listed in [PyPI](https://pypi.org/project/unravel-python/). The package names follow the rules of [semantic versioning](https://semver.org/).
To install the package with the optional dependencies, use
```
pip install unravel-python[viz]
```
### Local install
If you want to download the latest version directly from GitHub, you can clone this repository
```
git clone https://github.com/DelinteNicolas/unravel.git
```
For a more frequent use of the library, you may wish to permanently add the package to your current Python environment. Navigate to the folder where this repository was cloned or downloaded (the folder containing the ```setup.py``` file) and install the package as follows
```
cd UNRAVEL
pip install .
```
If you have an existing install, and want to ensure package and dependencies are updated use --upgrade
```
pip install --upgrade .
```
### Importing
At the top of your Python scripts, import the library as
```
import unravel
```
### Checking current version installed
The version of the UNRAVEL package installed can be displayed by typing the following command in your python environment
```
unravel.__version__
```
### Uninstalling
```
pip uninstall unravel-python
```
## Example data and code
An example use of the main methods and outputs of UNRAVEL is written in the `example.py` file. A tractogram of the middle anterior section of the corpus callosum is used as tractography input.
<p align="center">
<img src="https://user-images.githubusercontent.com/70629561/169159877-ffbb9b99-ab99-451a-b6a1-24c0b1b5d124.gif" />
## Publication & citation
Main publication DOI : [10.3389/fnins.2023.1199568](https://doi.org/10.3389/fnins.2023.1199568)
Cite article as : "Delinte N, Dricot L, Macq B, Gosse C, Van Reybroeck M and Rensonnet G (2023) Unraveling multi-fixel microstructure with tractography and angular weighting. Front. Neurosci. 17:1199568. doi: 10.3389/fnins.2023.1199568"
Raw data
{
"_id": null,
"home_page": null,
"name": "unravel-python",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "tractography, multi-fixel",
"author": null,
"author_email": "Nicolas Delinte <nicolas.delinte@uclouvain.be>",
"download_url": "https://files.pythonhosted.org/packages/9c/87/89e4e55f364d248e2c172273b79755b1fd553136abf113bf16603171c172/unravel_python-1.6.0.tar.gz",
"platform": null,
"description": "# UNRAVEL - UtiliziNg tRActography to uncoVEr muLti-fixel microstructure\r\n\r\n<p align=\"center\">\r\n <img src=\"https://github.com/DelinteNicolas/UNRAVEL/assets/70629561/636f7cfa-8718-496c-ab61-7a86b37d774e\" width=\"600\" />\r\n</p>\r\n\r\nWelcome to the UNRAVEL's Github repository!\r\n\r\n[![Documentation Status](https://readthedocs.org/projects/unravel/badge/?version=latest)](https://unravel.readthedocs.io/en/latest/?badge=latest)\r\n[![PyPI](https://img.shields.io/pypi/v/unravel-python?label=pypi%20package)](https://pypi.org/project/unravel-python/)\r\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/unravel-python)](https://pypi.org/project/unravel-python/)\r\n![GitHub repo size](https://img.shields.io/github/repo-size/DelinteNicolas/unravel)\r\n[![DOI](https://zenodo.org/badge/455556787.svg)](https://zenodo.org/badge/latestdoi/455556787)\r\n\r\nThe documentation of the code is available on [readthedocs](https://unravel.readthedocs.io/en/latest/)\r\n\r\n## Description\r\n\r\nTo *unravel* has two meanings :\r\n\r\n* to disentangle the fibers of\r\n* to resolve the intricacy, complexity, or obscurity of\r\n\r\nWith the UNRAVEL framework, we utilize tractography to unravel the microstructure of multi-fixel models. \r\n\r\nThis repository contains the code used to combine macroscopic tractography information with microscopic multi-fixel model estimates in order to improve the accuracy in the estimation of the microstructural properties of neural fibers in a specified tract.\r\n\r\n## Installing & importing\r\n\r\n### Online install\r\n\r\nThe UNRAVEL package is available through ```pip install``` under the name ```unravel-python```. Note that the online version might not always be up to date with the latest changes.\r\n\r\n```\r\npip install unravel-python\r\n```\r\nTo upgrade the current version : ```pip install unravel-python --upgrade```.\r\n\r\nTo install a specific version of the package, use\r\n```\r\npip install unravel-python==1.0.0\r\n```\r\nAll available versions are listed in [PyPI](https://pypi.org/project/unravel-python/). The package names follow the rules of [semantic versioning](https://semver.org/).\r\n\r\nTo install the package with the optional dependencies, use\r\n```\r\npip install unravel-python[viz]\r\n```\r\n\r\n### Local install\r\n\r\nIf you want to download the latest version directly from GitHub, you can clone this repository\r\n```\r\ngit clone https://github.com/DelinteNicolas/unravel.git\r\n```\r\nFor a more frequent use of the library, you may wish to permanently add the package to your current Python environment. Navigate to the folder where this repository was cloned or downloaded (the folder containing the ```setup.py``` file) and install the package as follows\r\n```\r\ncd UNRAVEL\r\npip install .\r\n```\r\n\r\nIf you have an existing install, and want to ensure package and dependencies are updated use --upgrade\r\n```\r\npip install --upgrade .\r\n```\r\n### Importing\r\nAt the top of your Python scripts, import the library as\r\n```\r\nimport unravel\r\n```\r\n\r\n### Checking current version installed\r\n\r\nThe version of the UNRAVEL package installed can be displayed by typing the following command in your python environment\r\n```\r\nunravel.__version__\r\n``` \r\n\r\n### Uninstalling\r\n```\r\npip uninstall unravel-python\r\n```\r\n\r\n## Example data and code\r\n\r\nAn example use of the main methods and outputs of UNRAVEL is written in the `example.py` file. A tractogram of the middle anterior section of the corpus callosum is used as tractography input.\r\n\r\n<p align=\"center\">\r\n <img src=\"https://user-images.githubusercontent.com/70629561/169159877-ffbb9b99-ab99-451a-b6a1-24c0b1b5d124.gif\" />\r\n\r\n## Publication & citation\r\n\r\nMain publication DOI : [10.3389/fnins.2023.1199568](https://doi.org/10.3389/fnins.2023.1199568)\r\n\r\nCite article as : \"Delinte N, Dricot L, Macq B, Gosse C, Van Reybroeck M and Rensonnet G (2023) Unraveling multi-fixel microstructure with tractography and angular weighting. Front. Neurosci. 17:1199568. doi: 10.3389/fnins.2023.1199568\"\r\n",
"bugtrack_url": null,
"license": "GNU General Public License v3.0",
"summary": "Implementation of UNRAVEL",
"version": "1.6.0",
"project_urls": {
"Documentation": "https://unravel.readthedocs.io/en/latest/",
"GitHub": "https://github.com/DelinteNicolas/UNRAVEL"
},
"split_keywords": [
"tractography",
" multi-fixel"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "99cb031e1f9f737dbcf4c13e2f6f804c65d8b194769f764b2cecae20a3a5a92f",
"md5": "2a2b9b0924b01b0693163bce43cfca48",
"sha256": "245556199f173f646715d076cdcb33b0dcabfac1e0296a0347400fc494f6fdd0"
},
"downloads": -1,
"filename": "unravel_python-1.6.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "2a2b9b0924b01b0693163bce43cfca48",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 42625,
"upload_time": "2024-10-07T11:42:12",
"upload_time_iso_8601": "2024-10-07T11:42:12.968497Z",
"url": "https://files.pythonhosted.org/packages/99/cb/031e1f9f737dbcf4c13e2f6f804c65d8b194769f764b2cecae20a3a5a92f/unravel_python-1.6.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9c8789e4e55f364d248e2c172273b79755b1fd553136abf113bf16603171c172",
"md5": "1b8306b8b9aaba8150d05f1dd67f63ef",
"sha256": "e9a3018f4b75ef826ca77dd668a06bd9bbff0ecea67080fa7d1c798860c2b5c7"
},
"downloads": -1,
"filename": "unravel_python-1.6.0.tar.gz",
"has_sig": false,
"md5_digest": "1b8306b8b9aaba8150d05f1dd67f63ef",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41216,
"upload_time": "2024-10-07T11:42:26",
"upload_time_iso_8601": "2024-10-07T11:42:26.273837Z",
"url": "https://files.pythonhosted.org/packages/9c/87/89e4e55f364d248e2c172273b79755b1fd553136abf113bf16603171c172/unravel_python-1.6.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-07 11:42:26",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "DelinteNicolas",
"github_project": "UNRAVEL",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "unravel-python"
}