mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 01:45:11 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
86 lines
2.1 KiB
Nix
86 lines
2.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, autoreconfHook
|
|
, bash
|
|
, boost
|
|
, bzip2
|
|
, cereal_1_3_2
|
|
, cmake
|
|
, curl
|
|
, fetchFromGitHub
|
|
, jemalloc
|
|
, libgff
|
|
, libiconv
|
|
, libstaden-read
|
|
, pkg-config
|
|
, tbb_2021_8
|
|
, xz
|
|
, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "salmon";
|
|
version = "1.10.3";
|
|
|
|
pufferFishSrc = fetchFromGitHub {
|
|
owner = "COMBINE-lab";
|
|
repo = "pufferfish";
|
|
rev = "salmon-v${finalAttrs.version}";
|
|
hash = "sha256-g4pfNuc620WQ7UDv8PQHVbbTVt78aGVqcHHMszmBIkA=";
|
|
};
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "COMBINE-lab";
|
|
repo = "salmon";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-HGcDqu0XzgrU3erHavigXCoj3VKk82ixMLY10Kk9MW4=";
|
|
};
|
|
|
|
patches = [
|
|
# Use pufferfish source fetched by nix
|
|
./fetch-pufferfish.patch
|
|
];
|
|
|
|
postPatch = "patchShebangs .";
|
|
|
|
buildInputs = [
|
|
(boost.override { enableShared = false; enabledStatic = true; })
|
|
bzip2
|
|
cereal_1_3_2
|
|
curl
|
|
jemalloc
|
|
libgff
|
|
libstaden-read
|
|
tbb_2021_8
|
|
xz
|
|
zlib
|
|
] ++ lib.optionals stdenv.isDarwin [ libiconv ];
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
strictDeps = true;
|
|
|
|
meta = {
|
|
description =
|
|
"Tool for quantifying the expression of transcripts using RNA-seq data";
|
|
mainProgram = "salmon";
|
|
longDescription = ''
|
|
Salmon is a tool for quantifying the expression of transcripts
|
|
using RNA-seq data. Salmon uses new algorithms (specifically,
|
|
coupling the concept of quasi-mapping with a two-phase inference
|
|
procedure) to provide accurate expression estimates very quickly
|
|
and while using little memory. Salmon performs its inference using
|
|
an expressive and realistic model of RNA-seq data that takes into
|
|
account experimental attributes and biases commonly observed in
|
|
real RNA-seq data.
|
|
'';
|
|
homepage = "https://combine-lab.github.io/salmon";
|
|
downloadPage = "https://github.com/COMBINE-lab/salmon/releases";
|
|
changelog = "https://github.com/COMBINE-lab/salmon/releases/tag/" +
|
|
"v${finalAttrs.version}";
|
|
license = lib.licenses.gpl3Only;
|
|
platforms = lib.platforms.all;
|
|
maintainers = [ lib.maintainers.kupac ];
|
|
};
|
|
})
|