From de57ab52a839ffbd5eee90aca29d6042b4911ed2 Mon Sep 17 00:00:00 2001 From: Justin Bedo Date: Wed, 6 Feb 2019 11:41:23 +1100 Subject: qsub: rename flags to qsubFlags to avoid collision --- default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'default.nix') diff --git a/default.nix b/default.nix index bd68277..4f16640 100644 --- a/default.nix +++ b/default.nix @@ -32,7 +32,7 @@ let strelka = callBionix ./tools/strelka.nix {}; qsub = attrs: bionix.extend (self: super: with self; rec { - qsubDefs = { ppn = 1; mem = 1; walltime = "24:00:00"; tmpDir = "/tmp"; sleepTime = 60; queue = null; flags = null; } // attrs; + qsubDefs = { ppn = 1; mem = 1; walltime = "24:00:00"; tmpDir = "/tmp"; sleepTime = 60; queue = null; qsubFlags = null; } // attrs; qsub = attrs: (callPackage ./lib/qsub.nix {}) (qsubDefs // attrs); exec = f: x: y: qsub (builtins.intersectAttrs qsubDefs x) (f (builtins.removeAttrs x (builtins.attrNames qsubDefs)) y); }); -- cgit v1.2.3