diff options
author | Justin Bedo <cu@cua0.org> | 2022-01-04 08:21:06 +1100 |
---|---|---|
committer | Justin Bedo <cu@cua0.org> | 2022-01-04 08:21:06 +1100 |
commit | 0a637afd8bc82d03e474295895251aa47323d747 (patch) | |
tree | e0774186762e999afb54fdd696782fbb43682d97 | |
parent | 17cbee012c16ec2f36ddba5d467183c8d94165f8 (diff) |
samtools-flagstat: fix name
-rw-r--r-- | tools/samtools-flagstat.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/samtools-flagstat.nix b/tools/samtools-flagstat.nix index d733f2f..32c7021 100644 --- a/tools/samtools-flagstat.nix +++ b/tools/samtools-flagstat.nix @@ -7,7 +7,7 @@ with bionix; with lib; stage { - name = "samtools-index"; + name = "samtools-flagstat"; buildInputs = with pkgs; [ samtools ]; buildCommand = "samtools flagstat -@ $NIX_BUILD_CORES ${input} > $out"; passthru.multicore = true; |