Skip to content
Snippets Groups Projects
Commit d94793b4 authored by Jan Kožusznik's avatar Jan Kožusznik
Browse files

fix: reverse condition

parent ae0adfd2
No related branches found
No related tags found
No related merge requests found
......@@ -257,7 +257,7 @@ public class TaskComputation {
if (log.isDebugEnabled()) {
log.debug("Job parameters resolved id = {}, inputs = {}", id, inputs);
}
return id == null;
return id != null;
}
private String getSnakemakeOutput() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment