-
Notifications
You must be signed in to change notification settings - Fork 7
Is the path variable still a thing? #322
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
Comments
This is working for me in the hello looper repository as well as a project I created separately. (looper v1.3.0) |
Currently, in v1.4.0, one can replace with However, one page of our documentation instructs to use: However, this does not execute the pipeline script as expected. Looper debug output: `DEBU 14:11:53 | looper.utils:utils:207 > rendered arg str: {looper.piface_dir}/pipeline/count_lines.sh data/frog2_data.txt --output-parent /home/drc/hello_looper_results/results_pipeline/frog_2`` vs executing the pipeline .sh as expected:
It appears that in the 1st case, Also, using the example from the documentation page, |
Added check in utils.py to look for nested commands: f3ae33f Next Steps:
|
Per discussion, a different approach for the nested commands was investigated. Instead of checking for nested commands, the program can return the rendered 'var_templates' back to the 'pipeline' namespace. Proposed change in conductor.py, after rendering var_templates:
This will allow the the proper rendering of the following command_template as it uses the pipeline namespace for rendering NOT
|
This is now fixed with 79fef3e |
excellent -- it would probably be best in this case to add add one small pytest to check for this so we don't have a reversion |
Here, we introduce the
path
key in the pipeline interface.http://looper.databio.org/en/latest/writing-a-pipeline-interface/
Are these docs outdated? I seem to recall that we switched from this to use
var_templates
There are very few docs related to this and I think some of these are wrong...
The text was updated successfully, but these errors were encountered: