Merge pull request #221969 from natsukium/trf/init

trf: init at 4.09.1
This commit is contained in:
Nikolay Korotkiy 2023-03-19 17:30:02 +04:00 committed by GitHub
commit feb661ff78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 0 deletions

View File

@ -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;
};
}

View File

@ -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 { };