Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
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
Michiel Cottaar
fslpy
Commits
3c678cf9
Commit
3c678cf9
authored
6 years ago
by
Michiel Cottaar
Browse files
Options
Downloads
Patches
Plain Diff
ENH: added get_all_trees to simplify iterating over variables
parent
788e850f
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
fsl/utils/filetree/__init__.py
+3
-3
3 additions, 3 deletions
fsl/utils/filetree/__init__.py
fsl/utils/filetree/filetree.py
+14
-0
14 additions, 0 deletions
fsl/utils/filetree/filetree.py
tests/test_filetree/test_read.py
+4
-0
4 additions, 0 deletions
tests/test_filetree/test_read.py
with
21 additions
and
3 deletions
fsl/utils/filetree/__init__.py
+
3
−
3
View file @
3c678cf9
...
@@ -193,9 +193,9 @@ Assuming that the input T1w's already exist, we can then simply run BET for ever
...
@@ -193,9 +193,9 @@ Assuming that the input T1w's already exist, we can then simply run BET for ever
from fsl.utils.filetree import FileTree
from fsl.utils.filetree import FileTree
from fsl.wrappers.bet import bet
from fsl.wrappers.bet import bet
tree = FileTree.read(<tree filename>)
tree = FileTree.read(<tree filename>)
variables = tree.get_all_vars(
'
T1w
'
) # extract the set of variables for all existing T1w files
for single_variable_set in variables:
# Iterates over set of variables that correspond to each T1-weighted image file matching the template
T1w_tree
=
tree.
update(**single_variable_set)
for
T1w_tree
in
tree.
get_all_trees(
'
T1w
'
, glob_vars=
'
all
'
):
# get retrieves the filenames based on the current set of variables
# get retrieves the filenames based on the current set of variables
# make_dir=True ensures that the output directory containing the
"
bet_output
"
actually exists
# make_dir=True ensures that the output directory containing the
"
bet_output
"
actually exists
bet(input=T1w_tree.get(
'
T1w
'
), output=T1w_tree.get(
'
bet_output
'
, make_dir=True), mask=True)
bet(input=T1w_tree.get(
'
T1w
'
), output=T1w_tree.get(
'
bet_output
'
, make_dir=True), mask=True)
...
...
This diff is collapsed.
Click to expand it.
fsl/utils/filetree/filetree.py
+
14
−
0
View file @
3c678cf9
...
@@ -185,6 +185,20 @@ class FileTree(object):
...
@@ -185,6 +185,20 @@ class FileTree(object):
"""
"""
return
tuple
(
self
.
extract_variables
(
short_name
,
fn
)
for
fn
in
self
.
get_all
(
short_name
,
glob_vars
=
glob_vars
))
return
tuple
(
self
.
extract_variables
(
short_name
,
fn
)
for
fn
in
self
.
get_all
(
short_name
,
glob_vars
=
glob_vars
))
def
get_all_trees
(
self
,
short_name
:
str
,
global_vars
=
())
->
Tuple
[
"
FileTree
"
]:
"""
Gets all the trees that generate the existing files matching the pattern
tree.get_all(short_name) == tuple(tree.get(short_name) for tree in tree.get_all_trees(short_name))
:param short_name: short name of the path template
:param glob_vars: sequence of undefined variables that can take any possible values when looking for matches on the disk.
Any defined variables in `glob_vars` will be ignored.
If glob_vars is set to
'
all
'
, all undefined variables will be used to look up matches.
:return: sequence of FileTrees used to generate each file on disk matching the pattern of `short_name`
"""
return
tuple
(
self
.
update
(
**
vars
)
for
vars
in
self
.
get_all_vars
(
short_name
,
glob_vars
=
global_vars
))
def
update
(
self
,
**
variables
)
->
"
FileTree
"
:
def
update
(
self
,
**
variables
)
->
"
FileTree
"
:
"""
"""
Creates a new FileTree with updated variables
Creates a new FileTree with updated variables
...
...
This diff is collapsed.
Click to expand it.
tests/test_filetree/test_read.py
+
4
−
0
View file @
3c678cf9
...
@@ -90,6 +90,10 @@ def test_custom_tree():
...
@@ -90,6 +90,10 @@ def test_custom_tree():
tree
.
get_all
(
'
opt_file
'
)
tree
.
get_all
(
'
opt_file
'
)
assert
len
(
tree
.
get_all
(
'
opt_file
'
,
glob_vars
=
[
'
opt
'
]))
==
1
assert
len
(
tree
.
get_all
(
'
opt_file
'
,
glob_vars
=
[
'
opt
'
]))
==
1
for
short_name
in
(
'
sub_file
'
,
'
opt_file
'
):
for
glob_vars
in
([
'
opt
'
],
'
all
'
):
assert
tree
.
get_all
(
short_name
,
glob_vars
)
==
tuple
(
stree
.
get
(
short_name
)
for
stree
in
tree
.
get_all_trees
(
short_name
,
glob_vars
))
for
vars
in
({
'
opt
'
:
None
},
{
'
opt
'
:
'
test
'
}):
for
vars
in
({
'
opt
'
:
None
},
{
'
opt
'
:
'
test
'
}):
filename
=
tree
.
update
(
**
vars
).
get
(
'
sub_file
'
)
filename
=
tree
.
update
(
**
vars
).
get
(
'
sub_file
'
)
assert
vars
==
tree
.
extract_variables
(
'
sub_file
'
,
filename
)
assert
vars
==
tree
.
extract_variables
(
'
sub_file
'
,
filename
)
...
...
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