aboutsummaryrefslogtreecommitdiff
path: root/snakemake.el
AgeCommit message (Collapse)Author
2016-09-01snakemake-check-target: Adjust for upstream outputKyle Meyer
As of Snakemake v3.8.0, using a wildcard rule name signals a key error: Traceback (most recent call last): File "/usr/lib/python3.5/site-packages/snakemake/io.py", line 401, in format_match value = wildcards[name] KeyError: 'name'
2016-09-01Change approach to handling errorsKyle Meyer
The approach from 7b210fc (Ignore standard error stream when digesting output, 2016-09-01) does not work well because, depending on the snakemake subcommand, the text of interest may be in the stderr stream. Instead, use lines with spaces as a way to detect non-target lines.
2016-09-01snakemake-check-target: Relax output order assumptionKyle Meyer
2016-09-01snakemake-check-target: Pull out regexpKyle Meyer
2016-09-01Ignore standard error stream when digesting outputKyle Meyer
Avoid including warnings as targets.
2016-06-13snakemake-compile-targets: Update compile-historyKyle Meyer
2016-05-11Extend snakemake-block-bounds functionKyle Meyer
Include name and block type.
2016-05-11Add snakemake-block-bounds functionKyle Meyer
2016-04-19Rename snakemake-graph-rule to snakemake-graph-idKyle Meyer
With introduction of snakemake-graph-this-file, this variable isn't restricted to rule names.
2016-04-19Add snakemake-graph-this-file commandKyle Meyer
2016-04-19snakemake-graph: Fix docstring line breakKyle Meyer
2016-04-19graph: Correct docstringsKyle Meyer
2016-04-17Add helper for splitting rule listsKyle Meyer
2016-04-17Filter out anonymous rules from rule listsKyle Meyer
2016-04-17snakemake-rule-at-point: Fix anonymous rule checkKyle Meyer
2016-04-17commentary: Mention how Snakefile is locatedKyle Meyer
2016-04-17commentary: Add graph commandsKyle Meyer
2016-04-17Add snakemake-graph-save commandKyle Meyer
Re: #9
2016-04-17Add snakemake-graph commandKyle Meyer
Re: #9
2016-04-16Support anonymous rule blocksKyle Meyer
2016-03-04popup: Consider file targets in regionKyle Meyer
2016-02-29snakemake-compile: Fix target pathKyle Meyer
snakemake-file-targets-at-point expects to be called from the original directory.
2016-02-28popup: Add --allowed-rulesKyle Meyer
2016-02-28snakemake-all-rules: New commandKyle Meyer
2016-02-28Add popup interface for compilationKyle Meyer