summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-06-28 22:00:09 -0400
committerGitHub <noreply@github.com>2018-06-28 22:00:09 -0400
commit574883f6656d503f0495846f4e006d3817e51708 (patch)
treec2f37b3ca5f33fda9aeba90f217cbb49d9c896b4 /pkgs/applications/science
parent82b474f37b19abcf41f1384308de2c872ee30508 (diff)
parent851ab7f323c8d369a7cd7d32bdf3d997ebf88518 (diff)
downloadnixlib-574883f6656d503f0495846f4e006d3817e51708.tar
nixlib-574883f6656d503f0495846f4e006d3817e51708.tar.gz
nixlib-574883f6656d503f0495846f4e006d3817e51708.tar.bz2
nixlib-574883f6656d503f0495846f4e006d3817e51708.tar.lz
nixlib-574883f6656d503f0495846f4e006d3817e51708.tar.xz
nixlib-574883f6656d503f0495846f4e006d3817e51708.tar.zst
nixlib-574883f6656d503f0495846f4e006d3817e51708.zip
Merge pull request #42571 from iimog/hmmer
hmmer: init at 3.1b2
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/biology/hmmer/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/applications/science/biology/hmmer/default.nix b/pkgs/applications/science/biology/hmmer/default.nix
new file mode 100644
index 000000000000..8552aa34c433
--- /dev/null
+++ b/pkgs/applications/science/biology/hmmer/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  version = "3.1b2";
+  name = "hmmer-${version}";
+
+  src = fetchurl {
+    url = "http://eddylab.org/software/hmmer3/${version}/${name}.tar.gz";
+    sha256 = "0djmgc0pfli0jilfx8hql1axhwhqxqb8rxg2r5rg07aw73sfs5nx";
+  };
+
+  meta = with stdenv.lib; {
+    description = "Biosequence analysis using profile hidden Markov models";
+    longDescription = ''
+HMMER is used for searching sequence databases for sequence homologs, and for making sequence alignments. It implements methods using probabilistic models called profile hidden Markov models (profile HMMs).
+
+HMMER is often used together with a profile database, such as Pfam or many of the databases that participate in Interpro. But HMMER can also work with query sequences, not just profiles, just like BLAST. For example, you can search a protein query sequence against a database with phmmer, or do an iterative search with jackhmmer.
+
+HMMER is designed to detect remote homologs as sensitively as possible, relying on the strength of its underlying probability models. In the past, this strength came at significant computational expense, but as of the new HMMER3 project, HMMER is now essentially as fast as BLAST.
+
+HMMER can be downloaded and installed as a command line tool on your own hardware, and now it is also more widely accessible to the scientific community via new search servers at the European Bioinformatics Institute.
+    '';
+    homepage = http://hmmer.org/;
+    license = licenses.gpl3;
+    maintainers = [ maintainers.iimog ];
+    platforms = platforms.linux;
+  };
+}