Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
alibylite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Swain Lab
aliby
alibylite
Commits
32bc8ffa
Commit
32bc8ffa
authored
2 years ago
by
Alán Muñoz
Browse files
Options
Downloads
Patches
Plain Diff
fix(cells): update method of finding tile_size
parent
df95da90
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
io/cells.py
+3
-2
3 additions, 2 deletions
io/cells.py
with
3 additions
and
2 deletions
io/cells.py
+
3
−
2
View file @
32bc8ffa
...
@@ -77,7 +77,8 @@ class Cells:
...
@@ -77,7 +77,8 @@ class Cells:
def
tile_size
(
self
)
->
t
.
Union
[
int
,
t
.
Tuple
[
int
],
None
]:
def
tile_size
(
self
)
->
t
.
Union
[
int
,
t
.
Tuple
[
int
],
None
]:
if
self
.
_tile_size
is
None
:
if
self
.
_tile_size
is
None
:
with
h5py
.
File
(
self
.
filename
,
mode
=
"
r
"
)
as
f
:
with
h5py
.
File
(
self
.
filename
,
mode
=
"
r
"
)
as
f
:
self
.
_tile_size
=
f
[
"
trap_info/tile_size
"
][
0
]
# self._tile_size = f["trap_info/tile_size"][0]
self
.
_tile_size
=
f
[
"
cell_info/edgemasks
"
].
shape
[
1
:]
return
self
.
_tile_size
return
self
.
_tile_size
def
nonempty_tp_in_trap
(
self
,
trap_id
:
int
)
->
set
:
def
nonempty_tp_in_trap
(
self
,
trap_id
:
int
)
->
set
:
...
@@ -99,7 +100,7 @@ class Cells:
...
@@ -99,7 +100,7 @@ class Cells:
We use mother_assign to list traps because it is the only property that appears even
We use mother_assign to list traps because it is the only property that appears even
when no cells are found
when no cells are found
"""
"""
return
[
self
.
labels_in_trap
(
trap
)
for
trap
in
self
.
traps
]
return
[
self
.
labels_in_trap
(
trap
)
for
trap
in
range
(
self
.
n
traps
)
]
def
where
(
self
,
cell_id
:
int
,
trap_id
:
int
):
def
where
(
self
,
cell_id
:
int
,
trap_id
:
int
):
"""
"""
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment