Daniel F. Rose

Results 22 comments of Daniel F. Rose

I can try, I am unsure, however, how they should exactly be fixed. Is this code snippet that you mentioned the go-to solution for all pathlike checks? ```python _validate_type(info, (Info,...

How is the current progress on this issue? I suggested the introduction of a `yaml`-interface to create tasks for command line tools (primarily, not exclusively) here #367 . A possible...

I just noticed that you already implemented a nipype1 task wrapper with the PR nipype/pydra-nipype1#1 Has this been tested?

@effigies happy to hear that you like the idea :-) >The only problem I see is with interfaces that have more complicated internal workings that cannot be determined only from...

I filled in my availabilities. Sorry for the late reply. With my current situation being quite dynamic, it is a bit difficult to judge in advance, but I'll try to...

I just want to stick this here, so it won't be forgotten in the call: I stumbled upon issue #42 which resulted in a prototype for a [nipype1topydratask](https://github.com/dPys/nipype1topydratask/blob/master/converter.py) function by...

thanks again for all your effort. Pydra shows great promise! @satra @nicolocin @djarecka What is the current state on this issue? It actually caused me numerous headaches to debug workflows...

Another variant would be to use `numpy.concatenate`, e.g. ```python >import numpy as np >from itertools import product >np.concatenate((np.array(list(product([1,2], [3,4,5]))), [[6],[7],[8],[9],[10],[11]]), axis=1) array([[ 1, 3, 6], [ 1, 4, 7], [...

Thanks for your reply, @djarecka > So the second variant should work if you add cont_dim={"c": 2} to the task, see [an example](https://github.com/nipype/pydra/blob/master/pydra/engine/tests/test_node_task.py#L1377) ah I see. I did notice the...

ok, sounds great! I guess, this is basically a design decision. The discussion about using `numpy` aside, I think the 1D/first dimension solution is a lot simpler to implement, because...