1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
{ bionix , flags ? null }: ref: with bionix; with lib; with types; assert (matchFiletype "subread-index" { fa = _: true; } ref); stage { name = "subread-index"; buildInputs = with pkgs; [ subread ]; buildCommand = '' mkdir $out subread-buildindex ${optionalString (flags != null) flags} -o $out/ref ${ref} ''; }