summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorPjotr Prins <pjotr.public01@thebird.nl>2008-04-15 09:32:12 +0000
committerPjotr Prins <pjotr.public01@thebird.nl>2008-04-15 09:32:12 +0000
commit849e3eb21c4e99af59faf145b0fa612e4f3b5a33 (patch)
treea721596163f1bd4c4956d833c1392c194114c24e /pkgs/applications/science
parentcb6bb1aaa349ef83e7c9c217bc8a22c56e469fe5 (diff)
biology/clustalw2 package
svn path=/nixpkgs/trunk/; revision=11631
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/biology/clustalw2/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/applications/science/biology/clustalw2/default.nix b/pkgs/applications/science/biology/clustalw2/default.nix
new file mode 100644
index 000000000000..d48b79fa2f8a
--- /dev/null
+++ b/pkgs/applications/science/biology/clustalw2/default.nix
@@ -0,0 +1,20 @@
+{stdenv, fetchurl}:
+
+stdenv.mkDerivation {
+ name = "clustalw2-2.0.5";
+ src = fetchurl {
+ url = ftp://ftp.ebi.ac.uk/pub/software/clustalw2/clustalw-2.0.5-src.tar.gz;
+ sha256 = "0sh40ni53jdnb0pbnlhrfcan8dfsgqi9zsas2z24bhcw71yvn8ba";
+ };
+
+ meta = {
+ description = "General purpose multiple sequence alignment program for DNA or proteins";
+ longDescription = ''ClustalW2 is a general purpose multiple sequence alignment program
+ for DNA or proteins. It produces biologically meaningful multiple sequence alignments
+ of divergent sequences. It calculates the best match for the selected sequences, and
+ lines them up so that the identities, similarities and differences can be seen.
+ Evolutionary relationships can be seen via viewing Cladograms or Phylograms.'';
+ license = "non-commercial";
+ homepage = http://www.ebi.ac.uk/Tools/clustalw2/;
+ };
+}