-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rework workflow handling, move sample data into package
- Loading branch information
1 parent
d9695f0
commit 1b0b0f3
Showing
24 changed files
with
259 additions
and
167 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
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
File renamed without changes.
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,4 @@ | ||
LLS7_t1_ch1: 3D array | ||
LLS7_t1_ch3: 4D array with channel dimension value of 3 | ||
LLS7_t2_ch1: 4D array with time dimension value of 2 | ||
LLS7_t2_ch3: 4D array with time dimension of value 2 and channel of value 3 |
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,9 @@ | ||
from pkg_resources import resource_filename | ||
|
||
LLS7_T1_CH1 = resource_filename(__name__, "LLS7_t1_ch1.czi") | ||
LLS7_T1_CH3 = resource_filename(__name__, "LLS7_t1_ch3.czi") | ||
LLS7_T2_CH1 = resource_filename(__name__, "LLS7_t2_ch1.czi") | ||
LLS7_T2_CH3 = resource_filename(__name__, "LLS7_t2_ch4.czi") | ||
MULTICH_MULTITIME = resource_filename(__name__, "multich_multi_time.tif") | ||
RBC_LATTICE_TIF = resource_filename(__name__, "RBC_lattice.tif") | ||
RBC_TINY_CZI = resource_filename(__name__, "RBC_tiny.czi") |
Oops, something went wrong.