2019-03-26 10:52:26 +00:00
|
|
|
{ stdenv, fetchurl, hmmer, perl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "1.1.1";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "itsx";
|
2019-03-26 10:52:26 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://microbiology.se/sw/ITSx_${version}.tar.gz";
|
|
|
|
sha256 = "0lrmy2n3ax7f208k0k8l3yz0j5cpz05hv4hx1nnxzn0c51z1pc31";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ hmmer perl ];
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
sed -e "s,profileDB = .*,profileDB = \"$out/share/ITSx_db/HMMs\";," -i ITSx
|
|
|
|
sed "3 a \$ENV{\'PATH\'}='${hmmer}/bin:'.\"\$ENV{\'PATH\'}\";" -i ITSx
|
|
|
|
mkdir bin
|
|
|
|
mv ITSx bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/share/doc && cp -a bin $out/
|
|
|
|
cp *pdf $out/share/doc
|
|
|
|
cp -r ITSx_db $out/share
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Improved software detection and extraction of ITS1 and ITS2 from ribosomal ITS sequences of fungi and other eukaryotes for use in environmental sequencing";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://microbiology.se/software/itsx/";
|
2019-03-26 10:52:26 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.bzizou ];
|
2020-07-28 19:48:55 +01:00
|
|
|
platforms = platforms.unix;
|
2019-03-26 10:52:26 +00:00
|
|
|
};
|
|
|
|
}
|