-
Notifications
You must be signed in to change notification settings - Fork 642
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Accept config from YAML/JSON #5398
Comments
Using |
I wanted to give a try to this, I've added |
I think we still need to implement the other direction i.e. accepting JSON/YAML config files as input |
To be discussed. That could be a good option, but it should be considered as a replacement of current config. For that we have #2723 |
I am working on a Python-based guided-track tool to let users set config for my Nextflow pipeline. I wrote a parser that can format Python dicts into a nextflow.config file. This is relatively easy as I am starting with a structured object.
However, going in the reverse direction will be harder, if I want to write my own parser for a nextflow.config file. I would like to avoid this. Is there an easy way to convert a nextflow.config file to something more standard, like JSON or YAML? Or could such a feature be implemented? I think an extra benefit is that this would potentially allow Nextflow pipelines with complex config to be "driven" by some other process from arbitrary other programming languages. It would become relatively straightforward to create new user interfaces for building config for a specific pipeline and running it.
The text was updated successfully, but these errors were encountered: