Metadata-Version: 2.4
Name: bids2openminds
Version: 0.2.0
Summary: Generates openMINDS metadata from a BIDS dataset
Author-email: Peyman Najafi <peyman.najafi@cnrs.fr>, "Andrew P. Davison" <andrew.davison@cnrs.fr>, Lyuba Zehl <lyuba.zehl@ebrains.eu>
License-Expression: MIT
Project-URL: Documentation, https://bids2openminds.readthedocs.io/
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: bids-validator==1.14.6
Requires-Dist: bids
Requires-Dist: openminds>=0.2.3
Requires-Dist: click>=8.1
Requires-Dist: pandas
Requires-Dist: nameparser>=1.1.3
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Dynamic: license-file

<a href="/img/light_openMINDS-bids2openminds-logo.png">
  <picture>
    <source media="(prefers-color-scheme: dark)" srcset="/img/dark_openMINDS-bids2openminds-logo.png">
    <source media="(prefers-color-scheme: light)" srcset="/img/light_openMINDS-bids2openminds-logo.png">
    <img alt="bids2openminds logo: created by S Pieschnik, U. Schlegel, L. Zehl, P. Najafi, A. Davison and C. Hagen Blixhavn" src="/img/light_openMINDS-bids2openminds-logo.png" title="openMINDS instances" align="right" height="70">
  </picture>
</a>

# bids2openminds
A tool to generate openMINDS metadata from BIDS datasets

In active development, please send us feedback by creating an issue.

## Installation

```
pip install bids2openminds
```

## Usage

```
Usage: bids2openminds [OPTIONS] INPUT_PATH

Options:
  -o, --output-path PATH          The output path or filename for openMINDS
                                  file/files.
  --single-file                   Save the entire collection into a single
                                  file (default).
  --multiple-files                Each node is saved into a separate file
                                  within the specified directory. 'output-
                                  path' if specified, must be a directory.
  -e, --include-empty-properties  Whether to include empty properties in the
                                  final file.
  -q, --quiet                     Not generate the final report and no
                                  warning.
  --help                          Show this message and exit.
```

## For developers

To run tests:
```
  $ pytest
```
