diff options
-rw-r--r-- | tools/bwa-mem.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bwa-mem.nix b/tools/bwa-mem.nix index 3420294..2b3bc64 100644 --- a/tools/bwa-mem.nix +++ b/tools/bwa-mem.nix @@ -17,7 +17,7 @@ with bionix.compression; let fa = f: matchFiletype "bwa-ref" { fa = _: f; } f; - fq = f: matchFiletype "bwa-input" { fq = _: f; } f; + fq = f: matchFiletype "bwa-input" { fq = _: f; gz = matchFiletype' "bwa-input" { fq = _: f; }; } f; in stdenv.mkDerivation { name = "bwa-mem"; |