add citation
Note: full documentation is under construction.
If you use Varifier, please cite: https://doi.org/10.1186/s13059-022-02714-x
conda
Prerequisite: conda (and bioconda channel correctly set up)
$ conda install varifier
Docker images are hosted at quay.io.
singularity
Prerequisite: singularity
$ URI="docker://quay.io/iqballab/varifier" $ singularity exec "$URI" varifier --help
The above will use the latest version. If you want to specify a version/commit then use a tag (or commit) like so.
$ TAG="3c8152a" $ URI="docker://quay.io/iqballab/varifier:${TAG}"
docker
Prerequisite: docker
$ docker pull quay.io/iqballab/varifier $ docker run quay.io/iqballab/varifier varifier --help
You can find all the available tags on the quay.io repository.
Dependencies:
paftools.js
k8
Install:
pip3 install .
To verify calls in a VCF file, you will need:
test.vcf
ref.fasta
truth.fasta
Run:
varifier vcf_eval truth.fasta ref.fasta test.vcf out_dir
This makes a new directory called out_dir. The results are in the file summary_stats.json.
out_dir
summary_stats.json
To run the tests, run tox from the root of the repository.
tox
变异校验工具,用于评估基因组组装或变异调用结果的准确性。
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802032778号
varifier
Note: full documentation is under construction.
If you use Varifier, please cite: https://doi.org/10.1186/s13059-022-02714-x
Installation
condaPrerequisite:
conda(and bioconda channel correctly set up)Container
Docker images are hosted at quay.io.
singularityPrerequisite:
singularityThe above will use the latest version. If you want to specify a version/commit then use a tag (or commit) like so.
dockerPrerequisite:
dockerYou can find all the available tags on the quay.io repository.
Local
Dependencies:
paftools.jsandk8in your path. See https://github.com/lh3/minimap2/tree/master/miscInstall:
Usage
To verify calls in a VCF file, you will need:
test.vcf- the VCF file to be testedref.fasta- FASTA file of reference corresponding to the VCF filetruth.fasta- a truth genome FASTA fileRun:
This makes a new directory called
out_dir. The results are in the filesummary_stats.json.Tests
To run the tests, run
toxfrom the root of the repository.