We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I usually run this to make save DAGs
snakemake --dag --forceall --configfile config/example.yml | dot -Tpng > outdir/full-graph.png
So I tried this
- name: Save full DAG uses: snakemake/[email protected] with: args: '--dag --forceall --configfile config/example.yml | dot -Tpng > outdir/full-graph.png'
but of course this was not escaped properly.
Is there a way to pipe the output DAG like I'm doing here? What is the GitHub Actions ™️ way of getting these graphs?
The text was updated successfully, but these errors were encountered:
Idea for a potential workaround: write a rule in your snakemake to generate the DAG, then use GitHub Actions to run the rule.
Snakefile:
rule write_dag: output: png='outdir/full-graph.png' shell: ''' snakemake --dag --forceall --configfile config/example.yml | dot -Tpng > {output.png} '''
In your GitHub Actions workflow:
- name: Save full DAG uses: snakemake/[email protected] with: args: 'write_dag'
Sorry, something went wrong.
No branches or pull requests
I usually run this to make save DAGs
So I tried this
but of course this was not escaped properly.
Is there a way to pipe the output DAG like I'm doing here? What is the GitHub Actions ™️ way of getting these graphs?
The text was updated successfully, but these errors were encountered: