-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from spapa013/main
v0.0.14 - fix materialization scripts
- Loading branch information
Showing
6 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
deploy/kubernetes/minnie65_download_materialization.py
100644 → 100755
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,6 +1,6 @@ | ||
import os | ||
|
||
if __name__ == 'main': | ||
if __name__ == '__main__': | ||
from microns_materialization.minnie_materialization.minnie65_materialization import download_materialization | ||
download_materialization(ver=int(os.getenv('MICRONS_MAT_VER_TO_DL')), download_meshes=True, download_synapses=True, loglevel=os.getenv('MICRONS_LOGLEVEL')) | ||
download_materialization(ver=os.getenv('MICRONS_MAT_VER_TO_DL'), download_meshes=True, download_synapses=True, loglevel=os.getenv('MICRONS_LOGLEVEL')) | ||
|
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,5 +1,5 @@ | ||
import os | ||
|
||
if __name__ == 'main': | ||
if __name__ == '__main__': | ||
from microns_materialization.minnie_materialization.minnie65_materialization import download_materialization | ||
download_materialization(ver=int(os.getenv('MICRONS_MAT_VER_TO_DL')), download_meshes=True, download_synapses=False, loglevel=os.getenv('MICRONS_LOGLEVEL')) | ||
download_materialization(ver=os.getenv('MICRONS_MAT_VER_TO_DL'), download_meshes=True, download_synapses=False, loglevel=os.getenv('MICRONS_LOGLEVEL')) |
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,5 +1,5 @@ | ||
import os | ||
|
||
if __name__ == 'main': | ||
if __name__ == '__main__': | ||
from microns_materialization.minnie_materialization.minnie65_materialization import Queue, download_meshwork_objects | ||
download_meshwork_objects(Queue.PCGMeshwork, loglevel=os.getenv('MICRONS_LOGLEVEL')) |
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,5 +1,5 @@ | ||
import os | ||
|
||
if __name__ == 'main': | ||
if __name__ == '__main__': | ||
from microns_materialization.minnie_materialization.minnie65_materialization import Queue, download_pcg_skeletons | ||
download_pcg_skeletons(Queue.PCGSkeleton, loglevel=os.getenv('MICRONS_LOGLEVEL')) |
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,5 +1,5 @@ | ||
import os | ||
|
||
if __name__ == 'main': | ||
if __name__ == '__main__': | ||
from microns_materialization.minnie_materialization.minnie65_materialization import download_materialization | ||
download_materialization(ver=int(os.getenv('MICRONS_MAT_VER_TO_DL')), download_meshes=False, download_synapses=True, loglevel=os.getenv('MICRONS_LOGLEVEL')) | ||
download_materialization(ver=os.getenv('MICRONS_MAT_VER_TO_DL'), download_meshes=False, download_synapses=True, loglevel=os.getenv('MICRONS_LOGLEVEL')) |
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 +1 @@ | ||
__version__ = "0.0.13" | ||
__version__ = "0.0.14" |