Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 383578689684
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 51fc0ef8d2f3
Choose a head ref
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Aug 1, 2018

  1. somatic-sniper: init 1.0.5.0 (#43403)

    jbedo authored and xeji committed Aug 1, 2018
    Copy the full SHA
    51fc0ef View commit details
26 changes: 26 additions & 0 deletions pkgs/applications/science/biology/somatic-sniper/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{stdenv, fetchFromGitHub, cmake, zlib, ncurses}:

stdenv.mkDerivation rec {
name = "somatic-sniper-${version}";
version = "1.0.5.0";

src = fetchFromGitHub {
owner = "genome";
repo = "somatic-sniper";
rev = "v${version}";
sha256 = "0lk7p9sp6mp50f6w1nppqhr40fcwy1asw06ivw8w8jvvnwaqf987";
};

patches = [ ./somatic-sniper.patch ];

buildInputs = [ cmake zlib ncurses ];

meta = with stdenv.lib; {
description = "Identify single nucleotide positions that are different between tumor and normal";
license = licenses.mit;
homepage = https://github.com/genome/somatic-sniper;
maintainers = with maintainers; [ jbedo ];
platforms = platforms.linux;
};

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6d5a180..7254292 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -11,7 +11,7 @@ set(CMAKE_MODULE_PATH
)

include(TestHelper)
-include(VersionHelper)
+#include(VersionHelper)
include(ProjectHelper)

# NOTE: for sniper we want the exe suffix to be like 0.7.4, not just 0.7
diff --git a/vendor/samtools.patch b/vendor/samtools.patch
index f173017..654f878 100644
--- a/vendor/samtools.patch
+++ b/vendor/samtools.patch
@@ -6,7 +6,7 @@ diff -Nuar a/Makefile b/Makefile

samtools:lib $(AOBJS)
- $(CC) $(CFLAGS) -o $@ $(AOBJS) -lm $(LIBPATH) $(LIBCURSES) -lz -L. -lbam
-+ $(CC) $(CFLAGS) -o $@ $(AOBJS) -lm $(LIBPATH) $(LIBCURSES) -L. -lbam -lz
++ $(CC) $(CFLAGS) -o $@ $(AOBJS) -lm $(LIBPATH) -lncurses -L. -lbam -lz

razip:razip.o razf.o
$(CC) $(CFLAGS) -o $@ razf.o razip.o -lz
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -20426,6 +20426,8 @@ with pkgs;

snpeff = callPackage ../applications/science/biology/snpeff { };

somatic-sniper = callPackage ../applications/science/biology/somatic-sniper { };

star = callPackage ../applications/science/biology/star { };

varscan = callPackage ../applications/science/biology/varscan { };