about summary refs log tree commit diff
path: root/pkgs/applications/science/biology/paml
diff options
context:
space:
mode:
authorPjotr Prins <pjotr.public01@thebird.nl>2008-06-06 08:23:49 +0000
committerPjotr Prins <pjotr.public01@thebird.nl>2008-06-06 08:23:49 +0000
commitf9e018c80d10f295b16c669decb4e7fec53b0a90 (patch)
treed5c6aa931014844ecc322137d34284a624b57f10 /pkgs/applications/science/biology/paml
parentdfb4b8d51cbb01fbc3cd6f725b9abad0fe54690f (diff)
biology/paml added
svn path=/nixpkgs/trunk/; revision=11997
Diffstat (limited to 'pkgs/applications/science/biology/paml')
-rw-r--r--pkgs/applications/science/biology/paml/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/applications/science/biology/paml/default.nix b/pkgs/applications/science/biology/paml/default.nix
new file mode 100644
index 0000000000000..8e900d7ad3d8e
--- /dev/null
+++ b/pkgs/applications/science/biology/paml/default.nix
@@ -0,0 +1,32 @@
+{stdenv, fetchurl}:
+
+stdenv.mkDerivation {
+  name = "paml";
+  src = fetchurl {
+    url = http://abacus.gene.ucl.ac.uk/software/paml4b.tar.gz;
+    sha256 = "0jm9smbkwycwchv6a98yh5xmfw7167p59zpzi5sjz0ka4y7vp3ib";
+  };
+
+  preBuild = ''
+    cd ./src/
+  '';
+  installPhase = ''
+    mkdir -pv $out/bin
+    cp -v codeml $out/bin 
+    cp -v baseml $out/bin
+    cp -v basemlg $out/bin
+    cp -v chi2 $out/bin
+    cp -v codeml $out/bin
+    cp -v evolver $out/bin
+    cp -v mcmctree $out/bin
+    cp -v pamp $out/bin
+    cp -v yn00 $out/bin
+  '';
+
+  meta = {
+    description     = "Phylogenetic Analysis by Maximum Likelihood (PAML)";
+    longDescription = ''PAML is a package of programs for phylogenetic analyses of DNA or protein sequences using maximum likelihood. It is maintained and distributed for academic use free of charge by Ziheng Yang. ANSI C source codes are distributed for UNIX/Linux/Mac OSX, and executables are provided for MS Windows. PAML is not good for tree making. It may be used to estimate parameters and test hypotheses to study the evolutionary process, when you have reconstructed trees using other programs such as PAUP*, PHYLIP, MOLPHY, PhyML, RaxML, etc.'';
+    license     = "non-commercial";
+    homepage    = http://abacus.gene.ucl.ac.uk/software/paml.html; 
+  };
+}