2008-10-05 11:00:19 +02:00
|
|
|
{stdenv, fetchurl, liblapack}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2012-03-16 18:15:52 +01:00
|
|
|
name = "slr-1.4.2";
|
|
|
|
|
2008-10-05 11:00:19 +02:00
|
|
|
src = fetchurl {
|
2012-03-16 18:15:52 +01:00
|
|
|
url = http://www.ebi.ac.uk/goldman-srv/SLR/download/v1.4.2/slr_source.tgz;
|
|
|
|
sha256 = "03ak7jsz89zism6gx8fr1dwlwjgcmnrr9m6xgqpr0xzikxid02jp";
|
2008-10-05 11:00:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ liblapack ];
|
2012-03-16 18:15:52 +01:00
|
|
|
preConfigure = "mkdir bin; cd src";
|
|
|
|
makeFlags = "-f Makefile.linux";
|
2008-10-05 11:00:19 +02:00
|
|
|
|
|
|
|
meta = {
|
2008-10-07 17:12:06 +02:00
|
|
|
description = "Phylogenetic Analysis by Maximum Likelihood (PAML)";
|
2008-10-05 11:00:19 +02:00
|
|
|
longDescription = ''
|
|
|
|
SLR is a program to detect sites in coding DNA that are unusually conserved and/or unusually variable (that is, evolving under purify or positive selection) by analysing the pattern of changes for an alignment of sequences on an evolutionary tree.
|
|
|
|
'';
|
|
|
|
license = "GPL3";
|
|
|
|
homepage = http://www.ebi.ac.uk/goldman/SLR/;
|
|
|
|
};
|
|
|
|
}
|