Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PyNutil
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Harry Carey
PyNutil
Commits
215e4325
Commit
215e4325
authored
5 months ago
by
polarbean
Browse files
Options
Downloads
Patches
Plain Diff
add saving to automatic tests and fix bug
parent
8e3c2bfe
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
PyNutil/io/file_operations.py
+1
-1
1 addition, 1 deletion
PyNutil/io/file_operations.py
tests/test_quantification.py
+2
-0
2 additions, 0 deletions
tests/test_quantification.py
workflows/using_transform_jsons.py
+5
-2
5 additions, 2 deletions
workflows/using_transform_jsons.py
with
8 additions
and
3 deletions
PyNutil/io/file_operations.py
+
1
−
1
View file @
215e4325
...
@@ -115,7 +115,7 @@ def _save_per_section_meshview(
...
@@ -115,7 +115,7 @@ def _save_per_section_meshview(
write_points_to_meshview
(
write_points_to_meshview
(
pixel_points
[
prev_pl
:
pl
+
prev_pl
],
pixel_points
[
prev_pl
:
pl
+
prev_pl
],
labeled_points
[
prev_pl
:
pl
+
prev_pl
],
labeled_points
[
prev_pl
:
pl
+
prev_pl
],
f
"
{
output_folder
}
/per_section_meshview/
{
split
}
_pixels.json
"
,
f
"
{
output_folder
}
/per_section_meshview/
{
split
_fn
}
_pixels.json
"
,
atlas_labels
,
atlas_labels
,
)
)
write_points_to_meshview
(
write_points_to_meshview
(
...
...
This diff is collapsed.
Click to expand it.
tests/test_quantification.py
+
2
−
0
View file @
215e4325
...
@@ -37,6 +37,8 @@ class TestQuantification(unittest.TestCase):
...
@@ -37,6 +37,8 @@ class TestQuantification(unittest.TestCase):
pnt
.
label_df
[
"
region_area
"
].
values
,
pnt
.
label_df
[
"
region_area
"
].
values
,
expected_region_area
[
"
region_area
"
].
values
,
expected_region_area
[
"
region_area
"
].
values
,
)
)
save_path
=
os
.
path
.
join
(
self
.
test_case_dir
,
"
..
"
,
"
demo_data
"
,
"
outputs
"
)
pnt
.
save_analysis
(
save_path
)
test_case_files
=
[
"
brainglobe_atlas.json
"
,
"
custom_atlas.json
"
]
test_case_files
=
[
"
brainglobe_atlas.json
"
,
"
custom_atlas.json
"
]
...
...
This diff is collapsed.
Click to expand it.
workflows/using_transform_jsons.py
+
5
−
2
View file @
215e4325
...
@@ -10,9 +10,12 @@ from PyNutil import PyNutil
...
@@ -10,9 +10,12 @@ from PyNutil import PyNutil
###The alignment json should be out of DeepSlice, QuickNII, or VisuAlign, it defines the sections position in an atlas
###The alignment json should be out of DeepSlice, QuickNII, or VisuAlign, it defines the sections position in an atlas
###The colour says which colour is the object you want to quantify in your segmentation. It is defined in RGB
###The colour says which colour is the object you want to quantify in your segmentation. It is defined in RGB
###Finally the atlas name is the relevant atlas from brainglobe_atlasapi you wish to use in Quantification.
###Finally the atlas name is the relevant atlas from brainglobe_atlasapi you wish to use in Quantification.
"""
we must run this from the parent dir as the file has releative imports
"""
os
.
chdir
(
'
..
'
)
pnt
=
PyNutil
(
pnt
=
PyNutil
(
settings_file
=
r
"
/home/harryc/github/PyNutil/tests/test_jsons/test6_artifical
.json
"
settings_file
=
r
"
tests/test_cases/brainglobe_atlas
.json
"
)
)
pnt
.
get_coordinates
(
object_cutoff
=
0
)
pnt
.
get_coordinates
(
object_cutoff
=
0
)
pnt
.
quantify_coordinates
()
pnt
.
quantify_coordinates
()
pnt
.
save_analysis
(
"
../tests/outputs
/PyNutil_nonlinear_noflat
"
)
pnt
.
save_analysis
(
"
demo_data
/PyNutil_nonlinear_noflat
"
)
This diff is collapsed.
Click to expand it.
Preview
0%
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