3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/science/biology/picard-tools/default.nix

32 lines
919 B
Nix
Raw Normal View History

{lib, stdenv, fetchurl, jre, makeWrapper}:
2017-03-07 05:16:03 +00:00
stdenv.mkDerivation rec {
pname = "picard-tools";
2021-11-03 19:57:00 +00:00
version = "2.26.4";
2017-03-07 05:16:03 +00:00
src = fetchurl {
url = "https://github.com/broadinstitute/picard/releases/download/${version}/picard.jar";
2021-11-03 19:57:00 +00:00
sha256 = "sha256-KVOQuqudne0SAdgFEft/lTuoDn9vcpuDtMAafztYvPo=";
2017-03-07 05:16:03 +00:00
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ jre ];
2017-03-07 05:16:03 +00:00
2021-08-02 23:04:29 +01:00
dontUnpack = true;
2017-03-07 05:16:03 +00:00
installPhase = ''
mkdir -p $out/libexec/picard
cp $src $out/libexec/picard/picard.jar
mkdir -p $out/bin
makeWrapper ${jre}/bin/java $out/bin/picard --add-flags "-jar $out/libexec/picard/picard.jar"
'';
meta = with lib; {
description = "Tools for high-throughput sequencing (HTS) data and formats such as SAM/BAM/CRAM and VCF";
2017-03-07 05:16:03 +00:00
license = licenses.mit;
2020-03-04 09:58:40 +00:00
homepage = "https://broadinstitute.github.io/picard/";
2017-03-07 05:16:03 +00:00
maintainers = with maintainers; [ jbedo ];
platforms = platforms.all;
};
}