-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into dev-tests
- Loading branch information
Showing
31 changed files
with
769 additions
and
536 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ __pycache__/ | |
*.pyc | ||
*.egg-info | ||
|
||
|
||
# Python coverage files | ||
.coverage | ||
.coverage.* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Voluseg container | ||
|
||
Build the image: | ||
```bash | ||
DOCKER_BUILDKIT=1 docker build -t voluseg . | ||
``` | ||
|
||
Run with local data volume mount: | ||
```bash | ||
docker run -v $(pwd)/data:/voluseg/data voluseg | ||
``` | ||
|
||
Run with local data volume mount and hot reload for the voluseg package: | ||
```bash | ||
docker run \ | ||
-v $(pwd)/sample_data:/voluseg/data \ | ||
-v $(pwd)/output:/voluseg/output \ | ||
-v $(pwd)/voluseg:/voluseg/voluseg \ | ||
-v $(pwd)/app:/voluseg/app \ | ||
voluseg | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ matplotlib==3.9.2 | |
numpy==2.1.0 | ||
pandas==2.2.2 | ||
pyspark==3.4.0 | ||
pynwb==2.8.1 | ||
pynwb==2.8.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,28 @@ | ||
'''volumetric segmentation pipeline''' | ||
"""volumetric segmentation pipeline""" | ||
|
||
import setuptools | ||
|
||
with open('README.md', 'r') as fh: | ||
with open("README.md", "r") as fh: | ||
README = fh.read() | ||
|
||
# with open('requirements.txt', 'r') as fh: | ||
# install_requires = fh.read().split('\n') | ||
|
||
setuptools.setup( | ||
name='voluseg', | ||
version='2023.12', | ||
author='Mika Rubinov', | ||
author_email='mika.rubinov@vanderbilt.edu', | ||
description='pipeline for volumetric segmentation of calcium imaging data', | ||
name="voluseg", | ||
version="2023.12", | ||
author="Mika Rubinov", | ||
author_email="mika.rubinov@vanderbilt.edu", | ||
description="pipeline for volumetric segmentation of calcium imaging data", | ||
long_description=README, | ||
long_description_content_type='text/markdown', | ||
url='https://github.com/mikarubi/voluseg', | ||
packages=[ | ||
'voluseg', | ||
'voluseg._steps', | ||
'voluseg._tools' | ||
], | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/mikarubi/voluseg", | ||
packages=["voluseg", "voluseg._steps", "voluseg._tools"], | ||
classifiers=[ | ||
'Programming Language :: Python :: 3', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
python_requires='>=3.5', | ||
python_requires=">=3.5", | ||
# install_requires=install_requires | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.