summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2016-11-03 21:58:47 -0400
committerTim Steinbach <tim@nequissimus.com>2016-11-03 21:58:47 -0400
commit6d11e8ed4ca0e501894438cba1241c18a93d7c3d (patch)
treef29783fd819234c24053d9dfd18bfff68d3aad3a /pkgs/applications/science
parent4e9186aaf3e5fca2f3f5e2a774a6f23630eb5e35 (diff)
downloadnixlib-6d11e8ed4ca0e501894438cba1241c18a93d7c3d.tar
nixlib-6d11e8ed4ca0e501894438cba1241c18a93d7c3d.tar.gz
nixlib-6d11e8ed4ca0e501894438cba1241c18a93d7c3d.tar.bz2
nixlib-6d11e8ed4ca0e501894438cba1241c18a93d7c3d.tar.lz
nixlib-6d11e8ed4ca0e501894438cba1241c18a93d7c3d.tar.xz
nixlib-6d11e8ed4ca0e501894438cba1241c18a93d7c3d.tar.zst
nixlib-6d11e8ed4ca0e501894438cba1241c18a93d7c3d.zip
Remove pal2nal
No longer build/exists
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/biology/pal2nal/default.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/applications/science/biology/pal2nal/default.nix b/pkgs/applications/science/biology/pal2nal/default.nix
deleted file mode 100644
index 956f8b07e989..000000000000
--- a/pkgs/applications/science/biology/pal2nal/default.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{stdenv, fetchurl, perl, paml}:
-
-stdenv.mkDerivation {
-  name = "pal2nal-12";
-  src = fetchurl {
-    url = http://coot.embl.de/pal2nal/distribution/pal2nal.v12.tar.gz;
-    sha256 = "1qj9sq5skpa7vyccl9gxc5ls85jwiq8j6mr8wvacz4yhyg0afy04";
-  };
-
-  installPhase = ''
-    mkdir -p $out/bin
-
-    cp -v pal2nal.pl $out/bin 
-
-    mkdir -p $out/doc
-
-    cp -v README $out/doc
-  '';
-
-  meta = {
-    description     = "Program for aligning nucleotide sequences based on an aminoacid alignment";
-    longDescription = ''
-   PAL2NAL is a program that converts a multiple sequence alignment of proteins and the corresponding DNA (or mRNA) sequences into a codon alignment. The program automatically assigns the corresponding codon sequence even if the input DNA sequence has mismatches with the input protein sequence, or contains UTRs, polyA tails. It can also deal with frame shifts in the input alignment, which is suitable for the analysis of pseudogenes. The resulting codon alignment can further be subjected to the calculation of synonymous (KS) and non-synonymous (KA) substitution rates.
-
-If the input is a pair of sequences, PAL2NAL automatically calculates KS and KA by the codeml program in PAML.
-'';
-    license        = "non-commercial";
-    homepage       = http://coot.embl.de/pal2nal/;
-    pkgMaintainer  = "Pjotr Prins";
-  };
-}