Skip to content

Commit

Permalink
Merge pull request #221969 from natsukium/trf/init
Browse files Browse the repository at this point in the history
trf: init at 4.09.1
  • Loading branch information
sikmir committed Mar 19, 2023
2 parents eefe9c8 + 21affa5 commit feb661f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
21 changes: 21 additions & 0 deletions pkgs/applications/science/biology/trf/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
pname = "trf";
version = "4.09.1";

src = fetchFromGitHub {
owner = "Benson-Genomics-Lab";
repo = "trf";
rev = "v${version}";
sha256 = "sha256-73LypVqBdlRdDCblf9JNZQmS5Za8xpId4ha5GjTJHDo=";
};

meta = with lib; {
description = "Tandem Repeats Finder: a program to analyze DNA sequences";
homepage = "https://tandem.bu.edu/trf/trf.html";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ natsukium ];
platforms = platforms.unix;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36881,6 +36881,8 @@ with pkgs;

treemix = callPackage ../applications/science/biology/treemix { };

trf = callPackage ../applications/science/biology/trf { };

trimal = callPackage ../applications/science/biology/trimal { };

truvari = callPackage ../applications/science/biology/truvari { };
Expand Down

0 comments on commit feb661f

Please sign in to comment.