2017-03-07 06:16:03 +01:00
|
|
|
{stdenv, fetchurl, jre, makeWrapper}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "picard-tools-${version}";
|
2018-05-11 10:48:31 +02:00
|
|
|
version = "2.18.4";
|
2017-03-07 06:16:03 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/broadinstitute/picard/releases/download/${version}/picard.jar";
|
2018-05-11 10:48:31 +02:00
|
|
|
sha256 = "0qwalb49g8s6dswhhk12ny33xzzj38xa2rj6p6ar0hrwh7aijlqc";
|
2017-03-07 06:16:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ jre makeWrapper ];
|
|
|
|
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
|
|
|
|
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 stdenv.lib; {
|
|
|
|
description = "Tools for high-throughput sequencing (HTS) data and formats such as SAM/BAM/CRAM and VCF.";
|
|
|
|
license = licenses.mit;
|
|
|
|
homepage = https://broadinstitute.github.io/picard/;
|
|
|
|
maintainers = with maintainers; [ jbedo ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|