mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
freebayes: init at 1.1.0
Signed-off-by: zimbatm <zimbatm@zimbatm.com>
This commit is contained in:
parent
af2ecc27fc
commit
59ca5d213f
@ -206,6 +206,7 @@
|
||||
jb55 = "William Casarin <bill@casarin.me>";
|
||||
jbedo = "Justin Bedő <cu@cua0.org>";
|
||||
jcumming = "Jack Cummings <jack@mudshark.org>";
|
||||
jdagilliland = "Jason Gilliland <jdagilliland@gmail.com>";
|
||||
jefdaj = "Jeffrey David Johnson <jefdaj@gmail.com>";
|
||||
jerith666 = "Matt McHenry <github@matt.mchenryfamily.org>";
|
||||
jfb = "James Felix Black <james@yamtime.com>";
|
||||
|
11
pkgs/applications/science/biology/freebayes/builder.sh
Normal file
11
pkgs/applications/science/biology/freebayes/builder.sh
Normal file
@ -0,0 +1,11 @@
|
||||
source $stdenv/setup
|
||||
|
||||
unpackPhase
|
||||
|
||||
cd freebayes-*
|
||||
|
||||
make
|
||||
|
||||
mkdir -p $out/bin
|
||||
cp bin/freebayes bin/bamleftalign $out/bin
|
||||
cp scripts/* $out/bin
|
27
pkgs/applications/science/biology/freebayes/default.nix
Normal file
27
pkgs/applications/science/biology/freebayes/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, gcc, zlib}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "freebayes-${version}";
|
||||
version = "1.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
name = "freebayes-${version}-src";
|
||||
owner = "ekg";
|
||||
repo = "freebayes";
|
||||
rev = "refs/tags/v${version}";
|
||||
sha256 = "0xb8aicb36w9mfs1gq1x7mcp3p82kl7i61d162hfncqzg2npg8rr";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
buildInputs = [ cmake gcc zlib ];
|
||||
|
||||
builder = ./builder.sh;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Bayesian haplotype-based polymorphism discovery and genotyping";
|
||||
license = licenses.mit;
|
||||
homepage = https://github.com/ekg/freebayes;
|
||||
maintainers = with maintainers; [ jdagilliland ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
@ -12994,6 +12994,8 @@ in
|
||||
|
||||
fossil = callPackage ../applications/version-management/fossil { };
|
||||
|
||||
freebayes = callPackage ../applications/science/biology/freebayes { };
|
||||
|
||||
freewheeling = callPackage ../applications/audio/freewheeling { };
|
||||
|
||||
fribid = callPackage ../applications/networking/browsers/mozilla-plugins/fribid { };
|
||||
|
Loading…
Reference in New Issue
Block a user