Hello,
I am following the last JoinNode example in
http://www.mit.edu/~satra/nipype-nightly/users/joinnode_and_itersource.html,
and using it in my workflow. Same as this example I have two iterables,
lets say the first is the list of subjects and the second one is a
selected feauture of them. Doing so, as in this example we join
everything in node E. What I like to do is to be able to have two join nodes
to get a list per feature per subject, rather than a mix. For example, I
will have E1 for D13 and D14, and E2 for D25 and D26. The problem with
having only node E is that I get a list of lists and I cannot seperate them
correspondingly. How can I do this? can I have a iterable in JoinNode
itself, or I have to seperate it in two, and if so how I distinguish
between diffrent lists of my iterables?
Thank you so much for helping me, it is certainly appreciated :).