diff options
-rw-r--r-- | tools/samtools-sort.nix | 2 | ||||
-rw-r--r-- | tools/strelka-call.nix | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/samtools-sort.nix b/tools/samtools-sort.nix index 6f9eb33..d01c83f 100644 --- a/tools/samtools-sort.nix +++ b/tools/samtools-sort.nix @@ -19,7 +19,7 @@ let outfmtR = if outfmt != null then outfmt input else input.filetype; outFmtFlags = matchFiletype "samtools-sort-outfmt" { bam = _: "-O BAM"; sam = _: "-O SAM"; cram = ref: "-O CRAM -T ${ref}"; } {filetype = outfmtR;}; alreadySorted = matchFileSorting "samtools-sort" { name = _: nameSort; coord = _: !nameSort; none = _: false;} input; -in pkgs.stdenv.mkDerivation { +in stage { name = "samtools-sort"; buildInputs = with pkgs; [ samtools ]; buildCommand = diff --git a/tools/strelka-call.nix b/tools/strelka-call.nix index 95ce0f6..8505302 100644 --- a/tools/strelka-call.nix +++ b/tools/strelka-call.nix @@ -21,7 +21,7 @@ in assert (length (unique refs) == 1); -pkgs.stdenv.mkDerivation { +stage { name = "strelka"; buildInputs = with pkgs; [ strelka ]; buildCommand = '' |