Metadata-Version: 2.1
Name: datashuttle
Version: 0.2.0
Summary: Organise and transfer scientific projects in BIDS format
Author-email: Joe Ziminski <j.ziminski@ucl.ac.uk>, Adam Tyson <code@adamltyson.com>, Niko Sirmpilatze <niko.sirbiladze@gmail.com>
License: BSD-3-Clause
Project-URL: Bug Tracker, https://github.com/neuroinformatics-unit/datashuttle/issues
Project-URL: Documentation, https://datashuttle.neuroinformatics.dev
Project-URL: Source Code, https://github.com/neuroinformatics-unit/datashuttle
Project-URL: User support, https://github.com/neuroinformatics-unit/datashuttle/discussions
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: BSD License
Requires-Python: >=3.8.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: paramiko
Requires-Dist: PyYAML
Requires-Dist: requests
Requires-Dist: rich
Requires-Dist: fancylog[git]
Requires-Dist: simplejson
Provides-Extra: dev
Requires-Dist: pandas ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: pytest-cov ; extra == 'dev'
Requires-Dist: coverage ; extra == 'dev'
Requires-Dist: tox ; extra == 'dev'
Requires-Dist: black ; extra == 'dev'
Requires-Dist: isort ; extra == 'dev'
Requires-Dist: mypy ; extra == 'dev'
Requires-Dist: pre-commit ; extra == 'dev'
Requires-Dist: ruff ; extra == 'dev'
Requires-Dist: setuptools-scm ; extra == 'dev'
Requires-Dist: types-requests ; extra == 'dev'
Requires-Dist: types-PyYAML ; extra == 'dev'
Requires-Dist: types-appdirs ; extra == 'dev'
Requires-Dist: types-paramiko ; extra == 'dev'
Requires-Dist: types-simplejson ; extra == 'dev'

# DataShuttle

Datashuttle is a work in progress and is currently in alpha release v0.1.0.

![datashuttle_figure_machines](https://github.com/neuroinformatics-unit/datashuttle/assets/29216006/51b65a6d-492a-4047-ae7b-16273b58e258)

Datashuttle includes tools for automated generation and transfer of neuroscience project folders formatted to the [NeuroBlueprint](https://neuroblueprint.neuroinformatics.dev/) specification.

* Manage files across multiple data-collection computers by synchronising all data to with a centrally stored project.

* Simplify data transfers by selecting only a sub-set of data to move (e.g. specific subjects, sessions or datatypes)

See the [DataShuttle Documentation](https://datashuttle.neuroinformatics.dev) to get started or join the [Zulip chat](https://neuroinformatics.zulipchat.com/#narrow/stream/405999-DataShuttle) to discuss any questions, comments or feedback.

## Installation

DataShuttle is hosted on  [PyPI](https://pypi.org/project/datashuttle/) and can be installed with pip.

`pip install datashuttle`

Datashuttle required Rclone for data transfers. The easiest way to install Rclone is using [Miniconda](https://docs.conda.io/en/main/miniconda.html):

```
conda install -c conda-forge rclone
```

See [the Rclone website](https://rclone.org/install/) for alternative installation methods.

## NeuroBlueprint Folder Tree

DataShuttle project folders are managed according to  [NeuroBlueprint](https://neuroblueprint.neuroinformatics.dev/).

```
└── project_name/
    └── raw_data/
        ├── sub-001/
        │   └── ses-001/
        │       ├── ephys/
        │       └── behav/
        │       └── anat/
        └── sub-002/
            └── ses-001/
            │   ├── behav/
            │   └── imaging/
            └── ses-002/
                └── behav/
                └── anat/
```


```+
└── project_name/
    └── rawdata/[test_utils.py](tests%2Ftest_utils.py)
        ├── sub-001  /
        │   └── ses-001/
        │       ├── ephys
        │       └── behav
        │       └── anat
        └── sub-002/
            ├── ses-001/
            │   ├── behav
            │   └── imaging
            └── ses-002/
                └── behav
                └── anat
```
