1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
{ lib
, stdenv
, boost
, bzip2
, cereal_1_3_2
, cmake
, curl
, fetchFromGitHub
, jemalloc
, libgff
, libiconv
, libstaden-read
, pkg-config
, tbb_2021_11
, 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_11
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 ];
};
})
|