diff options
author | Justin Bedo <cu@cua0.org> | 2018-10-08 15:11:04 +1100 |
---|---|---|
committer | Justin Bedo <cu@cua0.org> | 2018-10-08 15:11:04 +1100 |
commit | 3a29fbba0d83d30939094b6dd7b78b41aed8a2bb (patch) | |
tree | 2e75a3f93941c37f58291da2efa8645104760df4 /tools | |
parent | ca3d5d1550d068b62dbc836b07abefc3bb06cab9 (diff) |
Add identity to compression functions
Diffstat (limited to 'tools')
-rw-r--r-- | tools/compression.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/compression.nix b/tools/compression.nix index aea7e13..4184fec 100644 --- a/tools/compression.nix +++ b/tools/compression.nix @@ -37,6 +37,7 @@ with bionix; cram = _: gz; vcf = _: gz; bed = _: gz; + gz = x: x; } f; bzip2 = f: @@ -54,5 +55,6 @@ with bionix; cram = _: gz; vcf = _: gz; bed = _: gz; + bz2 = x: x; } f; } |