Jorge Aguilera

Results 32 comments of Jorge Aguilera

Another "native" way is using the (non-documented) optional renderer: ```groovy import static groovy.json.JsonOutput.toJson import static groovy.json.JsonOutput.prettyPrint workflow { Channel.of( [ id: 'test', samples: [ [ id: 'S1', path: '/path/to/s1' ],...

yes, in this case we need to traverse the structure (and it's easy but not immediate) Inspired by this stack overflow https://stackoverflow.com/questions/51488434/how-to-iterate-through-all-values-of-a-nested-map-in-groovy we can have something as this: ``` import...

right now we are discussing about it: https://github.com/nextflow-io/nextflow/pull/3163#discussion_r959527107

Related https://github.com/nextflow-io/nextflow/pull/2853

also, you can use ``` shopt -s dotglob change files shopt -u dotglob ```

yes, but once started with the implementation I've found this syntax more powerful and wanted to propose it (I'm still working on the issue so I can include also our...

This PR allows the following syntax: ``` process foo { label 'bravo' //

Are you behind a proxy? I can see this error un the logs javax.net.ssl.SSLHandshakeException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target El mar.,...

Yes, this is a known issue To cover corner cases in configuration ( see #2701 for example) ConfigParser has been changed. The main problem is dot annotation is evaluated by...

> @jorgeaguileraseqera in the future, would not a simple json formatted config make this easier/ more reliable? `#featureRequest` @phiweger is not only about the format. Json, Yaml or Toml are...