gaow

Results 96 comments of gaow

Good move! But I did not realize we can do it for `input`? I have tried your example: ``` [1] input: for_each={'i': range(5)}, active=1 output: f'test_{i}.txt' sh: expand=True touch {_output}...

Okay am trying to dig up related ticket: https://github.com/vatlab/SoS/issues/206 seems like we were once attempted that. I'm trying to find the ticket that motivated this feature in the first place...

Ahh sure, I actually use this a lot: ``` if _index == 1: sh(script) ``` (yes, without script it is not very convenient. That's why I often wrap it with...

Okay, but I cannot do: ``` stop_if(_index!=1) R: ... ``` right? I'd have no hesitation to remove `active` if i can do this. But I guess we want to remove...

Interesting ... but this is not the case for him. He uses cygwin on `F` drive. The path mapping was like `-v /F/cygwin...:/F/cygwin...`, which looks fine.

I see. It might be the problem. I'll ask him to check. I just want to make sure the examples I post do work for Windows if properly configured --...

Good to know! But still, the `run` action for docker in Windows is still problematic right? because the consequence is that it tries to run a `.bat` command in Linux,...

I'd suggest for starters we provide a good base image -- something like `mdabioinfo/sos` but importantly by default we install `docker` inside of it. The idea is to make it...

See some discussions #951 . Other than proper volume mounting, the rest of the process are straightforward to do outside SoS.

> It is appealing to stop using external tasks and execute the workflow entirely on a cluster system This means interacting with the queue system once and let SoS take...