2019-10-24 22:06:42 +01:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, python3Packages
|
|
|
|
}:
|
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "truvari";
|
2020-09-19 14:04:52 +01:00
|
|
|
version = "2.0.2";
|
2019-10-24 22:06:42 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "spiralgenetics";
|
|
|
|
repo = "truvari";
|
|
|
|
rev = "v${version}";
|
2020-09-19 14:04:52 +01:00
|
|
|
sha256 = "0lp1wnldjv92k4ncga1h0icb0dpjsrx427vggg40x04a7kp9lwx0";
|
2019-10-24 22:06:42 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
pyvcf
|
|
|
|
python-Levenshtein
|
|
|
|
progressbar2
|
|
|
|
pysam
|
|
|
|
pyfaidx
|
|
|
|
intervaltree
|
2020-09-19 14:04:52 +01:00
|
|
|
pytabix
|
|
|
|
acebinf
|
|
|
|
bwapy
|
|
|
|
joblib
|
|
|
|
pandas
|
2019-10-24 22:06:42 +01:00
|
|
|
];
|
|
|
|
|
2020-09-19 14:04:52 +01:00
|
|
|
# no tests
|
|
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "truvari" ];
|
2019-10-24 22:06:42 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Structural variant comparison tool for VCFs";
|
2020-09-19 02:06:32 +01:00
|
|
|
homepage = "https://github.com/spiralgenetics/truvari";
|
2019-10-24 22:06:42 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ scalavision ];
|
|
|
|
longDescription = ''
|
|
|
|
Truvari is a benchmarking tool for comparison sets of SVs.
|
|
|
|
It can calculate the recall, precision, and f-measure of a
|
|
|
|
vcf from a given structural variant caller. The tool
|
|
|
|
is created by Spiral Genetics.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|