Skip to content
Snippets Groups Projects
Commit e942729c authored by Evan Edmond's avatar Evan Edmond
Browse files

Apply 1 suggestion(s) to 1 file(s)

parent 5e7f6f37
No related branches found
No related tags found
No related merge requests found
......@@ -309,9 +309,11 @@ You can update the FileTree with one or more variables before calling `get_all_t
.. code-block:: python
for t in tree.update(participant=("001", "002"), run=("1")).get_all_trees("feat_dir"):
my_pipeline(t)
for participant in ("001", "002"):
for t in tree.update(participant=participant, run="1").get_all_trees("feat_dir", glob_vars="all"):
my_pipeline(t)
This code will iterate over all sessions that have a run="1" for participants "001" and "002".
"""
__author__ = 'Michiel Cottaar <Michiel.Cottaar@ndcn.ox.ac.uk>'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment