recipe clairvoyante

Identifying the variants of DNA sequences sensitively and accurately is an important but challenging task in the field of genomics. This task is particularly difficult when dealing with Single Molecule Sequencing, the error rate of which is still tens to hundreds of times higher than Next Generation Sequencing. With the increasing prevalence of Single Molecule Sequencing, an efficient variant caller will not only expedite basic research but also enable various downstream applications. To meet this demand, we developed Clairvoyante, a multi-task five-layer convolutional neural network model for predicting variant type, zygosity, alternative allele and Indel length. On NA12878, Clairvoyante achieved 99.73%, 97.68% and 95.36% accuracy on known variants, and achieved 98.65%, 92.57%, 77.89% F1 score on the whole genome, in Illumina, PacBio, and Oxford Nanopore data, respectively. Training Clairvoyante with a sample and call variant on another shows that Clairvoyante is sample agnostic and general for variant calling. A slim version of Clairvoyante with reduced model parameters produced a much lower F1, suggesting the full model's power in disentangling subtle details in read alignment. Clairvoyante is the first method for Single Molecule Sequencing to finish a whole genome variant calling in two hours on a 28 CPU-core machine, with top-tier accuracy and sensitivity. A toolset was developed to train, utilize and visualize the Clairvoyante model easily, and is publically available here is this repo.

Homepage:

https://github.com/aquaskyline/Clairvoyante

License:

AGPLv3

Recipe:

/clairvoyante/meta.yaml

package clairvoyante

(downloads) docker_clairvoyante

versions:

1.02-21.02-11.02-01.01-11.01-01.0-11.0-0

depends intervaltree:

2.1.0

depends numpy:

1.16.2

depends pypy2.7:

5.10.0

depends python:

2.7.*

depends python-blosc:

1.8.1

depends tensorflow:

1.9.0.*

depends zlib:

1.2.11.*

requirements:

Installation

You need a conda-compatible package manager (currently either micromamba, mamba, or conda) and the Bioconda channel already activated (see set-up-channels).

While any of above package managers is fine, it is currently recommended to use either micromamba or mamba (see here for installation instructions). We will show all commands using mamba below, but the arguments are the same for the two others.

Given that you already have a conda environment in which you want to have this package, install with:

   mamba install clairvoyante

and update with::

   mamba update clairvoyante

To create a new environment, run:

mamba create --name myenvname clairvoyante

with myenvname being a reasonable name for the environment (see e.g. the mamba docs for details and further options).

Alternatively, use the docker container:

   docker pull quay.io/biocontainers/clairvoyante:<tag>

(see `clairvoyante/tags`_ for valid values for ``<tag>``)

Download stats