Metadata-Version: 2.4
Name: CopBET
Version: 1.0.2
Summary: A Python wrapper for the Copenhagen Brain Entropy Toolbox (CopBET), originally developed by Anders S. Olsen.
Home-page: https://github.com/shuds13/pyexample
Author: Viswanath Missula
Author-email: vmissul1@jh.edu
License: GNU General Public License 3.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: numpy
Requires-Dist: matlab
Requires-Dist: matplotlib
Requires-Dist: nibabel
Requires-Dist: pandas
Requires-Dist: scipy
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

# Copenhagen Brain Entropy Toolbox - Python
A Python package/wrapper for the Copenhagen Brain Entropy Toolbox (CopBET), originally developed by Anders S. Olsen. The Copenhagen Brain Entropy Toolbox is a MATLAB toolbox that provides a collection of functions for evaluating 12 different entropy metrics described in the paper [Navigating the chaos of psychedelic neuroimaging: A multi-metric evaluation of acute psilocybin effects on brain entropy" by Drummond McCulloch, Anders S Olsen et al (MedRxiv)](https://www.medrxiv.org/content/10.1101/2023.07.03.23292164v1). 
Original toolbox published at https://github.com/anders-s-olsen/CopBET.git.

## Installation guide
To use this package follow the steps below.
1. Install this package using

   ```pip install CopBET```

2. [Install the MATLAB engine API for Python](https://www.mathworks.com/help/matlab/matlab_external/install-the-matlab-engine-for-python.html).

3. Clone the original CopBET repository to your machine (although some of the helper functions will work just fine without).

   ```git clone https://github.com/anders-s-olsen/CopBET.git```

## Example script
I have included an example script titled `CopBET_python_tutorial.ipynb` showing examples and explanations of how to use this wrapper. The example script runs using the openly available [acute IV LSD dataset](https://openneuro.org/datasets/ds003059) that was included in original repository's example script. Unlike the original repository, the example was not written to be used on the entire original dataset but rather the smaller sample already in the /CopBET/LSDdata folder.

## Python versions and dependencies
This package and wrapper was developed, tested, and implemented using 3.12 and 3.13.

## MATLAB versions and dependencies
This package runs using the MATLAB engine in the backend, so it has the same dependencies as the original toolbox. The toolbox works on MATLAB R2018b+ and is known to _not_ work on MATLAB R2017b due to the structuring of tables. You will also need to install the external dependencies Brain Connectivity toolbox (2019_03_03), the complexity toolbox (LOFT) and the DCC toolbox (the original one from 2014).

## Contributing/reporting bugs
If you would like to contribute, report any bugs or have any questions, please email Viswanath Missula (vmissul1@jh.edu). If you would like to develop architecture building on this, please email Anders S. Olsen (ansol@dtu.dk) as well, since he is the original developer of this toolbox.

## References
If you use the Copenhagen Brain Entropy Toolbox in your research, please cite both the following:

Drummond McCulloch, Anders S Olsen, et al. "Navigating the chaos of psychedelic neuroimaging: A multi-metric evaluation of acute psilocybin effects on brain entropy". (MedRxiv), 2023.

[insert DOI via Zenodo]

## Repo Version
1.0.0 Jan 2026 - initial commit.

## License
Copyright (C) 2023 Drummond E-Wen McCulloch & Anders Stevnhoved Olsen

```
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see http://www.gnu.org/licenses/.
```
