depot/third_party/nixpkgs/pkgs/applications/science/biology/varscan/default.nix
Default email 4bac34ead1 Project import generated by Copybara.
GitOrigin-RevId: 724bfc0892363087709bd3a5a1666296759154b1
2023-02-09 12:40:11 +01:00

38 lines
1.2 KiB
Nix

{lib, stdenv, fetchurl, jre, makeWrapper}:
stdenv.mkDerivation rec {
pname = "varscan";
version = "2.4.5";
src = fetchurl {
url = "https://github.com/dkoboldt/varscan/raw/master/VarScan.v${version}.jar";
sha256 = "sha256-q4jkkKTqXHiaAPRThqo82i43+B4NaHUUuMyefW6tgg0=";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ jre ];
dontUnpack = true;
installPhase = ''
mkdir -p $out/libexec/varscan
cp $src $out/libexec/varscan/varscan.jar
mkdir -p $out/bin
makeWrapper ${jre}/bin/java $out/bin/varscan --add-flags "-jar $out/libexec/varscan/varscan.jar"
'';
meta = with lib; {
description = "Variant calling and somatic mutation/CNV detection for next-generation sequencing data";
# VarScan 2 is free for non-commercial use by academic,
# government, and non-profit/not-for-profit institutions. A
# commercial version of the software is available, and licensed
# through the Office of Technology Management at Washington
# University School of Medicine.
license = licenses.unfree;
homepage = "https://github.com/dkoboldt/varscan";
sourceProvenance = with sourceTypes; [ binaryBytecode ];
maintainers = with maintainers; [ jbedo ];
platforms = platforms.all;
};
}