pax_global_header 0000666 0000000 0000000 00000000064 14147641277 0014527 g ustar 00root root 0000000 0000000 52 comment=ef1cd626a85cfd1c1b7acfca2b5fd5957f2a05f1
delly-0.9.1/ 0000775 0000000 0000000 00000000000 14147641277 0012647 5 ustar 00root root 0000000 0000000 delly-0.9.1/.github/ 0000775 0000000 0000000 00000000000 14147641277 0014207 5 ustar 00root root 0000000 0000000 delly-0.9.1/.github/workflows/ 0000775 0000000 0000000 00000000000 14147641277 0016244 5 ustar 00root root 0000000 0000000 delly-0.9.1/.github/workflows/c-cpp.yml 0000664 0000000 0000000 00000000656 14147641277 0020000 0 ustar 00root root 0000000 0000000 name: C/C++ CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: make
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-gnutls-dev libhts-dev libboost-date-time-dev libboost-program-options-dev libboost-system-dev libboost-filesystem-dev libboost-iostreams-dev
make
delly-0.9.1/.github/workflows/docker.yml 0000664 0000000 0000000 00000001135 14147641277 0020236 0 ustar 00root root 0000000 0000000 name: Docker CI
on:
push:
branches: main
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: dellytools/delly:latest
delly-0.9.1/.gitignore 0000664 0000000 0000000 00000000463 14147641277 0014642 0 ustar 00root root 0000000 0000000 .htslib
*.pyc
*~
# Binaries
bin/
src/delly
src/dellyLR
src/dpe
# Compiled Object files
*.slo
*.lo
*.o
*.obj
# Precompiled Headers
*.gch
*.pch
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# Fortran module files
*.mod
# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Executables
*.exe
*.out
*.app
delly-0.9.1/.gitmodules 0000664 0000000 0000000 00000000152 14147641277 0015022 0 ustar 00root root 0000000 0000000 [submodule "src/htslib"]
path = src/htslib
url = https://github.com/samtools/htslib.git
ignore = dirty
delly-0.9.1/AUTHORS 0000664 0000000 0000000 00000000301 14147641277 0013711 0 ustar 00root root 0000000 0000000 Delly: Integrated structural variant discovery for short- and long-read sequencing.
Delly Project Authors:
Tobias Rausch
Contributors:
Markus Hsi-Yang Fritz
Sascha Meiers
delly-0.9.1/CONTRIBUTING.md 0000664 0000000 0000000 00000002453 14147641277 0015104 0 ustar 00root root 0000000 0000000 Contributing
------------
Thank you for considering contributing to Delly.
Bugs
----
If you have noticed a bug in Delly please search the [issue tracker](https://github.com/dellytools/delly/issues) to see if someone else in the community had already created a ticket. If that is not the case please create one!
I try to fix all bugs as soon as possible but if you want to work on one yourself please consider using the fork and pull request mechanism of github.
Usage questions
---------------
Please consider using the Delly discussion group [delly-users](http://groups.google.com/d/forum/delly-users) for usage and installation questions.
New Features
------------
If you want to suggest a new feature please go ahead and open an [issue](https://github.com/dellytools/delly/issues)!
Roadmap
----------
Delly still lacks an adequate copy-number segmentation algorithm which is currently under development. We also would love to incorporate the alignment viewers, suave and maze, into our [GEAR genomics](https://www.gear-genomics.com) platform ([https://www.gear-genomics.com](https://www.gear-genomics.com)) but currently lack man-power. If you are interested in contributing please get in touch with me, thanks!
delly-0.9.1/CREDITS 0000664 0000000 0000000 00000000424 14147641277 0013667 0 ustar 00root root 0000000 0000000 DELLY: structural variant discovery by integrated paired-end and split-read analysis.
Tobias Rausch, Thomas Zichner, Andreas Schlattl, Adrian M. Stuetz, Vladimir Benes, Jan O. Korbel.
Bioinformatics. 2012 Sep 15;28(18):i333-i339.
https://doi.org/10.1093/bioinformatics/bts378
delly-0.9.1/Dockerfile 0000664 0000000 0000000 00000002040 14147641277 0014635 0 ustar 00root root 0000000 0000000 # use the ubuntu base image
FROM ubuntu:18.04
MAINTAINER Tobias Rausch rausch@embl.de
# install required packages
RUN apt-get update && apt-get install -y \
autoconf \
build-essential \
cmake \
g++ \
gfortran \
git \
libcurl4-gnutls-dev \
hdf5-tools \
libboost-date-time-dev \
libboost-program-options-dev \
libboost-system-dev \
libboost-filesystem-dev \
libboost-iostreams-dev \
libbz2-dev \
libhdf5-dev \
libncurses-dev \
liblzma-dev \
zlib1g-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# set environment
ENV BOOST_ROOT /usr
# install delly
RUN cd /opt \
&& git clone --recursive https://github.com/dellytools/delly.git \
&& cd /opt/delly/ \
&& make STATIC=1 all \
&& make install
# Multi-stage build
FROM alpine:latest
RUN mkdir -p /opt/delly/bin
WORKDIR /opt/delly/bin
COPY --from=0 /opt/delly/bin/delly .
# Workdir
WORKDIR /root/
# Add Delly to PATH
ENV PATH="/opt/delly/bin:${PATH}"
# by default /bin/sh is executed
CMD ["/bin/sh"]
delly-0.9.1/Dockerfile.parallel 0000664 0000000 0000000 00000002127 14147641277 0016436 0 ustar 00root root 0000000 0000000 # use the ubuntu base image
FROM ubuntu:18.04
MAINTAINER Tobias Rausch rausch@embl.de
# install required packages
RUN apt-get update && apt-get install -y \
autoconf \
build-essential \
cmake \
g++ \
gfortran \
git \
libcurl4-gnutls-dev \
hdf5-tools \
libboost-date-time-dev \
libboost-program-options-dev \
libboost-system-dev \
libboost-filesystem-dev \
libboost-iostreams-dev \
libbz2-dev \
libhdf5-dev \
libncurses-dev \
liblzma-dev \
zlib1g-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# set environment
ENV BOOST_ROOT /usr
# install delly
RUN cd /opt \
&& git clone --recursive https://github.com/dellytools/delly.git \
&& cd /opt/delly/ \
&& make STATIC=1 PARALLEL=1 all \
&& make install
# Multi-stage build
FROM alpine:latest
RUN mkdir -p /opt/delly/bin
WORKDIR /opt/delly/bin
COPY --from=0 /opt/delly/bin/delly .
# Workdir
WORKDIR /root/
# Add Delly to PATH
ENV PATH="/opt/delly/bin:${PATH}"
# Set OpenMP threads
ENV OMP_NUM_THREADS 2
# by default /bin/sh is executed
CMD ["/bin/sh"]
delly-0.9.1/LICENSE 0000664 0000000 0000000 00000003034 14147641277 0013654 0 ustar 00root root 0000000 0000000 BSD 3-Clause License
Copyright (c) 2012- European Molecular Biology Laboratory (EMBL)
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
delly-0.9.1/Makefile 0000664 0000000 0000000 00000004034 14147641277 0014310 0 ustar 00root root 0000000 0000000 DEBUG ?= 0
PARALLEL ?= 0
STATIC ?= 0
# Submodules
PWD = $(shell pwd)
EBROOTHTSLIB ?= ${PWD}/src/htslib/
# Install dir
prefix = ${PWD}
exec_prefix = $(prefix)
bindir ?= $(exec_prefix)/bin
# Flags
CXX=g++
CXXFLAGS += -isystem ${EBROOTHTSLIB} -pedantic -W -Wall -Wno-unknown-pragmas -D__STDC_LIMIT_MACROS -fno-strict-aliasing -fpermissive
LDFLAGS += -L${EBROOTHTSLIB} -L${EBROOTHTSLIB}/lib -lboost_iostreams -lboost_filesystem -lboost_system -lboost_program_options -lboost_date_time
# Flags for parallel computation
ifeq (${PARALLEL}, 1)
CXXFLAGS += -fopenmp -DOPENMP
else
CXXFLAGS += -DNOPENMP
endif
# Flags for static compile
ifeq (${STATIC}, 1)
LDFLAGS += -static -static-libgcc -pthread -lhts -lz -llzma -lbz2
else
LDFLAGS += -lhts -lz -llzma -lbz2 -Wl,-rpath,${EBROOTHTSLIB}
endif
# Flags for debugging, profiling and releases
ifeq (${DEBUG}, 1)
CXXFLAGS += -g -O0 -fno-inline -DDEBUG
else ifeq (${DEBUG}, 2)
CXXFLAGS += -g -O0 -fno-inline -DPROFILE
LDFLAGS += -lprofiler -ltcmalloc
else
CXXFLAGS += -O3 -fno-tree-vectorize -DNDEBUG
endif
ifeq (${EBROOTHTSLIB}, ${PWD}/src/htslib/)
SUBMODULES += .htslib
endif
# External sources
HTSLIBSOURCES = $(wildcard src/htslib/*.c) $(wildcard src/htslib/*.h)
SOURCES = $(wildcard src/*.h) $(wildcard src/*.cpp)
# Targets
BUILT_PROGRAMS = src/delly
TARGETS = ${SUBMODULES} ${BUILT_PROGRAMS}
all: $(TARGETS)
.htslib: $(HTSLIBSOURCES)
if [ -r src/htslib/Makefile ]; then cd src/htslib && autoheader && autoconf && ./configure --disable-s3 --disable-gcs --disable-libcurl --disable-plugins && $(MAKE) && $(MAKE) lib-static && cd ../../ && touch .htslib; fi
src/delly: ${SUBMODULES} $(SOURCES)
$(CXX) $(CXXFLAGS) $@.cpp -o $@ $(LDFLAGS)
src/dpe: ${SUBMODULES} $(SOURCES)
$(CXX) $(CXXFLAGS) $@.cpp -o $@ $(LDFLAGS)
install: ${BUILT_PROGRAMS}
mkdir -p ${bindir}
install -p ${BUILT_PROGRAMS} ${bindir}
clean:
if [ -r src/htslib/Makefile ]; then cd src/htslib && $(MAKE) clean; fi
rm -f $(TARGETS) $(TARGETS:=.o) ${SUBMODULES}
distclean: clean
rm -f ${BUILT_PROGRAMS}
.PHONY: clean distclean install all
delly-0.9.1/R/ 0000775 0000000 0000000 00000000000 14147641277 0013050 5 ustar 00root root 0000000 0000000 delly-0.9.1/R/cnv.R 0000664 0000000 0000000 00000002073 14147641277 0013763 0 ustar 00root root 0000000 0000000 library(ggplot2)
library(reshape2)
library(scales)
args = commandArgs(trailingOnly=TRUE)
x = read.table(args[1], header=F)
colnames(x)[1] = c("cnv")
x = melt(x, id.vars=c("cnv"))
x$cn = round(x$value)
if (sum(x$cn > 9)) { x[x$cn > 9,]$cn = 9; }
x$cn = factor(x$cn, levels=0:9)
nsamples = length(unique(x$variable))
nbins = sqrt(nsamples)
if (nbins < 30) { nbins = 30; }
# Plot CNVs
for (CNV in unique(x$cnv)) {
print(CNV)
df = x[x$cnv == CNV,]
p = ggplot(data=df, aes(x=value))
for(i in 0:9) {
p = p + geom_histogram(data=subset(df, cn == i), aes(fill=cn), bins=nbins)
}
p = p + xlab("Copy-number")
p = p + ylab("Count")
p = p + scale_x_continuous(breaks=0:10, labels=comma)
# p = p + scale_fill_manual(values=c("#a6cee3","#1f78b4","#b2df8a","#33a02c","#fb9a99","#e31a1c","#fdbf6f","#ff7f00","#cab2d6","#6a3d9a"), drop=F)
p = p + scale_fill_manual(values=c("#ff7f00", "#1f78b4","#33a02c","#e31a1c","#6a3d9a", "#fdbf6f", "#a6cee3", "#b2df8a", "#fb9a99", "#cab2d6"), drop=F)
p = p + ggtitle(CNV)
ggsave(p, file=paste0(CNV, ".png"), width=24, height=6)
}
delly-0.9.1/R/gcbias.R 0000664 0000000 0000000 00000001332 14147641277 0014422 0 ustar 00root root 0000000 0000000 library(ggplot2)
library(reshape2)
args = commandArgs(trailingOnly=TRUE)
x = read.table(args[1], header=T)
x = read.table("gc.table", header=T)
x$gc = x$gcsum / (nrow(x)-1)
x$fractionSample = x$fractionSample * 100
x$fractionReference = x$fractionReference * 100
df = melt(x[,c("gc","fractionSample","fractionReference")], id.vars=c("gc"))
# Whole genome
p = ggplot(data=df, aes(x=gc, y=value))
p = p + geom_bar(aes(color=variable, fill=variable), stat="identity")
p = p + xlab("GC content")
p = p + ylab("Obs / Exp")
p = p + ylim(0, max(max(x$obsexp), max(x$fractionSample + x$fractionReference)))
p = p + geom_line(data=x, aes(x=gc, y=obsexp), color="black")
ggsave(p, file="gcbias.png", width=12, height=6)
print(warnings())
delly-0.9.1/R/rd.R 0000664 0000000 0000000 00000004124 14147641277 0013601 0 ustar 00root root 0000000 0000000 library(ggplot2)
library(scales)
library(gtable)
library(grid)
chrNamesLong = c("chr1","chr2","chr3","chr4","chr5","chr6","chr7","chr8","chr9","chr10","chr11","chr12","chr13","chr14","chr15","chr16","chr17","chr18","chr19","chr20", "chr21", "chr22", "chrX")
chrNamesShort = c("1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","X")
args = commandArgs(trailingOnly=TRUE)
x = read.table(args[1], header=T)
maxCN = 8
seg = data.frame()
if (length(args)>1) {
seg = read.table(args[2], header=F, sep="\t")
colnames(seg) = c("chr", "start", "end", "id", "cn")
}
# Fix chromosome ordering
if (sum(x$chr %in% chrNamesLong) > sum(x$chr %in% chrNamesShort)) { chrs = chrNamesLong; } else { chrs = chrNamesShort; }
x = x[x$chr %in% chrs,]
x$chr = factor(x$chr, levels=chrs)
if (nrow(seg) > 0) {
seg = seg[seg$chr %in% chrs,]
seg$chr = factor(seg$chr, levels=chrs)
}
# Whole genome
p = ggplot(data=x, aes(x=start, y=x[,6]))
p = p + geom_point(pch=21, color="black", fill="black", size=0.5)
p = p + xlab("Chromosome")
p = p + ylab("Copy-number")
p = p + scale_x_continuous(labels=comma)
if (nrow(seg)) { p = p + geom_segment(data=seg, aes(x=start, y=cn, xend=end, yend=cn), color="#31a354", size=1.2); }
p = p + facet_grid(. ~ chr, scales="free_x", space="free_x")
p = p + ylim(0, maxCN)
p = p + theme(axis.text.x = element_text(angle=45, hjust=1))
ggsave(p, file="plot.wholegenome.png", width=24, height=6)
print(warnings())
# By chromosome
for(chrname in unique(x$chr)) {
print(chrname)
sub = x[x$chr == chrname,]
sl = seg[seg$chr == chrname,]
p = ggplot(data=sub, aes(x=start, y=sub[,6]))
p = p + geom_point(pch=21, color="black", fill="black", size=0.5)
p = p + ylab("Copy-number") + xlab(chrname)
p = p + scale_x_continuous(labels=comma, breaks = scales::pretty_breaks(n=20))
if (nrow(sl)) { p = p + geom_segment(data=sl, aes(x=start, y=cn, xend=end, yend=cn), color="#31a354", size=1.2); }
p = p + ylim(0, maxCN)
p = p + theme(axis.text.x = element_text(angle=45, hjust=1))
ggsave(p, file=paste0("plot.", chrname, ".png"), width=24, height=6)
print(warnings())
}
delly-0.9.1/README.md 0000664 0000000 0000000 00000027506 14147641277 0014140 0 ustar 00root root 0000000 0000000
Delly
[](http://bioconda.github.io/recipes/delly/README.html)
[](https://anaconda.org/bioconda/delly)
[](https://github.com/dellytools/delly/actions)
[](https://hub.docker.com/r/dellytools/delly/)
[](https://github.com/dellytools/delly/blob/master/LICENSE)
[](https://github.com/dellytools/delly/releases)
Delly is an integrated structural variant (SV) prediction method that can discover, genotype and visualize deletions, tandem duplications, inversions and translocations at single-nucleotide resolution in short-read massively parallel sequencing data. It uses paired-ends, split-reads and read-depth to sensitively and accurately delineate genomic rearrangements throughout the genome. Structural variants can be annotated using [Delly-sansa](https://github.com/dellytools/sansa) and visualized using [Delly-maze](https://github.com/dellytools/maze) or [Delly-suave](https://github.com/dellytools/suave).
Installing Delly
----------------
The easiest way to get Delly is to download a statically linked binary or the singularity container (SIF file) from the [Delly github release page](https://github.com/dellytools/delly/releases/). Alternatively, you can download Delly from [Bioconda](https://anaconda.org/bioconda/delly). You can also build Delly from source using a recursive clone and make.
`git clone --recursive https://github.com/dellytools/delly.git`
`cd delly/`
`make all`
There is a Delly discussion group [delly-users](http://groups.google.com/d/forum/delly-users) for usage and installation questions and a dockerized [delly](https://hub.docker.com/r/dellytools/delly/).
Delly multi-threading mode
--------------------------
Delly supports parallel computing using the OpenMP API (www.openmp.org).
`make PARALLEL=1 -B src/delly`
You can set the number of threads using the environment variable OMP_NUM_THREADS.
`export OMP_NUM_THREADS=2`
Delly primarily parallelizes on the sample level. Hence, OMP_NUM_THREADS should be always smaller or equal to the number of input samples.
Running Delly
-------------
Delly needs a sorted, indexed and duplicate marked bam file for every input sample. An indexed reference genome is required to identify split-reads. The output is in [BCF](http://samtools.github.io/bcftools/) format with a csi index. Delly supports germline and somatic SV discovery, genotyping and filtering. Because of that, Delly has been modularized and common workflows for germline and somatic SV calling are outlined below. If you do need VCF output you need a recent version of [BCFtools](http://samtools.github.io/bcftools/) for file conversion
.
`delly call -x hg19.excl -o delly.bcf -g hg19.fa input.bam`
`bcftools view delly.bcf > delly.vcf`
Somatic SV calling
------------------
* At least one tumor sample and a matched control sample are required for SV discovery
`delly call -x hg19.excl -o t1.bcf -g hg19.fa tumor1.bam control1.bam`
* Somatic pre-filtering requires a tab-delimited sample description file where the first column is the sample id (as in the VCF/BCF file) and the second column is either tumor or control.
`delly filter -f somatic -o t1.pre.bcf -s samples.tsv t1.bcf`
* Genotype pre-filtered somatic sites across a larger panel of control samples to efficiently filter false postives and germline SVs. For performance reasons, this can be run in parallel for each sample of the control panel and you may want to combine multiple pre-filtered somatic site lists from multiple tumor samples.
`delly call -g hg19.fa -v t1.pre.bcf -o geno.bcf -x hg19.excl tumor1.bam control1.bam ... controlN.bam`
* Post-filter for somatic SVs using all control samples.
`delly filter -f somatic -o t1.somatic.bcf -s samples.tsv geno.bcf`
Germline SV calling
-------------------
* SV calling is done by sample for high-coverage genomes or in small batches for low-coverage genomes
`delly call -g hg19.fa -o s1.bcf -x hg19.excl sample1.bam`
* Merge SV sites into a unified site list
`delly merge -o sites.bcf s1.bcf s2.bcf ... sN.bcf`
* Genotype this merged SV site list across all samples. This can be run in parallel for each sample.
`delly call -g hg19.fa -v sites.bcf -o s1.geno.bcf -x hg19.excl s1.bam`
`delly call -g hg19.fa -v sites.bcf -o sN.geno.bcf -x hg19.excl sN.bam`
* Merge all genotyped samples to get a single VCF/BCF using bcftools merge
`bcftools merge -m id -O b -o merged.bcf s1.geno.bcf s2.geno.bcf ... sN.geno.bcf`
* Apply the germline SV filter which requires at least 20 unrelated samples
`delly filter -f germline -o germline.bcf merged.bcf`
Delly for long reads from PacBio or ONT
---------------------------------------
Delly also has a long-read (lr) SV discovery mode.
`delly lr -y ont -g hg19.fa -x hg19.excl input.bam`
`delly lr -y pb -g hg19.fa -x hg19.excl input.bam`
Read-depth profiles
-------------------
You can generate read-depth profiles with delly. This requires a mappability map which can be downloaded here:
[Mappability Maps](https://gear.embl.de/data/delly/)
The command to count reads in 10kbp mappable windows and normalize the coverage is:
`delly cnv -a -g hg19.fa -m hg19.map input.bam`
The output file `out.cov.gz` can be plotted using [R](https://www.r-project.org/) to generate normalized copy-number profiles:
`Rscript R/rd.R out.cov.gz`
Copy-number segmentation
------------------------
Read-depth profiles can also be segmented at the same time.
`delly cnv -a -u -g hg19.fa -m hg19.map input.bam`
The segmentation is in VCF format but you can extract a BED-like file using bcftools.
`bcftools query -f "%CHROM\t%POS\t%INFO/END\t%ID\t[%RDCN]\n" cnv.bcf > segmentation.bed`
Plotting:
`Rscript R/rd.R out.cov.gz segmentation.bed`
Germline CNV calling
--------------------
Delly uses GC and mappability fragment correction to call CNVs. This requires a [mappability map](https://gear.embl.de/data/delly/).
* Call CNVs for each sample and optionally refine breakpoints using delly SV calls
`delly cnv -o c1.bcf -g hg19.fa -m hg19.map -l delly.sv.bcf input.bam`
* Merge CNVs into a unified site list
`delly merge -e -p -o sites.bcf -m 1000 -n 100000 c1.bcf c2.bcf ... cN.bcf`
* Genotype CNVs for each sample
`delly cnv -u -v sites.bcf -g hg19.fa -m hg19.map -o geno1.bcf input.bam`
* Merge genotypes using [bcftools](https://github.com/samtools/bcftools)
`bcftools merge -m id -O b -o merged.bcf geno1.bcf ... genoN.bcf`
* Filter for germline CNVs
`delly classify -f germline -o filtered.bcf merged.bcf`
* Optional: Plot copy-number distribution for large number of samples (>>100)
`bcftools query -f "%ID[\t%RDCN]\n" filtered.bcf > plot.tsv`
`Rscript R/cnv.R plot.tsv`
Somatic copy-number alterations (SCNAs)
---------------------------------------
* For somatic copy-number alterations, delly first segments the tumor genome (`-u` is required). Depending on the coverage, tumor purity and heterogeneity you can adapt parameters `-z`, `-t` and `-x` which control the sensitivity of SCNA detection.
`delly cnv -u -z 10000 -o tumor.bcf -c tumor.cov.gz -g hg19.fa -m hg19.map tumor.bam`
* Then these tumor SCNAs are genotyped in the control sample (`-u` is required).
`delly cnv -u -v tumor.bcf -o control.bcf -g hg19.fa -m hg19.map control.bam`
* The VCF IDs are matched between tumor and control. Thus, you can merge both files using [bcftools](https://github.com/samtools/bcftools).
`bcftools merge -m id -O b -o tumor_control.bcf tumor.bcf control.bcf`
* Somatic filtering requires a tab-delimited sample description file where the first column is the sample id (as in the VCF/BCF file) and the second column is either tumor or control.
`delly classify -p -f somatic -o somatic.bcf -s samples.tsv tumor_control.bcf`
* Optional: Plot the SCNAs using bcftools and R.
`bcftools query -s tumor -f "%CHROM\t%POS\t%INFO/END\t%ID\t[%RDCN]\n" somatic.bcf > segmentation.bed`
`Rscript R/rd.R tumor.cov.gz segmentation.bed`
FAQ
---
* Visualization of SVs
You may want to try out [wally](https://github.com/tobiasrausch/wally) to plot candidate structural variants. The paired-end coloring is explained in [wally's README](https://github.com/tobiasrausch/wally#paired-end-view) file.
* What is the smallest SV size Delly can call?
This depends on the sharpness of the insert size distribution. For an insert size of 200-300bp with a 20-30bp standard deviation, Delly starts to call reliable SVs >=300bp. Delly also supports calling of small InDels using soft-clipped reads only, the smallest SV size called is 15bp.
* Can Delly be used on a non-diploid genome?
Yes and no. The SV site discovery works for any ploidy. However, Delly's genotyping model assumes diploidy (hom. reference, het. and hom. alternative). The CNV calling allows to set the baseline ploidy on the command-line.
* Delly is running too slowly what can I do?
You should exclude telomere and centromere regions and also all unplaced contigs. Delly ships with such an exclude list for human and mouse samples. In addition, you can filter input reads more stringently using -q 20 and -s 15. Lastly, `-z` can be set to 5 for high-coverage data.
* Are non-unique alignments, multi-mappings and/or multiple split-read alignments allowed?
Delly expects two alignment records in the bam file for every paired-end, one for the first and one for the second read. Multiple split-read alignment records of a given read are allowed if and only if one of them is a primary alignment whereas all others are marked as secondary or supplementary (flag 0x0100 or flag 0x0800). This is the default for bwa mem.
* What pre-processing of bam files is required?
Bam files need to be sorted, indexed and ideally duplicate marked.
* Usage/discussion mailing list?
There is a delly discussion group [delly-users](http://groups.google.com/d/forum/delly-users).
* Docker/Singularity support?
There is a dockerized delly available [here](https://hub.docker.com/r/dellytools/delly/) and singularity containers (*.sif files) are part of the [delly release](https://github.com/dellytools/delly/releases).
* How can I compute a mappability map?
A basic mappability map can be built using [dicey](https://github.com/gear-genomics/dicey), [samtools](https://github.com/samtools/samtools) and [bwa](https://github.com/lh3/bwa) with the below commands (as an example for the sacCer3 reference):
```
dicey chop sacCer3.fa
bwa index sacCer3.fa
bwa mem sacCer3.fa read1.fq.gz read2.fq.gz | samtools sort -@ 8 -o srt.bam -
samtools index srt.bam
dicey mappability2 srt.bam
gunzip map.fa.gz && bgzip map.fa && samtools faidx map.fa.gz
```
* Bioconda support?
Delly is available via [bioconda](http://bioconda.github.io/recipes/delly/README.html).
Citation
--------
Tobias Rausch, Thomas Zichner, Andreas Schlattl, Adrian M. Stuetz, Vladimir Benes, Jan O. Korbel.
DELLY: structural variant discovery by integrated paired-end and split-read analysis.
Bioinformatics. 2012 Sep 15;28(18):i333-i339.
[https://doi.org/10.1093/bioinformatics/bts378](https://doi.org/10.1093/bioinformatics/bts378)
License
-------
Delly is distributed under the BSD 3-Clause license. Consult the accompanying [LICENSE](https://github.com/dellytools/delly/blob/master/LICENSE) file for more details.
delly-0.9.1/excludeTemplates/ 0000775 0000000 0000000 00000000000 14147641277 0016157 5 ustar 00root root 0000000 0000000 delly-0.9.1/excludeTemplates/drosophila.dm6.excl.tsv 0000664 0000000 0000000 00000024350 14147641277 0022504 0 ustar 00root root 0000000 0000000 chr4 1200662 1217662 other
chrX 21907215 21907315 other
chrX 22260554 22260654 other
chrX 22281172 22281192 other
chrX 22282923 22314923 other
chrX 22317804 22349804 other
chrX 22354228 22354328 other
chrX 23020991 23021091 other
chrX 23321165 23321265 other
chrX 23356567 23358067 other
chrX 23473918 23474018 other
chrY 1490 8990 other
chrY 22086 22186 other
chrY 22547 22647 other
chrY 83124 83224 other
chrY 87411 87911 other
chrY 88684 88784 other
chrY 110667 110967 other
chrY 124109 124209 other
chrY 137254 137354 other
chrY 137530 137630 other
chrY 138584 146084 other
chrY 148890 148990 other
chrY 200877 203437 other
chrY 234471 234521 other
chrY 240352 240852 other
chrY 242135 242635 other
chrY 260151 260251 other
chrY 285127 285227 other
chrY 350133 350233 other
chrY 352081 352781 other
chrY 353242 353342 other
chrY 473565 473665 other
chrY 497185 497285 other
chrY 509883 509983 other
chrY 522151 530151 other
chrY 531415 535415 other
chrY 557868 557968 other
chrY 561910 562010 other
chrY 564137 564237 other
chrY 564811 572811 other
chrY 573757 581757 other
chrY 582268 582368 other
chrY 629765 629865 other
chrY 631005 633005 other
chrY 641403 648403 other
chrY 650390 650490 other
chrY 652830 652930 other
chrY 656009 656109 other
chrY 671898 671998 other
chrY 846040 846140 other
chrY 846883 846983 other
chrY 847717 847817 other
chrY 848447 848547 other
chrY 849455 849555 other
chrY 850620 850720 other
chrY 851478 851578 other
chrY 852533 852633 other
chrY 853437 853537 other
chrY 855983 856083 other
chrY 856797 856897 other
chrY 857952 858052 other
chrY 858779 858879 other
chrY 859570 859670 other
chrY 861325 861425 other
chrY 862598 862698 other
chrY 866737 866837 other
chrY 868643 868743 other
chrY 869791 869891 other
chrY 872579 872679 other
chrY 873940 874040 other
chrY 875069 875169 other
chrY 877729 877829 other
chrY 879601 879701 other
chrY 880964 881064 other
chrY 882111 882211 other
chrY 883396 883496 other
chrY 886869 886969 other
chrY 888001 888101 other
chrY 889656 889756 other
chrY 895558 895658 other
chrY 897841 897941 other
chrY 899771 899871 other
chrY 902012 902112 other
chrY 904758 904858 other
chrY 907587 907687 other
chrY 908814 908914 other
chrY 912439 912539 other
chrY 914301 914401 other
chrY 916337 916437 other
chrY 918354 918454 other
chrY 922041 922141 other
chrY 924135 924235 other
chrY 925588 925688 other
chrY 927554 927654 other
chrY 929368 929468 other
chrY 931732 931832 other
chrY 933309 933409 other
chrY 936588 936688 other
chrY 939566 939666 other
chrY 942020 942120 other
chrY 943392 943492 other
chrY 945145 945245 other
chrY 946300 946400 other
chrY 947403 947503 other
chrY 948654 948754 other
chrY 951072 951172 other
chrY 952498 952598 other
chrY 955434 955534 other
chrY 958063 958163 other
chrY 959383 959483 other
chrY 960542 968542 other
chrY 970063 970563 other
chrY 971301 971401 other
chrY 973757 973857 other
chrY 976078 976178 other
chrY 977521 977621 other
chrY 979429 979529 other
chrY 980897 980997 other
chrY 983135 983235 other
chrY 986927 987027 other
chrY 988093 988193 other
chrY 992262 992362 other
chrY 995840 995940 other
chrY 998682 998782 other
chrY 1004639 1004739 other
chrY 1009359 1009459 other
chrY 1014100 1014200 other
chrY 1019730 1019830 other
chrY 1029671 1029771 other
chrY 1032946 1033046 other
chrY 1035716 1035816 other
chrY 1039082 1039182 other
chrY 1042549 1050549 other
chrY 1053927 1054027 other
chrY 1164724 1165724 other
chrY 1215120 1215220 other
chrY 1322854 1332854 other
chrY 1416803 1416903 other
chrY 1457079 1457179 other
chrY 1635807 1635907 other
chrY 1638203 1638303 other
chrY 1642583 1642683 other
chrY 1643213 1651213 other
chrY 1651664 1651764 other
chrY 1655357 1655457 other
chrY 1657658 1657758 other
chrY 1664050 1664150 other
chrY 1665409 1665509 other
chrY 1667574 1667674 other
chrY 1747133 1747233 other
chrY 1748407 1748507 other
chrY 1749730 1749830 other
chrY 1751361 1751461 other
chrY 1810720 1810820 other
chrY 1987425 1987475 other
chrY 2004934 2005034 other
chrY 2086956 2087056 other
chrY 2173541 2173554 other
chrY 2404888 2404988 other
chrY 2405775 2411975 other
chrY 2415473 2421673 other
chrY 2422375 2422505 other
chrY 2423783 2423883 other
chrY 2434904 2435104 other
chrY 2436405 2436605 other
chrY 2496120 2496220 other
chrY 2667028 2667128 other
chrY 2829290 2829390 other
chrY 2854073 2859073 other
chrY 2878833 2883833 other
chrY 2886692 2891692 other
chrY 2902230 2907230 other
chrY 2913718 2918718 other
chrY 2935790 2940790 other
chrY 2954430 2959430 other
chrY 2972594 2977594 other
chrY 3011908 3012008 other
chrY 3024026 3024126 other
chrY 3025146 3025246 other
chrY 3026143 3026243 other
chrY 3044454 3044554 other
chrY 3046528 3046628 other
chrY 3056790 3056890 other
chrY 3255043 3255143 other
chrY 3260891 3262891 other
chrY 3284038 3284138 other
chrY 3291605 3293605 other
chrY 3298126 3301826 other
chrY 3303556 3318556 other
chrY 3319442 3323142 other
chrY 3323855 3327555 other
chrY 3328279 3331979 other
chrY 3332699 3336399 other
chrY 3337123 3340823 other
chrY 3341546 3345246 other
chrY 3345950 3349650 other
chrY 3350374 3354074 other
chrY 3354870 3358570 other
chrY 3359286 3362886 other
chrY 3367786 3370886 other
chrY 3371602 3375802 other
chrY 3376984 3377084 other
chrY 3536284 3536384 other
chrY 3560203 3560303 other
chrY 3560504 3561504 other
chrY 3562638 3562738 other
chrY 3565630 3565730 other
chrY 3567184 3567284 other
chrY 3580469 3580569 other
chrY 3581825 3590025 other
chrY 3591385 3595550 other
chrY 3596309 3600474 other
chrY 3641170 3647170 other
chrY 3648134 3648634 other
chrY 3649394 3649494 other
chrY 3652786 3652886 other
chrY 3654376 3654476 other
chrY 3657280 3663280 other
chrY 3664653 3664703 other
chrY 3665041 3665091 other
chrY 3666483 3666583 other
chr2L 21485538 21485638 other
chr2L 22420241 22420341 other
chr2R 4368 4468 other
chr2R 24426 24526 other
chr2R 416884 422884 other
chr2R 748931 749031 other
chr2R 1472350 1472450 other
chr2R 1826183 1826283 other
chr2R 3759567 3759667 other
chr2R 20780707 20780807 other
chr3L 5107766 5114766 other
chr3L 24592984 24593084 other
chr3L 24637105 24637205 other
chr3L 26400914 26401014 other
chr3L 26403999 26406999 other
chr3L 26882321 26936121 other
chr3L 26952525 27006385 other
chr3L 27015779 27015879 other
chr3L 27549160 27549260 other
chr3R 27270 27370 other
chr3R 30824 30924 other
chr3R 44499 50290 other
chr3R 52604 52704 other
chr3R 122625 122725 other
chr3R 168639 168739 other
chr3R 169033 172514 other
chr3R 189145 189245 other
chr3R 268538 268638 other
chr3R 304889 304989 other
chr3R 1461765 1461865 other
chr3R 2409541 2409641 other
chr3R 2446426 2446526 other
chr3R 2488683 2488783 other
chr3R 2492820 2494720 other
chr3R 2498072 2499972 other
chr3R 2515632 2516632 other
chr3R 2519338 2520338 other
chr3R 2522591 2522691 other
chr3R 2527791 2530091 other
chr3R 2536031 2539431 other
chr3R 2543862 2543962 other
chr3R 3033774 3033874 other
chr3R 3169914 3170014 other
chr3R 4009644 4011644 other
chr3R 4012024 4012124 other
chr3R 4174178 4174278 other
chrUn_CP007071v1
chrUn_CP007072v1
chrUn_CP007076v1
chrUn_CP007077v1
chrUn_CP007079v1
chrUn_CP007080v1
chrUn_CP007082v1
chrUn_CP007083v1
chrUn_CP007084v1
chrUn_CP007086v1
chrUn_CP007087v1
chrUn_CP007089v1
chrUn_CP007090v1
chrUn_CP007094v1
chrUn_CP007095v1
chrUn_CP007096v1
chrUn_CP007098v1
chrUn_CP007099v1
chrUn_CP007102v1
chrUn_CP007105v1
chrUn_CP007120v1
chrUn_DS483629v1
chrUn_DS483641v1
chrUn_DS483646v1
chrUn_DS483647v1
chrUn_DS483649v1
chrUn_DS483650v1
chrUn_DS483658v1
chrUn_DS483662v1
chrUn_DS483663v1
chrUn_DS483670v1
chrUn_DS483673v1
chrUn_DS483674v1
chrUn_DS483675v1
chrUn_DS483678v1
chrUn_DS483679v1
chrUn_DS483680v1
chrUn_DS483681v1
chrUn_DS483682v1
chrUn_DS483686v1
chrUn_DS483687v1
chrUn_DS483688v1
chrUn_DS483689v1
chrUn_DS483692v1
chrUn_DS483693v1
chrUn_DS483694v1
chrUn_DS483695v1
chrUn_DS483700v1
chrUn_DS483701v1
chrUn_DS483702v1
chrUn_DS483703v1
chrUn_DS483705v1
chrUn_DS483707v1
chrUn_DS483709v1
chrUn_DS483711v1
chrUn_DS483712v1
chrUn_DS483719v1
chrUn_DS483723v1
chrUn_DS483724v1
chrUn_DS483726v1
chrUn_DS483728v1
chrUn_DS483734v1
chrUn_DS483735v1
chrUn_DS483736v1
chrUn_DS483737v1
chrUn_DS483738v1
chrUn_DS483739v1
chrUn_DS483740v1
chrUn_DS483741v1
chrUn_DS483743v1
chrUn_DS483746v1
chrUn_DS483754v1
chrUn_DS483758v1
chrUn_DS483759v1
chrUn_DS483760v1
chrUn_DS483767v1
chrUn_DS483773v1
chrUn_DS483782v1
chrUn_DS483797v1
chrUn_DS483799v1
chrUn_DS483801v1
chrUn_DS483804v1
chrUn_DS483805v1
chrUn_DS483808v1
chrUn_DS483815v1
chrUn_DS483816v1
chrUn_DS483820v1
chrUn_DS483824v1
chrUn_DS483825v1
chrUn_DS483837v1
chrUn_DS483841v1
chrUn_DS483846v1
chrUn_DS483858v1
chrUn_DS483863v1
chrUn_DS483866v1
chrUn_DS483868v1
chrUn_DS483873v1
chrUn_DS483874v1
chrUn_DS483876v1
chrUn_DS483886v1
chrUn_DS483901v1
chrUn_DS483904v1
chrUn_DS483908v1
chrUn_DS483913v1
chrUn_DS483919v1
chrUn_DS483936v1
chrUn_DS483938v1
chrUn_DS483939v1
chrUn_DS483957v1
chrUn_DS483964v1
chrUn_DS483965v1
chrUn_DS483977v1
chrUn_DS484013v1
chrUn_DS484017v1
chrUn_DS484040v1
chrUn_DS484055v1
chrUn_DS484066v1
chrUn_DS484076v1
chrUn_DS484096v1
chrUn_DS484104v1
chrUn_DS484122v1
chrUn_DS484152v1
chrUn_DS484156v1
chrUn_DS484189v1
chrUn_DS484192v1
chrUn_DS484196v1
chrUn_DS484205v1
chrUn_DS484206v1
chrUn_DS484207v1
chrUn_DS484210v1
chrUn_DS484229v1
chrUn_DS484232v1
chrUn_DS484238v1
chrUn_DS484242v1
chrUn_DS484251v1
chrUn_DS484267v1
chrUn_DS484274v1
chrUn_DS484311v1
chrUn_DS484317v1
chrUn_DS484321v1
chrUn_DS484350v1
chrX_CP007103v1_random
chrX_CP007104v1_random
chrX_DS483648v1_random
chrX_DS483655v1_random
chrX_DS483660v1_random
chrX_DS483665v1_random
chrX_DS483666v1_random
chrX_DS483669v1_random
chrX_DS483685v1_random
chrX_DS483698v1_random
chrX_DS483905v1_random
chrX_DS484002v1_random
chrX_DS484072v1_random
chrX_DS484085v1_random
chrX_DS484088v1_random
chrX_DS484268v1_random
chrX_DS484272v1_random
chrX_DS484293v1_random
chrX_DS484368v1_random
chrY_CP007107v1_random
chrY_CP007108v1_random
chrY_CP007109v1_random
chrY_CP007111v1_random
chrY_CP007112v1_random
chrY_CP007113v1_random
chrY_CP007116v1_random
chrY_CP007118v1_random
chrY_CP007119v1_random
chrY_DS483677v1_random
chrY_DS483690v1_random
chrY_DS483725v1_random
chrY_DS483742v1_random
chrY_DS483778v1_random
chrY_DS483788v1_random
chrY_DS483790v1_random
chrY_DS483959v1_random
chrY_DS483967v1_random
chrY_DS483987v1_random
chrY_DS484043v1_random
chrY_DS484128v1_random
chrY_DS484171v1_random
chrY_DS484197v1_random
chrY_DS484233v1_random
chrY_DS484249v1_random
chrY_DS484266v1_random
delly-0.9.1/excludeTemplates/human.hg19.excl.tsv 0000664 0000000 0000000 00000013376 14147641277 0021540 0 ustar 00root root 0000000 0000000 chr1 0 10000 telomere
chr1 121535434 124535434 centromere
chr1 249240621 249250621 telomere
chr10 0 10000 telomere
chr10 39254935 42254935 centromere
chr10 135524747 135534747 telomere
chr11 0 10000 telomere
chr11 51644205 54644205 centromere
chr11 134996516 135006516 telomere
chr12 0 10000 telomere
chr12 34856694 37856694 centromere
chr12 133841895 133851895 telomere
chr13 0 10000 telomere
chr13 16000000 19000000 centromere
chr13 115159878 115169878 telomere
chr14 0 10000 telomere
chr14 16000000 19000000 centromere
chr14 107339540 107349540 telomere
chr15 0 10000 telomere
chr15 17000000 20000000 centromere
chr15 102521392 102531392 telomere
chr16 0 10000 telomere
chr16 35335801 38335801 centromere
chr16 46380000 46450000 lowcomplexity
chr16 90344753 90354753 telomere
chr17 22263006 25263006 centromere
chr18 0 10000 telomere
chr18 15460898 18460898 centromere
chr18 78067248 78077248 telomere
chr19 0 10000 telomere
chr19 24681782 27681782 centromere
chr19 59118983 59128983 telomere
chr2 0 10000 telomere
chr2 33141000 33142000 lowcomplexity
chr2 92326171 95326171 centromere
chr2 243189373 243199373 telomere
chr20 0 10000 telomere
chr20 26369569 29369569 centromere
chr20 63015520 63025520 telomere
chr21 0 10000 telomere
chr21 11288129 14288129 centromere
chr21 48119895 48129895 telomere
chr22 0 10000 telomere
chr22 13000000 16000000 centromere
chr22 51294566 51304566 telomere
chr3 0 10000 telomere
chr3 90504854 93504854 centromere
chr3 198012430 198022430 telomere
chr4 0 10000 telomere
chr4 49660117 52660117 centromere
chr4 191144276 191154276 telomere
chr5 0 10000 telomere
chr5 46405641 49405641 centromere
chr5 180905260 180915260 telomere
chr6 0 10000 telomere
chr6 58830166 61830166 centromere
chr6 171105067 171115067 telomere
chr7 0 10000 telomere
chr7 58054331 61054331 centromere
chr7 159128663 159138663 telomere
chr8 0 10000 telomere
chr8 43793000 46857000 centromere
chr8 146354022 146364022 telomere
chr9 0 10000 telomere
chr9 47367679 50367679 centromere
chr9 141203431 141213431 telomere
chrX 0 10000 telomere
chrX 58632012 61632012 centromere
chrX 155260560 155270560 telomere
chrY 0 10000 telomere
chrY 10104553 13104553 centromere
chrY 59363566 59373566 telomere
1 0 10000 telomere
1 121535434 124535434 centromere
1 249240621 249250621 telomere
10 0 10000 telomere
10 39254935 42254935 centromere
10 135524747 135534747 telomere
11 0 10000 telomere
11 51644205 54644205 centromere
11 134996516 135006516 telomere
12 0 10000 telomere
12 34856694 37856694 centromere
12 133841895 133851895 telomere
13 0 10000 telomere
13 16000000 19000000 centromere
13 115159878 115169878 telomere
14 0 10000 telomere
14 16000000 19000000 centromere
14 107339540 107349540 telomere
15 0 10000 telomere
15 17000000 20000000 centromere
15 102521392 102531392 telomere
16 0 10000 telomere
16 35335801 38335801 centromere
16 46380000 46450000 lowcomplexity
16 90344753 90354753 telomere
17 22263006 25263006 centromere
18 0 10000 telomere
18 15460898 18460898 centromere
18 78067248 78077248 telomere
19 0 10000 telomere
19 24681782 27681782 centromere
19 59118983 59128983 telomere
2 0 10000 telomere
2 33141000 33142000 lowcomplexity
2 92326171 95326171 centromere
2 243189373 243199373 telomere
20 0 10000 telomere
20 26369569 29369569 centromere
20 63015520 63025520 telomere
21 0 10000 telomere
21 11288129 14288129 centromere
21 48119895 48129895 telomere
22 0 10000 telomere
22 13000000 16000000 centromere
22 51294566 51304566 telomere
3 0 10000 telomere
3 90504854 93504854 centromere
3 198012430 198022430 telomere
4 0 10000 telomere
4 49660117 52660117 centromere
4 191144276 191154276 telomere
5 0 10000 telomere
5 46405641 49405641 centromere
5 180905260 180915260 telomere
6 0 10000 telomere
6 58830166 61830166 centromere
6 171105067 171115067 telomere
7 0 10000 telomere
7 58054331 61054331 centromere
7 159128663 159138663 telomere
8 0 10000 telomere
8 43793000 46857000 centromere
8 146354022 146364022 telomere
9 0 10000 telomere
9 47367679 50367679 centromere
9 141203431 141213431 telomere
X 0 10000 telomere
X 58632012 61632012 centromere
X 155260560 155270560 telomere
Y 0 10000 telomere
Y 10104553 13104553 centromere
Y 59363566 59373566 telomere
chrM
chrMT
MT
GL000207.1
GL000226.1
GL000229.1
GL000231.1
GL000210.1
GL000239.1
GL000235.1
GL000201.1
GL000247.1
GL000245.1
GL000197.1
GL000203.1
GL000246.1
GL000249.1
GL000196.1
GL000248.1
GL000244.1
GL000238.1
GL000202.1
GL000234.1
GL000232.1
GL000206.1
GL000240.1
GL000236.1
GL000241.1
GL000243.1
GL000242.1
GL000230.1
GL000237.1
GL000233.1
GL000204.1
GL000198.1
GL000208.1
GL000191.1
GL000227.1
GL000228.1
GL000214.1
GL000221.1
GL000209.1
GL000218.1
GL000220.1
GL000213.1
GL000211.1
GL000199.1
GL000217.1
GL000216.1
GL000215.1
GL000205.1
GL000219.1
GL000224.1
GL000223.1
GL000195.1
GL000212.1
GL000222.1
GL000200.1
GL000193.1
GL000194.1
GL000225.1
GL000192.1
NC_007605
hs37d5
chr11_gl000202_random
chr17_gl000203_random
chr17_gl000204_random
chr17_gl000205_random
chr17_gl000206_random
chr18_gl000207_random
chr19_gl000208_random
chr19_gl000209_random
chr1_gl000191_random
chr1_gl000192_random
chr21_gl000210_random
chr4_gl000193_random
chr4_gl000194_random
chr7_gl000195_random
chr8_gl000196_random
chr8_gl000197_random
chr9_gl000198_random
chr9_gl000199_random
chr9_gl000200_random
chr9_gl000201_random
chrUn_gl000211
chrUn_gl000212
chrUn_gl000213
chrUn_gl000214
chrUn_gl000215
chrUn_gl000216
chrUn_gl000217
chrUn_gl000218
chrUn_gl000219
chrUn_gl000220
chrUn_gl000221
chrUn_gl000222
chrUn_gl000223
chrUn_gl000224
chrUn_gl000225
chrUn_gl000226
chrUn_gl000227
chrUn_gl000228
chrUn_gl000229
chrUn_gl000230
chrUn_gl000231
chrUn_gl000232
chrUn_gl000233
chrUn_gl000234
chrUn_gl000235
chrUn_gl000236
chrUn_gl000237
chrUn_gl000238
chrUn_gl000239
chrUn_gl000240
chrUn_gl000241
chrUn_gl000242
chrUn_gl000243
chrUn_gl000244
chrUn_gl000245
chrUn_gl000246
chrUn_gl000247
chrUn_gl000248
chrUn_gl000249
delly-0.9.1/excludeTemplates/human.hg38.excl.tsv 0000664 0000000 0000000 00000244652 14147641277 0021544 0 ustar 00root root 0000000 0000000 chr1 0 10000 telomere
chr1 248946422 248956422 telomere
chr10 0 10000 telomere
chr10 133787422 133797422 telomere
chr11 0 10000 telomere
chr11 135076622 135086622 telomere
chr12 0 10000 telomere
chr12 133265309 133275309 telomere
chr13 0 10000 telomere
chr13 114354328 114364328 telomere
chr14 0 10000 telomere
chr14 107033718 107043718 telomere
chr15 0 10000 telomere
chr15 101981189 101991189 telomere
chr16 0 10000 telomere
chr16 90328345 90338345 telomere
chr17 0 10000 telomere
chr17 83247441 83257441 telomere
chr18 0 10000 telomere
chr18 80363285 80373285 telomere
chr19 0 10000 telomere
chr19 58607616 58617616 telomere
chr2 0 10000 telomere
chr2 242183529 242193529 telomere
chr20 0 10000 telomere
chr20 64434167 64444167 telomere
chr21 0 10000 telomere
chr21 46699983 46709983 telomere
chr22 0 10000 telomere
chr22 50808468 50818468 telomere
chr3 0 10000 telomere
chr3 198285559 198295559 telomere
chr4 0 10000 telomere
chr4 190204555 190214555 telomere
chr5 0 10000 telomere
chr5 181528259 181538259 telomere
chr6 0 10000 telomere
chr6 170795979 170805979 telomere
chr7 0 10000 telomere
chr7 159335973 159345973 telomere
chr8 0 10000 telomere
chr8 145128636 145138636 telomere
chr9 0 10000 telomere
chr9 138384717 138394717 telomere
chrX 0 10000 telomere
chrX 156030895 156040895 telomere
chrY 0 10000 telomere
chrY 57217415 57227415 telomere
1 0 10000 telomere
1 248946422 248956422 telomere
10 0 10000 telomere
10 133787422 133797422 telomere
11 0 10000 telomere
11 135076622 135086622 telomere
12 0 10000 telomere
12 133265309 133275309 telomere
13 0 10000 telomere
13 114354328 114364328 telomere
14 0 10000 telomere
14 107033718 107043718 telomere
15 0 10000 telomere
15 101981189 101991189 telomere
16 0 10000 telomere
16 90328345 90338345 telomere
17 0 10000 telomere
17 83247441 83257441 telomere
18 0 10000 telomere
18 80363285 80373285 telomere
19 0 10000 telomere
19 58607616 58617616 telomere
2 0 10000 telomere
2 242183529 242193529 telomere
20 0 10000 telomere
20 64434167 64444167 telomere
21 0 10000 telomere
21 46699983 46709983 telomere
22 0 10000 telomere
22 50808468 50818468 telomere
3 0 10000 telomere
3 198285559 198295559 telomere
4 0 10000 telomere
4 190204555 190214555 telomere
5 0 10000 telomere
5 181528259 181538259 telomere
6 0 10000 telomere
6 170795979 170805979 telomere
7 0 10000 telomere
7 159335973 159345973 telomere
8 0 10000 telomere
8 145128636 145138636 telomere
9 0 10000 telomere
9 138384717 138394717 telomere
X 0 10000 telomere
X 156030895 156040895 telomere
Y 0 10000 telomere
Y 57217415 57227415 telomere
1 122026460 125184587 centromere
2 92188146 94090557 centromere
3 90772459 93655574 centromere
4 49708101 51743951 centromere
5 46485901 50059807 centromere
6 58553889 59829934 centromere
7 58169654 60828234 centromere
7 61377789 61528020 hetrochromatin
8 44033745 45877265 centromere
9 43236168 45518558 centromere
10 39686683 41593521 centromere
11 51078349 54425074 centromere
12 34769408 37185252 centromere
13 16000001 18051248 centromere
14 16000001 18173523 centromere
15 17000001 19725254 centromere
16 36311159 38280682 centromere
17 22813680 26885980 centromere
18 15460900 20861206 centromere
19 24498981 27190874 centromere
20 26436233 30038348 centromere
21 10864561 12915808 centromere
22 12954789 15054318 centromere
X 58605580 62412542 centromere
Y 10001 2781479 PAR
Y 10316945 10544039 centromere
Y 56887903 57217415 PAR
chr1 122026460 125184587 centromere
chr2 92188146 94090557 centromere
chr3 90772459 93655574 centromere
chr4 49708101 51743951 centromere
chr5 46485901 50059807 centromere
chr6 58553889 59829934 centromere
chr7 58169654 60828234 centromere
chr7 61377789 61528020 hetrochromatin
chr8 44033745 45877265 centromere
chr9 43236168 45518558 centromere
chr10 39686683 41593521 centromere
chr11 51078349 54425074 centromere
chr12 34769408 37185252 centromere
chr13 16000001 18051248 centromere
chr14 16000001 18173523 centromere
chr15 17000001 19725254 centromere
chr16 36311159 38280682 centromere
chr17 22813680 26885980 centromere
chr18 15460900 20861206 centromere
chr19 24498981 27190874 centromere
chr20 26436233 30038348 centromere
chr21 10864561 12915808 centromere
chr22 12954789 15054318 centromere
chrX 58605580 62412542 centromere
chrY 10001 2781479 PAR
chrY 10316945 10544039 centromere
chrY 56887903 57217415 PAR
chr1 125184587 143184587 heterochromatin
chr11 50871348 51078348 heterochromatin
chr13 18051248 18071248 heterochromatin
chr16 38280682 46280682 heterochromatin
chr19 24448980 24498980 heterochromatin
chr19 27190874 27240874 heterochromatin
chr2 90402511 91402511 heterochromatin
chr21 10814560 10864560 heterochromatin
chr7 62456779 62506779 heterochromatin
chr9 45518558 60518558 heterochromatin
chrY 26673214 56673214 heterochromatin
1 125184587 143184587 heterochromatin
11 50871348 51078348 heterochromatin
13 18051248 18071248 heterochromatin
16 38280682 46280682 heterochromatin
19 24448980 24498980 heterochromatin
19 27190874 27240874 heterochromatin
2 90402511 91402511 heterochromatin
21 10814560 10864560 heterochromatin
7 62456779 62506779 heterochromatin
9 45518558 60518558 heterochromatin
Y 26673214 56673214 heterochromatin
chrM
M
chrMT
MT
chr1_GL383518v1_alt
chr1_GL383519v1_alt
chr1_GL383520v2_alt
chr1_KI270706v1_random
chr1_KI270707v1_random
chr1_KI270708v1_random
chr1_KI270709v1_random
chr1_KI270710v1_random
chr1_KI270711v1_random
chr1_KI270712v1_random
chr1_KI270713v1_random
chr1_KI270714v1_random
chr1_KI270759v1_alt
chr1_KI270760v1_alt
chr1_KI270761v1_alt
chr1_KI270762v1_alt
chr1_KI270763v1_alt
chr1_KI270764v1_alt
chr1_KI270765v1_alt
chr1_KI270766v1_alt
chr1_KI270892v1_alt
chr2_GL383521v1_alt
chr2_GL383522v1_alt
chr2_GL582966v2_alt
chr2_KI270715v1_random
chr2_KI270716v1_random
chr2_KI270767v1_alt
chr2_KI270768v1_alt
chr2_KI270769v1_alt
chr2_KI270770v1_alt
chr2_KI270771v1_alt
chr2_KI270772v1_alt
chr2_KI270773v1_alt
chr2_KI270774v1_alt
chr2_KI270775v1_alt
chr2_KI270776v1_alt
chr2_KI270893v1_alt
chr2_KI270894v1_alt
chr3_GL000221v1_random
chr3_GL383526v1_alt
chr3_JH636055v2_alt
chr3_KI270777v1_alt
chr3_KI270778v1_alt
chr3_KI270779v1_alt
chr3_KI270780v1_alt
chr3_KI270781v1_alt
chr3_KI270782v1_alt
chr3_KI270783v1_alt
chr3_KI270784v1_alt
chr3_KI270895v1_alt
chr3_KI270924v1_alt
chr3_KI270934v1_alt
chr3_KI270935v1_alt
chr3_KI270936v1_alt
chr3_KI270937v1_alt
chr4_GL000008v2_random
chr4_GL000257v2_alt
chr4_GL383527v1_alt
chr4_GL383528v1_alt
chr4_KI270785v1_alt
chr4_KI270786v1_alt
chr4_KI270787v1_alt
chr4_KI270788v1_alt
chr4_KI270789v1_alt
chr4_KI270790v1_alt
chr4_KI270896v1_alt
chr4_KI270925v1_alt
chr5_GL000208v1_random
chr5_GL339449v2_alt
chr5_GL383530v1_alt
chr5_GL383531v1_alt
chr5_GL383532v1_alt
chr5_GL949742v1_alt
chr5_KI270791v1_alt
chr5_KI270792v1_alt
chr5_KI270793v1_alt
chr5_KI270794v1_alt
chr5_KI270795v1_alt
chr5_KI270796v1_alt
chr5_KI270897v1_alt
chr5_KI270898v1_alt
chr6_GL000250v2_alt
chr6_GL000251v2_alt
chr6_GL000252v2_alt
chr6_GL000253v2_alt
chr6_GL000254v2_alt
chr6_GL000255v2_alt
chr6_GL000256v2_alt
chr6_GL383533v1_alt
chr6_KB021644v2_alt
chr6_KI270758v1_alt
chr6_KI270797v1_alt
chr6_KI270798v1_alt
chr6_KI270799v1_alt
chr6_KI270800v1_alt
chr6_KI270801v1_alt
chr6_KI270802v1_alt
chr7_GL383534v2_alt
chr7_KI270803v1_alt
chr7_KI270804v1_alt
chr7_KI270805v1_alt
chr7_KI270806v1_alt
chr7_KI270807v1_alt
chr7_KI270808v1_alt
chr7_KI270809v1_alt
chr7_KI270899v1_alt
chr8_KI270810v1_alt
chr8_KI270811v1_alt
chr8_KI270812v1_alt
chr8_KI270813v1_alt
chr8_KI270814v1_alt
chr8_KI270815v1_alt
chr8_KI270816v1_alt
chr8_KI270817v1_alt
chr8_KI270818v1_alt
chr8_KI270819v1_alt
chr8_KI270820v1_alt
chr8_KI270821v1_alt
chr8_KI270822v1_alt
chr8_KI270900v1_alt
chr8_KI270901v1_alt
chr8_KI270926v1_alt
chr9_GL383539v1_alt
chr9_GL383540v1_alt
chr9_GL383541v1_alt
chr9_GL383542v1_alt
chr9_KI270717v1_random
chr9_KI270718v1_random
chr9_KI270719v1_random
chr9_KI270720v1_random
chr9_KI270823v1_alt
chr10_GL383545v1_alt
chr10_GL383546v1_alt
chr10_KI270824v1_alt
chr10_KI270825v1_alt
chr11_GL383547v1_alt
chr11_JH159136v1_alt
chr11_JH159137v1_alt
chr11_KI270721v1_random
chr11_KI270826v1_alt
chr11_KI270827v1_alt
chr11_KI270829v1_alt
chr11_KI270830v1_alt
chr11_KI270831v1_alt
chr11_KI270832v1_alt
chr11_KI270902v1_alt
chr11_KI270903v1_alt
chr11_KI270927v1_alt
chr12_GL383549v1_alt
chr12_GL383550v2_alt
chr12_GL383551v1_alt
chr12_GL383552v1_alt
chr12_GL383553v2_alt
chr12_GL877875v1_alt
chr12_GL877876v1_alt
chr12_KI270833v1_alt
chr12_KI270834v1_alt
chr12_KI270835v1_alt
chr12_KI270836v1_alt
chr12_KI270837v1_alt
chr12_KI270904v1_alt
chr13_KI270838v1_alt
chr13_KI270839v1_alt
chr13_KI270840v1_alt
chr13_KI270841v1_alt
chr13_KI270842v1_alt
chr13_KI270843v1_alt
chr14_GL000009v2_random
chr14_GL000194v1_random
chr14_GL000225v1_random
chr14_KI270722v1_random
chr14_KI270723v1_random
chr14_KI270724v1_random
chr14_KI270725v1_random
chr14_KI270726v1_random
chr14_KI270844v1_alt
chr14_KI270845v1_alt
chr14_KI270846v1_alt
chr14_KI270847v1_alt
chr15_GL383554v1_alt
chr15_GL383555v2_alt
chr15_KI270727v1_random
chr15_KI270848v1_alt
chr15_KI270849v1_alt
chr15_KI270850v1_alt
chr15_KI270851v1_alt
chr15_KI270852v1_alt
chr15_KI270905v1_alt
chr15_KI270906v1_alt
chr16_GL383556v1_alt
chr16_GL383557v1_alt
chr16_KI270728v1_random
chr16_KI270853v1_alt
chr16_KI270854v1_alt
chr16_KI270855v1_alt
chr16_KI270856v1_alt
chr17_GL000205v2_random
chr17_GL000258v2_alt
chr17_GL383563v3_alt
chr17_GL383564v2_alt
chr17_GL383565v1_alt
chr17_GL383566v1_alt
chr17_JH159146v1_alt
chr17_JH159147v1_alt
chr17_JH159148v1_alt
chr17_KI270729v1_random
chr17_KI270730v1_random
chr17_KI270857v1_alt
chr17_KI270858v1_alt
chr17_KI270859v1_alt
chr17_KI270860v1_alt
chr17_KI270861v1_alt
chr17_KI270862v1_alt
chr17_KI270907v1_alt
chr17_KI270908v1_alt
chr17_KI270909v1_alt
chr17_KI270910v1_alt
chr18_GL383567v1_alt
chr18_GL383568v1_alt
chr18_GL383569v1_alt
chr18_GL383570v1_alt
chr18_GL383571v1_alt
chr18_GL383572v1_alt
chr18_KI270863v1_alt
chr18_KI270864v1_alt
chr18_KI270911v1_alt
chr18_KI270912v1_alt
chr19_GL000209v2_alt
chr19_GL383573v1_alt
chr19_GL383574v1_alt
chr19_GL383575v2_alt
chr19_GL383576v1_alt
chr19_GL949746v1_alt
chr19_GL949747v2_alt
chr19_GL949748v2_alt
chr19_GL949749v2_alt
chr19_GL949750v2_alt
chr19_GL949751v2_alt
chr19_GL949752v1_alt
chr19_GL949753v2_alt
chr19_KI270865v1_alt
chr19_KI270866v1_alt
chr19_KI270867v1_alt
chr19_KI270868v1_alt
chr19_KI270882v1_alt
chr19_KI270883v1_alt
chr19_KI270884v1_alt
chr19_KI270885v1_alt
chr19_KI270886v1_alt
chr19_KI270887v1_alt
chr19_KI270888v1_alt
chr19_KI270889v1_alt
chr19_KI270890v1_alt
chr19_KI270891v1_alt
chr19_KI270914v1_alt
chr19_KI270915v1_alt
chr19_KI270916v1_alt
chr19_KI270917v1_alt
chr19_KI270918v1_alt
chr19_KI270919v1_alt
chr19_KI270920v1_alt
chr19_KI270921v1_alt
chr19_KI270922v1_alt
chr19_KI270923v1_alt
chr19_KI270929v1_alt
chr19_KI270930v1_alt
chr19_KI270931v1_alt
chr19_KI270932v1_alt
chr19_KI270933v1_alt
chr19_KI270938v1_alt
chr20_GL383577v2_alt
chr20_KI270869v1_alt
chr20_KI270870v1_alt
chr20_KI270871v1_alt
chr21_GL383578v2_alt
chr21_GL383579v2_alt
chr21_GL383580v2_alt
chr21_GL383581v2_alt
chr21_KI270872v1_alt
chr21_KI270873v1_alt
chr21_KI270874v1_alt
chr22_GL383582v2_alt
chr22_GL383583v2_alt
chr22_KB663609v1_alt
chr22_KI270731v1_random
chr22_KI270732v1_random
chr22_KI270733v1_random
chr22_KI270734v1_random
chr22_KI270735v1_random
chr22_KI270736v1_random
chr22_KI270737v1_random
chr22_KI270738v1_random
chr22_KI270739v1_random
chr22_KI270875v1_alt
chr22_KI270876v1_alt
chr22_KI270877v1_alt
chr22_KI270878v1_alt
chr22_KI270879v1_alt
chr22_KI270928v1_alt
chrUn_GL000195v1
chrUn_GL000213v1
chrUn_GL000214v1
chrUn_GL000216v2
chrUn_GL000218v1
chrUn_GL000219v1
chrUn_GL000220v1
chrUn_GL000224v1
chrUn_GL000226v1
chrUn_KI270302v1
chrUn_KI270303v1
chrUn_KI270304v1
chrUn_KI270305v1
chrUn_KI270310v1
chrUn_KI270311v1
chrUn_KI270312v1
chrUn_KI270315v1
chrUn_KI270316v1
chrUn_KI270317v1
chrUn_KI270320v1
chrUn_KI270322v1
chrUn_KI270329v1
chrUn_KI270330v1
chrUn_KI270333v1
chrUn_KI270334v1
chrUn_KI270335v1
chrUn_KI270336v1
chrUn_KI270337v1
chrUn_KI270338v1
chrUn_KI270340v1
chrUn_KI270362v1
chrUn_KI270363v1
chrUn_KI270364v1
chrUn_KI270366v1
chrUn_KI270371v1
chrUn_KI270372v1
chrUn_KI270373v1
chrUn_KI270374v1
chrUn_KI270375v1
chrUn_KI270376v1
chrUn_KI270378v1
chrUn_KI270379v1
chrUn_KI270381v1
chrUn_KI270382v1
chrUn_KI270383v1
chrUn_KI270384v1
chrUn_KI270385v1
chrUn_KI270386v1
chrUn_KI270387v1
chrUn_KI270388v1
chrUn_KI270389v1
chrUn_KI270390v1
chrUn_KI270391v1
chrUn_KI270392v1
chrUn_KI270393v1
chrUn_KI270394v1
chrUn_KI270395v1
chrUn_KI270396v1
chrUn_KI270411v1
chrUn_KI270412v1
chrUn_KI270414v1
chrUn_KI270417v1
chrUn_KI270418v1
chrUn_KI270419v1
chrUn_KI270420v1
chrUn_KI270422v1
chrUn_KI270423v1
chrUn_KI270424v1
chrUn_KI270425v1
chrUn_KI270429v1
chrUn_KI270435v1
chrUn_KI270438v1
chrUn_KI270442v1
chrUn_KI270448v1
chrUn_KI270465v1
chrUn_KI270466v1
chrUn_KI270467v1
chrUn_KI270468v1
chrUn_KI270507v1
chrUn_KI270508v1
chrUn_KI270509v1
chrUn_KI270510v1
chrUn_KI270511v1
chrUn_KI270512v1
chrUn_KI270515v1
chrUn_KI270516v1
chrUn_KI270517v1
chrUn_KI270518v1
chrUn_KI270519v1
chrUn_KI270521v1
chrUn_KI270522v1
chrUn_KI270528v1
chrUn_KI270529v1
chrUn_KI270530v1
chrUn_KI270538v1
chrUn_KI270539v1
chrUn_KI270544v1
chrUn_KI270548v1
chrUn_KI270579v1
chrUn_KI270580v1
chrUn_KI270581v1
chrUn_KI270582v1
chrUn_KI270583v1
chrUn_KI270584v1
chrUn_KI270587v1
chrUn_KI270588v1
chrUn_KI270589v1
chrUn_KI270590v1
chrUn_KI270591v1
chrUn_KI270593v1
chrUn_KI270741v1
chrUn_KI270742v1
chrUn_KI270743v1
chrUn_KI270744v1
chrUn_KI270745v1
chrUn_KI270746v1
chrUn_KI270747v1
chrUn_KI270748v1
chrUn_KI270749v1
chrUn_KI270750v1
chrUn_KI270751v1
chrUn_KI270752v1
chrUn_KI270753v1
chrUn_KI270754v1
chrUn_KI270755v1
chrUn_KI270756v1
chrUn_KI270757v1
chrX_KI270880v1_alt
chrX_KI270881v1_alt
chrX_KI270913v1_alt
chrY_KI270740v1_random
chrEBV
chrUn_KN707606v1_decoy
chrUn_KN707607v1_decoy
chrUn_KN707608v1_decoy
chrUn_KN707609v1_decoy
chrUn_KN707610v1_decoy
chrUn_KN707611v1_decoy
chrUn_KN707612v1_decoy
chrUn_KN707613v1_decoy
chrUn_KN707614v1_decoy
chrUn_KN707615v1_decoy
chrUn_KN707616v1_decoy
chrUn_KN707617v1_decoy
chrUn_KN707618v1_decoy
chrUn_KN707619v1_decoy
chrUn_KN707620v1_decoy
chrUn_KN707621v1_decoy
chrUn_KN707622v1_decoy
chrUn_KN707623v1_decoy
chrUn_KN707624v1_decoy
chrUn_KN707625v1_decoy
chrUn_KN707626v1_decoy
chrUn_KN707627v1_decoy
chrUn_KN707628v1_decoy
chrUn_KN707629v1_decoy
chrUn_KN707630v1_decoy
chrUn_KN707631v1_decoy
chrUn_KN707632v1_decoy
chrUn_KN707633v1_decoy
chrUn_KN707634v1_decoy
chrUn_KN707635v1_decoy
chrUn_KN707636v1_decoy
chrUn_KN707637v1_decoy
chrUn_KN707638v1_decoy
chrUn_KN707639v1_decoy
chrUn_KN707640v1_decoy
chrUn_KN707641v1_decoy
chrUn_KN707642v1_decoy
chrUn_KN707643v1_decoy
chrUn_KN707644v1_decoy
chrUn_KN707645v1_decoy
chrUn_KN707646v1_decoy
chrUn_KN707647v1_decoy
chrUn_KN707648v1_decoy
chrUn_KN707649v1_decoy
chrUn_KN707650v1_decoy
chrUn_KN707651v1_decoy
chrUn_KN707652v1_decoy
chrUn_KN707653v1_decoy
chrUn_KN707654v1_decoy
chrUn_KN707655v1_decoy
chrUn_KN707656v1_decoy
chrUn_KN707657v1_decoy
chrUn_KN707658v1_decoy
chrUn_KN707659v1_decoy
chrUn_KN707660v1_decoy
chrUn_KN707661v1_decoy
chrUn_KN707662v1_decoy
chrUn_KN707663v1_decoy
chrUn_KN707664v1_decoy
chrUn_KN707665v1_decoy
chrUn_KN707666v1_decoy
chrUn_KN707667v1_decoy
chrUn_KN707668v1_decoy
chrUn_KN707669v1_decoy
chrUn_KN707670v1_decoy
chrUn_KN707671v1_decoy
chrUn_KN707672v1_decoy
chrUn_KN707673v1_decoy
chrUn_KN707674v1_decoy
chrUn_KN707675v1_decoy
chrUn_KN707676v1_decoy
chrUn_KN707677v1_decoy
chrUn_KN707678v1_decoy
chrUn_KN707679v1_decoy
chrUn_KN707680v1_decoy
chrUn_KN707681v1_decoy
chrUn_KN707682v1_decoy
chrUn_KN707683v1_decoy
chrUn_KN707684v1_decoy
chrUn_KN707685v1_decoy
chrUn_KN707686v1_decoy
chrUn_KN707687v1_decoy
chrUn_KN707688v1_decoy
chrUn_KN707689v1_decoy
chrUn_KN707690v1_decoy
chrUn_KN707691v1_decoy
chrUn_KN707692v1_decoy
chrUn_KN707693v1_decoy
chrUn_KN707694v1_decoy
chrUn_KN707695v1_decoy
chrUn_KN707696v1_decoy
chrUn_KN707697v1_decoy
chrUn_KN707698v1_decoy
chrUn_KN707699v1_decoy
chrUn_KN707700v1_decoy
chrUn_KN707701v1_decoy
chrUn_KN707702v1_decoy
chrUn_KN707703v1_decoy
chrUn_KN707704v1_decoy
chrUn_KN707705v1_decoy
chrUn_KN707706v1_decoy
chrUn_KN707707v1_decoy
chrUn_KN707708v1_decoy
chrUn_KN707709v1_decoy
chrUn_KN707710v1_decoy
chrUn_KN707711v1_decoy
chrUn_KN707712v1_decoy
chrUn_KN707713v1_decoy
chrUn_KN707714v1_decoy
chrUn_KN707715v1_decoy
chrUn_KN707716v1_decoy
chrUn_KN707717v1_decoy
chrUn_KN707718v1_decoy
chrUn_KN707719v1_decoy
chrUn_KN707720v1_decoy
chrUn_KN707721v1_decoy
chrUn_KN707722v1_decoy
chrUn_KN707723v1_decoy
chrUn_KN707724v1_decoy
chrUn_KN707725v1_decoy
chrUn_KN707726v1_decoy
chrUn_KN707727v1_decoy
chrUn_KN707728v1_decoy
chrUn_KN707729v1_decoy
chrUn_KN707730v1_decoy
chrUn_KN707731v1_decoy
chrUn_KN707732v1_decoy
chrUn_KN707733v1_decoy
chrUn_KN707734v1_decoy
chrUn_KN707735v1_decoy
chrUn_KN707736v1_decoy
chrUn_KN707737v1_decoy
chrUn_KN707738v1_decoy
chrUn_KN707739v1_decoy
chrUn_KN707740v1_decoy
chrUn_KN707741v1_decoy
chrUn_KN707742v1_decoy
chrUn_KN707743v1_decoy
chrUn_KN707744v1_decoy
chrUn_KN707745v1_decoy
chrUn_KN707746v1_decoy
chrUn_KN707747v1_decoy
chrUn_KN707748v1_decoy
chrUn_KN707749v1_decoy
chrUn_KN707750v1_decoy
chrUn_KN707751v1_decoy
chrUn_KN707752v1_decoy
chrUn_KN707753v1_decoy
chrUn_KN707754v1_decoy
chrUn_KN707755v1_decoy
chrUn_KN707756v1_decoy
chrUn_KN707757v1_decoy
chrUn_KN707758v1_decoy
chrUn_KN707759v1_decoy
chrUn_KN707760v1_decoy
chrUn_KN707761v1_decoy
chrUn_KN707762v1_decoy
chrUn_KN707763v1_decoy
chrUn_KN707764v1_decoy
chrUn_KN707765v1_decoy
chrUn_KN707766v1_decoy
chrUn_KN707767v1_decoy
chrUn_KN707768v1_decoy
chrUn_KN707769v1_decoy
chrUn_KN707770v1_decoy
chrUn_KN707771v1_decoy
chrUn_KN707772v1_decoy
chrUn_KN707773v1_decoy
chrUn_KN707774v1_decoy
chrUn_KN707775v1_decoy
chrUn_KN707776v1_decoy
chrUn_KN707777v1_decoy
chrUn_KN707778v1_decoy
chrUn_KN707779v1_decoy
chrUn_KN707780v1_decoy
chrUn_KN707781v1_decoy
chrUn_KN707782v1_decoy
chrUn_KN707783v1_decoy
chrUn_KN707784v1_decoy
chrUn_KN707785v1_decoy
chrUn_KN707786v1_decoy
chrUn_KN707787v1_decoy
chrUn_KN707788v1_decoy
chrUn_KN707789v1_decoy
chrUn_KN707790v1_decoy
chrUn_KN707791v1_decoy
chrUn_KN707792v1_decoy
chrUn_KN707793v1_decoy
chrUn_KN707794v1_decoy
chrUn_KN707795v1_decoy
chrUn_KN707796v1_decoy
chrUn_KN707797v1_decoy
chrUn_KN707798v1_decoy
chrUn_KN707799v1_decoy
chrUn_KN707800v1_decoy
chrUn_KN707801v1_decoy
chrUn_KN707802v1_decoy
chrUn_KN707803v1_decoy
chrUn_KN707804v1_decoy
chrUn_KN707805v1_decoy
chrUn_KN707806v1_decoy
chrUn_KN707807v1_decoy
chrUn_KN707808v1_decoy
chrUn_KN707809v1_decoy
chrUn_KN707810v1_decoy
chrUn_KN707811v1_decoy
chrUn_KN707812v1_decoy
chrUn_KN707813v1_decoy
chrUn_KN707814v1_decoy
chrUn_KN707815v1_decoy
chrUn_KN707816v1_decoy
chrUn_KN707817v1_decoy
chrUn_KN707818v1_decoy
chrUn_KN707819v1_decoy
chrUn_KN707820v1_decoy
chrUn_KN707821v1_decoy
chrUn_KN707822v1_decoy
chrUn_KN707823v1_decoy
chrUn_KN707824v1_decoy
chrUn_KN707825v1_decoy
chrUn_KN707826v1_decoy
chrUn_KN707827v1_decoy
chrUn_KN707828v1_decoy
chrUn_KN707829v1_decoy
chrUn_KN707830v1_decoy
chrUn_KN707831v1_decoy
chrUn_KN707832v1_decoy
chrUn_KN707833v1_decoy
chrUn_KN707834v1_decoy
chrUn_KN707835v1_decoy
chrUn_KN707836v1_decoy
chrUn_KN707837v1_decoy
chrUn_KN707838v1_decoy
chrUn_KN707839v1_decoy
chrUn_KN707840v1_decoy
chrUn_KN707841v1_decoy
chrUn_KN707842v1_decoy
chrUn_KN707843v1_decoy
chrUn_KN707844v1_decoy
chrUn_KN707845v1_decoy
chrUn_KN707846v1_decoy
chrUn_KN707847v1_decoy
chrUn_KN707848v1_decoy
chrUn_KN707849v1_decoy
chrUn_KN707850v1_decoy
chrUn_KN707851v1_decoy
chrUn_KN707852v1_decoy
chrUn_KN707853v1_decoy
chrUn_KN707854v1_decoy
chrUn_KN707855v1_decoy
chrUn_KN707856v1_decoy
chrUn_KN707857v1_decoy
chrUn_KN707858v1_decoy
chrUn_KN707859v1_decoy
chrUn_KN707860v1_decoy
chrUn_KN707861v1_decoy
chrUn_KN707862v1_decoy
chrUn_KN707863v1_decoy
chrUn_KN707864v1_decoy
chrUn_KN707865v1_decoy
chrUn_KN707866v1_decoy
chrUn_KN707867v1_decoy
chrUn_KN707868v1_decoy
chrUn_KN707869v1_decoy
chrUn_KN707870v1_decoy
chrUn_KN707871v1_decoy
chrUn_KN707872v1_decoy
chrUn_KN707873v1_decoy
chrUn_KN707874v1_decoy
chrUn_KN707875v1_decoy
chrUn_KN707876v1_decoy
chrUn_KN707877v1_decoy
chrUn_KN707878v1_decoy
chrUn_KN707879v1_decoy
chrUn_KN707880v1_decoy
chrUn_KN707881v1_decoy
chrUn_KN707882v1_decoy
chrUn_KN707883v1_decoy
chrUn_KN707884v1_decoy
chrUn_KN707885v1_decoy
chrUn_KN707886v1_decoy
chrUn_KN707887v1_decoy
chrUn_KN707888v1_decoy
chrUn_KN707889v1_decoy
chrUn_KN707890v1_decoy
chrUn_KN707891v1_decoy
chrUn_KN707892v1_decoy
chrUn_KN707893v1_decoy
chrUn_KN707894v1_decoy
chrUn_KN707895v1_decoy
chrUn_KN707896v1_decoy
chrUn_KN707897v1_decoy
chrUn_KN707898v1_decoy
chrUn_KN707899v1_decoy
chrUn_KN707900v1_decoy
chrUn_KN707901v1_decoy
chrUn_KN707902v1_decoy
chrUn_KN707903v1_decoy
chrUn_KN707904v1_decoy
chrUn_KN707905v1_decoy
chrUn_KN707906v1_decoy
chrUn_KN707907v1_decoy
chrUn_KN707908v1_decoy
chrUn_KN707909v1_decoy
chrUn_KN707910v1_decoy
chrUn_KN707911v1_decoy
chrUn_KN707912v1_decoy
chrUn_KN707913v1_decoy
chrUn_KN707914v1_decoy
chrUn_KN707915v1_decoy
chrUn_KN707916v1_decoy
chrUn_KN707917v1_decoy
chrUn_KN707918v1_decoy
chrUn_KN707919v1_decoy
chrUn_KN707920v1_decoy
chrUn_KN707921v1_decoy
chrUn_KN707922v1_decoy
chrUn_KN707923v1_decoy
chrUn_KN707924v1_decoy
chrUn_KN707925v1_decoy
chrUn_KN707926v1_decoy
chrUn_KN707927v1_decoy
chrUn_KN707928v1_decoy
chrUn_KN707929v1_decoy
chrUn_KN707930v1_decoy
chrUn_KN707931v1_decoy
chrUn_KN707932v1_decoy
chrUn_KN707933v1_decoy
chrUn_KN707934v1_decoy
chrUn_KN707935v1_decoy
chrUn_KN707936v1_decoy
chrUn_KN707937v1_decoy
chrUn_KN707938v1_decoy
chrUn_KN707939v1_decoy
chrUn_KN707940v1_decoy
chrUn_KN707941v1_decoy
chrUn_KN707942v1_decoy
chrUn_KN707943v1_decoy
chrUn_KN707944v1_decoy
chrUn_KN707945v1_decoy
chrUn_KN707946v1_decoy
chrUn_KN707947v1_decoy
chrUn_KN707948v1_decoy
chrUn_KN707949v1_decoy
chrUn_KN707950v1_decoy
chrUn_KN707951v1_decoy
chrUn_KN707952v1_decoy
chrUn_KN707953v1_decoy
chrUn_KN707954v1_decoy
chrUn_KN707955v1_decoy
chrUn_KN707956v1_decoy
chrUn_KN707957v1_decoy
chrUn_KN707958v1_decoy
chrUn_KN707959v1_decoy
chrUn_KN707960v1_decoy
chrUn_KN707961v1_decoy
chrUn_KN707962v1_decoy
chrUn_KN707963v1_decoy
chrUn_KN707964v1_decoy
chrUn_KN707965v1_decoy
chrUn_KN707966v1_decoy
chrUn_KN707967v1_decoy
chrUn_KN707968v1_decoy
chrUn_KN707969v1_decoy
chrUn_KN707970v1_decoy
chrUn_KN707971v1_decoy
chrUn_KN707972v1_decoy
chrUn_KN707973v1_decoy
chrUn_KN707974v1_decoy
chrUn_KN707975v1_decoy
chrUn_KN707976v1_decoy
chrUn_KN707977v1_decoy
chrUn_KN707978v1_decoy
chrUn_KN707979v1_decoy
chrUn_KN707980v1_decoy
chrUn_KN707981v1_decoy
chrUn_KN707982v1_decoy
chrUn_KN707983v1_decoy
chrUn_KN707984v1_decoy
chrUn_KN707985v1_decoy
chrUn_KN707986v1_decoy
chrUn_KN707987v1_decoy
chrUn_KN707988v1_decoy
chrUn_KN707989v1_decoy
chrUn_KN707990v1_decoy
chrUn_KN707991v1_decoy
chrUn_KN707992v1_decoy
chrUn_JTFH01000001v1_decoy
chrUn_JTFH01000002v1_decoy
chrUn_JTFH01000003v1_decoy
chrUn_JTFH01000004v1_decoy
chrUn_JTFH01000005v1_decoy
chrUn_JTFH01000006v1_decoy
chrUn_JTFH01000007v1_decoy
chrUn_JTFH01000008v1_decoy
chrUn_JTFH01000009v1_decoy
chrUn_JTFH01000010v1_decoy
chrUn_JTFH01000011v1_decoy
chrUn_JTFH01000012v1_decoy
chrUn_JTFH01000013v1_decoy
chrUn_JTFH01000014v1_decoy
chrUn_JTFH01000015v1_decoy
chrUn_JTFH01000016v1_decoy
chrUn_JTFH01000017v1_decoy
chrUn_JTFH01000018v1_decoy
chrUn_JTFH01000019v1_decoy
chrUn_JTFH01000020v1_decoy
chrUn_JTFH01000021v1_decoy
chrUn_JTFH01000022v1_decoy
chrUn_JTFH01000023v1_decoy
chrUn_JTFH01000024v1_decoy
chrUn_JTFH01000025v1_decoy
chrUn_JTFH01000026v1_decoy
chrUn_JTFH01000027v1_decoy
chrUn_JTFH01000028v1_decoy
chrUn_JTFH01000029v1_decoy
chrUn_JTFH01000030v1_decoy
chrUn_JTFH01000031v1_decoy
chrUn_JTFH01000032v1_decoy
chrUn_JTFH01000033v1_decoy
chrUn_JTFH01000034v1_decoy
chrUn_JTFH01000035v1_decoy
chrUn_JTFH01000036v1_decoy
chrUn_JTFH01000037v1_decoy
chrUn_JTFH01000038v1_decoy
chrUn_JTFH01000039v1_decoy
chrUn_JTFH01000040v1_decoy
chrUn_JTFH01000041v1_decoy
chrUn_JTFH01000042v1_decoy
chrUn_JTFH01000043v1_decoy
chrUn_JTFH01000044v1_decoy
chrUn_JTFH01000045v1_decoy
chrUn_JTFH01000046v1_decoy
chrUn_JTFH01000047v1_decoy
chrUn_JTFH01000048v1_decoy
chrUn_JTFH01000049v1_decoy
chrUn_JTFH01000050v1_decoy
chrUn_JTFH01000051v1_decoy
chrUn_JTFH01000052v1_decoy
chrUn_JTFH01000053v1_decoy
chrUn_JTFH01000054v1_decoy
chrUn_JTFH01000055v1_decoy
chrUn_JTFH01000056v1_decoy
chrUn_JTFH01000057v1_decoy
chrUn_JTFH01000058v1_decoy
chrUn_JTFH01000059v1_decoy
chrUn_JTFH01000060v1_decoy
chrUn_JTFH01000061v1_decoy
chrUn_JTFH01000062v1_decoy
chrUn_JTFH01000063v1_decoy
chrUn_JTFH01000064v1_decoy
chrUn_JTFH01000065v1_decoy
chrUn_JTFH01000066v1_decoy
chrUn_JTFH01000067v1_decoy
chrUn_JTFH01000068v1_decoy
chrUn_JTFH01000069v1_decoy
chrUn_JTFH01000070v1_decoy
chrUn_JTFH01000071v1_decoy
chrUn_JTFH01000072v1_decoy
chrUn_JTFH01000073v1_decoy
chrUn_JTFH01000074v1_decoy
chrUn_JTFH01000075v1_decoy
chrUn_JTFH01000076v1_decoy
chrUn_JTFH01000077v1_decoy
chrUn_JTFH01000078v1_decoy
chrUn_JTFH01000079v1_decoy
chrUn_JTFH01000080v1_decoy
chrUn_JTFH01000081v1_decoy
chrUn_JTFH01000082v1_decoy
chrUn_JTFH01000083v1_decoy
chrUn_JTFH01000084v1_decoy
chrUn_JTFH01000085v1_decoy
chrUn_JTFH01000086v1_decoy
chrUn_JTFH01000087v1_decoy
chrUn_JTFH01000088v1_decoy
chrUn_JTFH01000089v1_decoy
chrUn_JTFH01000090v1_decoy
chrUn_JTFH01000091v1_decoy
chrUn_JTFH01000092v1_decoy
chrUn_JTFH01000093v1_decoy
chrUn_JTFH01000094v1_decoy
chrUn_JTFH01000095v1_decoy
chrUn_JTFH01000096v1_decoy
chrUn_JTFH01000097v1_decoy
chrUn_JTFH01000098v1_decoy
chrUn_JTFH01000099v1_decoy
chrUn_JTFH01000100v1_decoy
chrUn_JTFH01000101v1_decoy
chrUn_JTFH01000102v1_decoy
chrUn_JTFH01000103v1_decoy
chrUn_JTFH01000104v1_decoy
chrUn_JTFH01000105v1_decoy
chrUn_JTFH01000106v1_decoy
chrUn_JTFH01000107v1_decoy
chrUn_JTFH01000108v1_decoy
chrUn_JTFH01000109v1_decoy
chrUn_JTFH01000110v1_decoy
chrUn_JTFH01000111v1_decoy
chrUn_JTFH01000112v1_decoy
chrUn_JTFH01000113v1_decoy
chrUn_JTFH01000114v1_decoy
chrUn_JTFH01000115v1_decoy
chrUn_JTFH01000116v1_decoy
chrUn_JTFH01000117v1_decoy
chrUn_JTFH01000118v1_decoy
chrUn_JTFH01000119v1_decoy
chrUn_JTFH01000120v1_decoy
chrUn_JTFH01000121v1_decoy
chrUn_JTFH01000122v1_decoy
chrUn_JTFH01000123v1_decoy
chrUn_JTFH01000124v1_decoy
chrUn_JTFH01000125v1_decoy
chrUn_JTFH01000126v1_decoy
chrUn_JTFH01000127v1_decoy
chrUn_JTFH01000128v1_decoy
chrUn_JTFH01000129v1_decoy
chrUn_JTFH01000130v1_decoy
chrUn_JTFH01000131v1_decoy
chrUn_JTFH01000132v1_decoy
chrUn_JTFH01000133v1_decoy
chrUn_JTFH01000134v1_decoy
chrUn_JTFH01000135v1_decoy
chrUn_JTFH01000136v1_decoy
chrUn_JTFH01000137v1_decoy
chrUn_JTFH01000138v1_decoy
chrUn_JTFH01000139v1_decoy
chrUn_JTFH01000140v1_decoy
chrUn_JTFH01000141v1_decoy
chrUn_JTFH01000142v1_decoy
chrUn_JTFH01000143v1_decoy
chrUn_JTFH01000144v1_decoy
chrUn_JTFH01000145v1_decoy
chrUn_JTFH01000146v1_decoy
chrUn_JTFH01000147v1_decoy
chrUn_JTFH01000148v1_decoy
chrUn_JTFH01000149v1_decoy
chrUn_JTFH01000150v1_decoy
chrUn_JTFH01000151v1_decoy
chrUn_JTFH01000152v1_decoy
chrUn_JTFH01000153v1_decoy
chrUn_JTFH01000154v1_decoy
chrUn_JTFH01000155v1_decoy
chrUn_JTFH01000156v1_decoy
chrUn_JTFH01000157v1_decoy
chrUn_JTFH01000158v1_decoy
chrUn_JTFH01000159v1_decoy
chrUn_JTFH01000160v1_decoy
chrUn_JTFH01000161v1_decoy
chrUn_JTFH01000162v1_decoy
chrUn_JTFH01000163v1_decoy
chrUn_JTFH01000164v1_decoy
chrUn_JTFH01000165v1_decoy
chrUn_JTFH01000166v1_decoy
chrUn_JTFH01000167v1_decoy
chrUn_JTFH01000168v1_decoy
chrUn_JTFH01000169v1_decoy
chrUn_JTFH01000170v1_decoy
chrUn_JTFH01000171v1_decoy
chrUn_JTFH01000172v1_decoy
chrUn_JTFH01000173v1_decoy
chrUn_JTFH01000174v1_decoy
chrUn_JTFH01000175v1_decoy
chrUn_JTFH01000176v1_decoy
chrUn_JTFH01000177v1_decoy
chrUn_JTFH01000178v1_decoy
chrUn_JTFH01000179v1_decoy
chrUn_JTFH01000180v1_decoy
chrUn_JTFH01000181v1_decoy
chrUn_JTFH01000182v1_decoy
chrUn_JTFH01000183v1_decoy
chrUn_JTFH01000184v1_decoy
chrUn_JTFH01000185v1_decoy
chrUn_JTFH01000186v1_decoy
chrUn_JTFH01000187v1_decoy
chrUn_JTFH01000188v1_decoy
chrUn_JTFH01000189v1_decoy
chrUn_JTFH01000190v1_decoy
chrUn_JTFH01000191v1_decoy
chrUn_JTFH01000192v1_decoy
chrUn_JTFH01000193v1_decoy
chrUn_JTFH01000194v1_decoy
chrUn_JTFH01000195v1_decoy
chrUn_JTFH01000196v1_decoy
chrUn_JTFH01000197v1_decoy
chrUn_JTFH01000198v1_decoy
chrUn_JTFH01000199v1_decoy
chrUn_JTFH01000200v1_decoy
chrUn_JTFH01000201v1_decoy
chrUn_JTFH01000202v1_decoy
chrUn_JTFH01000203v1_decoy
chrUn_JTFH01000204v1_decoy
chrUn_JTFH01000205v1_decoy
chrUn_JTFH01000206v1_decoy
chrUn_JTFH01000207v1_decoy
chrUn_JTFH01000208v1_decoy
chrUn_JTFH01000209v1_decoy
chrUn_JTFH01000210v1_decoy
chrUn_JTFH01000211v1_decoy
chrUn_JTFH01000212v1_decoy
chrUn_JTFH01000213v1_decoy
chrUn_JTFH01000214v1_decoy
chrUn_JTFH01000215v1_decoy
chrUn_JTFH01000216v1_decoy
chrUn_JTFH01000217v1_decoy
chrUn_JTFH01000218v1_decoy
chrUn_JTFH01000219v1_decoy
chrUn_JTFH01000220v1_decoy
chrUn_JTFH01000221v1_decoy
chrUn_JTFH01000222v1_decoy
chrUn_JTFH01000223v1_decoy
chrUn_JTFH01000224v1_decoy
chrUn_JTFH01000225v1_decoy
chrUn_JTFH01000226v1_decoy
chrUn_JTFH01000227v1_decoy
chrUn_JTFH01000228v1_decoy
chrUn_JTFH01000229v1_decoy
chrUn_JTFH01000230v1_decoy
chrUn_JTFH01000231v1_decoy
chrUn_JTFH01000232v1_decoy
chrUn_JTFH01000233v1_decoy
chrUn_JTFH01000234v1_decoy
chrUn_JTFH01000235v1_decoy
chrUn_JTFH01000236v1_decoy
chrUn_JTFH01000237v1_decoy
chrUn_JTFH01000238v1_decoy
chrUn_JTFH01000239v1_decoy
chrUn_JTFH01000240v1_decoy
chrUn_JTFH01000241v1_decoy
chrUn_JTFH01000242v1_decoy
chrUn_JTFH01000243v1_decoy
chrUn_JTFH01000244v1_decoy
chrUn_JTFH01000245v1_decoy
chrUn_JTFH01000246v1_decoy
chrUn_JTFH01000247v1_decoy
chrUn_JTFH01000248v1_decoy
chrUn_JTFH01000249v1_decoy
chrUn_JTFH01000250v1_decoy
chrUn_JTFH01000251v1_decoy
chrUn_JTFH01000252v1_decoy
chrUn_JTFH01000253v1_decoy
chrUn_JTFH01000254v1_decoy
chrUn_JTFH01000255v1_decoy
chrUn_JTFH01000256v1_decoy
chrUn_JTFH01000257v1_decoy
chrUn_JTFH01000258v1_decoy
chrUn_JTFH01000259v1_decoy
chrUn_JTFH01000260v1_decoy
chrUn_JTFH01000261v1_decoy
chrUn_JTFH01000262v1_decoy
chrUn_JTFH01000263v1_decoy
chrUn_JTFH01000264v1_decoy
chrUn_JTFH01000265v1_decoy
chrUn_JTFH01000266v1_decoy
chrUn_JTFH01000267v1_decoy
chrUn_JTFH01000268v1_decoy
chrUn_JTFH01000269v1_decoy
chrUn_JTFH01000270v1_decoy
chrUn_JTFH01000271v1_decoy
chrUn_JTFH01000272v1_decoy
chrUn_JTFH01000273v1_decoy
chrUn_JTFH01000274v1_decoy
chrUn_JTFH01000275v1_decoy
chrUn_JTFH01000276v1_decoy
chrUn_JTFH01000277v1_decoy
chrUn_JTFH01000278v1_decoy
chrUn_JTFH01000279v1_decoy
chrUn_JTFH01000280v1_decoy
chrUn_JTFH01000281v1_decoy
chrUn_JTFH01000282v1_decoy
chrUn_JTFH01000283v1_decoy
chrUn_JTFH01000284v1_decoy
chrUn_JTFH01000285v1_decoy
chrUn_JTFH01000286v1_decoy
chrUn_JTFH01000287v1_decoy
chrUn_JTFH01000288v1_decoy
chrUn_JTFH01000289v1_decoy
chrUn_JTFH01000290v1_decoy
chrUn_JTFH01000291v1_decoy
chrUn_JTFH01000292v1_decoy
chrUn_JTFH01000293v1_decoy
chrUn_JTFH01000294v1_decoy
chrUn_JTFH01000295v1_decoy
chrUn_JTFH01000296v1_decoy
chrUn_JTFH01000297v1_decoy
chrUn_JTFH01000298v1_decoy
chrUn_JTFH01000299v1_decoy
chrUn_JTFH01000300v1_decoy
chrUn_JTFH01000301v1_decoy
chrUn_JTFH01000302v1_decoy
chrUn_JTFH01000303v1_decoy
chrUn_JTFH01000304v1_decoy
chrUn_JTFH01000305v1_decoy
chrUn_JTFH01000306v1_decoy
chrUn_JTFH01000307v1_decoy
chrUn_JTFH01000308v1_decoy
chrUn_JTFH01000309v1_decoy
chrUn_JTFH01000310v1_decoy
chrUn_JTFH01000311v1_decoy
chrUn_JTFH01000312v1_decoy
chrUn_JTFH01000313v1_decoy
chrUn_JTFH01000314v1_decoy
chrUn_JTFH01000315v1_decoy
chrUn_JTFH01000316v1_decoy
chrUn_JTFH01000317v1_decoy
chrUn_JTFH01000318v1_decoy
chrUn_JTFH01000319v1_decoy
chrUn_JTFH01000320v1_decoy
chrUn_JTFH01000321v1_decoy
chrUn_JTFH01000322v1_decoy
chrUn_JTFH01000323v1_decoy
chrUn_JTFH01000324v1_decoy
chrUn_JTFH01000325v1_decoy
chrUn_JTFH01000326v1_decoy
chrUn_JTFH01000327v1_decoy
chrUn_JTFH01000328v1_decoy
chrUn_JTFH01000329v1_decoy
chrUn_JTFH01000330v1_decoy
chrUn_JTFH01000331v1_decoy
chrUn_JTFH01000332v1_decoy
chrUn_JTFH01000333v1_decoy
chrUn_JTFH01000334v1_decoy
chrUn_JTFH01000335v1_decoy
chrUn_JTFH01000336v1_decoy
chrUn_JTFH01000337v1_decoy
chrUn_JTFH01000338v1_decoy
chrUn_JTFH01000339v1_decoy
chrUn_JTFH01000340v1_decoy
chrUn_JTFH01000341v1_decoy
chrUn_JTFH01000342v1_decoy
chrUn_JTFH01000343v1_decoy
chrUn_JTFH01000344v1_decoy
chrUn_JTFH01000345v1_decoy
chrUn_JTFH01000346v1_decoy
chrUn_JTFH01000347v1_decoy
chrUn_JTFH01000348v1_decoy
chrUn_JTFH01000349v1_decoy
chrUn_JTFH01000350v1_decoy
chrUn_JTFH01000351v1_decoy
chrUn_JTFH01000352v1_decoy
chrUn_JTFH01000353v1_decoy
chrUn_JTFH01000354v1_decoy
chrUn_JTFH01000355v1_decoy
chrUn_JTFH01000356v1_decoy
chrUn_JTFH01000357v1_decoy
chrUn_JTFH01000358v1_decoy
chrUn_JTFH01000359v1_decoy
chrUn_JTFH01000360v1_decoy
chrUn_JTFH01000361v1_decoy
chrUn_JTFH01000362v1_decoy
chrUn_JTFH01000363v1_decoy
chrUn_JTFH01000364v1_decoy
chrUn_JTFH01000365v1_decoy
chrUn_JTFH01000366v1_decoy
chrUn_JTFH01000367v1_decoy
chrUn_JTFH01000368v1_decoy
chrUn_JTFH01000369v1_decoy
chrUn_JTFH01000370v1_decoy
chrUn_JTFH01000371v1_decoy
chrUn_JTFH01000372v1_decoy
chrUn_JTFH01000373v1_decoy
chrUn_JTFH01000374v1_decoy
chrUn_JTFH01000375v1_decoy
chrUn_JTFH01000376v1_decoy
chrUn_JTFH01000377v1_decoy
chrUn_JTFH01000378v1_decoy
chrUn_JTFH01000379v1_decoy
chrUn_JTFH01000380v1_decoy
chrUn_JTFH01000381v1_decoy
chrUn_JTFH01000382v1_decoy
chrUn_JTFH01000383v1_decoy
chrUn_JTFH01000384v1_decoy
chrUn_JTFH01000385v1_decoy
chrUn_JTFH01000386v1_decoy
chrUn_JTFH01000387v1_decoy
chrUn_JTFH01000388v1_decoy
chrUn_JTFH01000389v1_decoy
chrUn_JTFH01000390v1_decoy
chrUn_JTFH01000391v1_decoy
chrUn_JTFH01000392v1_decoy
chrUn_JTFH01000393v1_decoy
chrUn_JTFH01000394v1_decoy
chrUn_JTFH01000395v1_decoy
chrUn_JTFH01000396v1_decoy
chrUn_JTFH01000397v1_decoy
chrUn_JTFH01000398v1_decoy
chrUn_JTFH01000399v1_decoy
chrUn_JTFH01000400v1_decoy
chrUn_JTFH01000401v1_decoy
chrUn_JTFH01000402v1_decoy
chrUn_JTFH01000403v1_decoy
chrUn_JTFH01000404v1_decoy
chrUn_JTFH01000405v1_decoy
chrUn_JTFH01000406v1_decoy
chrUn_JTFH01000407v1_decoy
chrUn_JTFH01000408v1_decoy
chrUn_JTFH01000409v1_decoy
chrUn_JTFH01000410v1_decoy
chrUn_JTFH01000411v1_decoy
chrUn_JTFH01000412v1_decoy
chrUn_JTFH01000413v1_decoy
chrUn_JTFH01000414v1_decoy
chrUn_JTFH01000415v1_decoy
chrUn_JTFH01000416v1_decoy
chrUn_JTFH01000417v1_decoy
chrUn_JTFH01000418v1_decoy
chrUn_JTFH01000419v1_decoy
chrUn_JTFH01000420v1_decoy
chrUn_JTFH01000421v1_decoy
chrUn_JTFH01000422v1_decoy
chrUn_JTFH01000423v1_decoy
chrUn_JTFH01000424v1_decoy
chrUn_JTFH01000425v1_decoy
chrUn_JTFH01000426v1_decoy
chrUn_JTFH01000427v1_decoy
chrUn_JTFH01000428v1_decoy
chrUn_JTFH01000429v1_decoy
chrUn_JTFH01000430v1_decoy
chrUn_JTFH01000431v1_decoy
chrUn_JTFH01000432v1_decoy
chrUn_JTFH01000433v1_decoy
chrUn_JTFH01000434v1_decoy
chrUn_JTFH01000435v1_decoy
chrUn_JTFH01000436v1_decoy
chrUn_JTFH01000437v1_decoy
chrUn_JTFH01000438v1_decoy
chrUn_JTFH01000439v1_decoy
chrUn_JTFH01000440v1_decoy
chrUn_JTFH01000441v1_decoy
chrUn_JTFH01000442v1_decoy
chrUn_JTFH01000443v1_decoy
chrUn_JTFH01000444v1_decoy
chrUn_JTFH01000445v1_decoy
chrUn_JTFH01000446v1_decoy
chrUn_JTFH01000447v1_decoy
chrUn_JTFH01000448v1_decoy
chrUn_JTFH01000449v1_decoy
chrUn_JTFH01000450v1_decoy
chrUn_JTFH01000451v1_decoy
chrUn_JTFH01000452v1_decoy
chrUn_JTFH01000453v1_decoy
chrUn_JTFH01000454v1_decoy
chrUn_JTFH01000455v1_decoy
chrUn_JTFH01000456v1_decoy
chrUn_JTFH01000457v1_decoy
chrUn_JTFH01000458v1_decoy
chrUn_JTFH01000459v1_decoy
chrUn_JTFH01000460v1_decoy
chrUn_JTFH01000461v1_decoy
chrUn_JTFH01000462v1_decoy
chrUn_JTFH01000463v1_decoy
chrUn_JTFH01000464v1_decoy
chrUn_JTFH01000465v1_decoy
chrUn_JTFH01000466v1_decoy
chrUn_JTFH01000467v1_decoy
chrUn_JTFH01000468v1_decoy
chrUn_JTFH01000469v1_decoy
chrUn_JTFH01000470v1_decoy
chrUn_JTFH01000471v1_decoy
chrUn_JTFH01000472v1_decoy
chrUn_JTFH01000473v1_decoy
chrUn_JTFH01000474v1_decoy
chrUn_JTFH01000475v1_decoy
chrUn_JTFH01000476v1_decoy
chrUn_JTFH01000477v1_decoy
chrUn_JTFH01000478v1_decoy
chrUn_JTFH01000479v1_decoy
chrUn_JTFH01000480v1_decoy
chrUn_JTFH01000481v1_decoy
chrUn_JTFH01000482v1_decoy
chrUn_JTFH01000483v1_decoy
chrUn_JTFH01000484v1_decoy
chrUn_JTFH01000485v1_decoy
chrUn_JTFH01000486v1_decoy
chrUn_JTFH01000487v1_decoy
chrUn_JTFH01000488v1_decoy
chrUn_JTFH01000489v1_decoy
chrUn_JTFH01000490v1_decoy
chrUn_JTFH01000491v1_decoy
chrUn_JTFH01000492v1_decoy
chrUn_JTFH01000493v1_decoy
chrUn_JTFH01000494v1_decoy
chrUn_JTFH01000495v1_decoy
chrUn_JTFH01000496v1_decoy
chrUn_JTFH01000497v1_decoy
chrUn_JTFH01000498v1_decoy
chrUn_JTFH01000499v1_decoy
chrUn_JTFH01000500v1_decoy
chrUn_JTFH01000501v1_decoy
chrUn_JTFH01000502v1_decoy
chrUn_JTFH01000503v1_decoy
chrUn_JTFH01000504v1_decoy
chrUn_JTFH01000505v1_decoy
chrUn_JTFH01000506v1_decoy
chrUn_JTFH01000507v1_decoy
chrUn_JTFH01000508v1_decoy
chrUn_JTFH01000509v1_decoy
chrUn_JTFH01000510v1_decoy
chrUn_JTFH01000511v1_decoy
chrUn_JTFH01000512v1_decoy
chrUn_JTFH01000513v1_decoy
chrUn_JTFH01000514v1_decoy
chrUn_JTFH01000515v1_decoy
chrUn_JTFH01000516v1_decoy
chrUn_JTFH01000517v1_decoy
chrUn_JTFH01000518v1_decoy
chrUn_JTFH01000519v1_decoy
chrUn_JTFH01000520v1_decoy
chrUn_JTFH01000521v1_decoy
chrUn_JTFH01000522v1_decoy
chrUn_JTFH01000523v1_decoy
chrUn_JTFH01000524v1_decoy
chrUn_JTFH01000525v1_decoy
chrUn_JTFH01000526v1_decoy
chrUn_JTFH01000527v1_decoy
chrUn_JTFH01000528v1_decoy
chrUn_JTFH01000529v1_decoy
chrUn_JTFH01000530v1_decoy
chrUn_JTFH01000531v1_decoy
chrUn_JTFH01000532v1_decoy
chrUn_JTFH01000533v1_decoy
chrUn_JTFH01000534v1_decoy
chrUn_JTFH01000535v1_decoy
chrUn_JTFH01000536v1_decoy
chrUn_JTFH01000537v1_decoy
chrUn_JTFH01000538v1_decoy
chrUn_JTFH01000539v1_decoy
chrUn_JTFH01000540v1_decoy
chrUn_JTFH01000541v1_decoy
chrUn_JTFH01000542v1_decoy
chrUn_JTFH01000543v1_decoy
chrUn_JTFH01000544v1_decoy
chrUn_JTFH01000545v1_decoy
chrUn_JTFH01000546v1_decoy
chrUn_JTFH01000547v1_decoy
chrUn_JTFH01000548v1_decoy
chrUn_JTFH01000549v1_decoy
chrUn_JTFH01000550v1_decoy
chrUn_JTFH01000551v1_decoy
chrUn_JTFH01000552v1_decoy
chrUn_JTFH01000553v1_decoy
chrUn_JTFH01000554v1_decoy
chrUn_JTFH01000555v1_decoy
chrUn_JTFH01000556v1_decoy
chrUn_JTFH01000557v1_decoy
chrUn_JTFH01000558v1_decoy
chrUn_JTFH01000559v1_decoy
chrUn_JTFH01000560v1_decoy
chrUn_JTFH01000561v1_decoy
chrUn_JTFH01000562v1_decoy
chrUn_JTFH01000563v1_decoy
chrUn_JTFH01000564v1_decoy
chrUn_JTFH01000565v1_decoy
chrUn_JTFH01000566v1_decoy
chrUn_JTFH01000567v1_decoy
chrUn_JTFH01000568v1_decoy
chrUn_JTFH01000569v1_decoy
chrUn_JTFH01000570v1_decoy
chrUn_JTFH01000571v1_decoy
chrUn_JTFH01000572v1_decoy
chrUn_JTFH01000573v1_decoy
chrUn_JTFH01000574v1_decoy
chrUn_JTFH01000575v1_decoy
chrUn_JTFH01000576v1_decoy
chrUn_JTFH01000577v1_decoy
chrUn_JTFH01000578v1_decoy
chrUn_JTFH01000579v1_decoy
chrUn_JTFH01000580v1_decoy
chrUn_JTFH01000581v1_decoy
chrUn_JTFH01000582v1_decoy
chrUn_JTFH01000583v1_decoy
chrUn_JTFH01000584v1_decoy
chrUn_JTFH01000585v1_decoy
chrUn_JTFH01000586v1_decoy
chrUn_JTFH01000587v1_decoy
chrUn_JTFH01000588v1_decoy
chrUn_JTFH01000589v1_decoy
chrUn_JTFH01000590v1_decoy
chrUn_JTFH01000591v1_decoy
chrUn_JTFH01000592v1_decoy
chrUn_JTFH01000593v1_decoy
chrUn_JTFH01000594v1_decoy
chrUn_JTFH01000595v1_decoy
chrUn_JTFH01000596v1_decoy
chrUn_JTFH01000597v1_decoy
chrUn_JTFH01000598v1_decoy
chrUn_JTFH01000599v1_decoy
chrUn_JTFH01000600v1_decoy
chrUn_JTFH01000601v1_decoy
chrUn_JTFH01000602v1_decoy
chrUn_JTFH01000603v1_decoy
chrUn_JTFH01000604v1_decoy
chrUn_JTFH01000605v1_decoy
chrUn_JTFH01000606v1_decoy
chrUn_JTFH01000607v1_decoy
chrUn_JTFH01000608v1_decoy
chrUn_JTFH01000609v1_decoy
chrUn_JTFH01000610v1_decoy
chrUn_JTFH01000611v1_decoy
chrUn_JTFH01000612v1_decoy
chrUn_JTFH01000613v1_decoy
chrUn_JTFH01000614v1_decoy
chrUn_JTFH01000615v1_decoy
chrUn_JTFH01000616v1_decoy
chrUn_JTFH01000617v1_decoy
chrUn_JTFH01000618v1_decoy
chrUn_JTFH01000619v1_decoy
chrUn_JTFH01000620v1_decoy
chrUn_JTFH01000621v1_decoy
chrUn_JTFH01000622v1_decoy
chrUn_JTFH01000623v1_decoy
chrUn_JTFH01000624v1_decoy
chrUn_JTFH01000625v1_decoy
chrUn_JTFH01000626v1_decoy
chrUn_JTFH01000627v1_decoy
chrUn_JTFH01000628v1_decoy
chrUn_JTFH01000629v1_decoy
chrUn_JTFH01000630v1_decoy
chrUn_JTFH01000631v1_decoy
chrUn_JTFH01000632v1_decoy
chrUn_JTFH01000633v1_decoy
chrUn_JTFH01000634v1_decoy
chrUn_JTFH01000635v1_decoy
chrUn_JTFH01000636v1_decoy
chrUn_JTFH01000637v1_decoy
chrUn_JTFH01000638v1_decoy
chrUn_JTFH01000639v1_decoy
chrUn_JTFH01000640v1_decoy
chrUn_JTFH01000641v1_decoy
chrUn_JTFH01000642v1_decoy
chrUn_JTFH01000643v1_decoy
chrUn_JTFH01000644v1_decoy
chrUn_JTFH01000645v1_decoy
chrUn_JTFH01000646v1_decoy
chrUn_JTFH01000647v1_decoy
chrUn_JTFH01000648v1_decoy
chrUn_JTFH01000649v1_decoy
chrUn_JTFH01000650v1_decoy
chrUn_JTFH01000651v1_decoy
chrUn_JTFH01000652v1_decoy
chrUn_JTFH01000653v1_decoy
chrUn_JTFH01000654v1_decoy
chrUn_JTFH01000655v1_decoy
chrUn_JTFH01000656v1_decoy
chrUn_JTFH01000657v1_decoy
chrUn_JTFH01000658v1_decoy
chrUn_JTFH01000659v1_decoy
chrUn_JTFH01000660v1_decoy
chrUn_JTFH01000661v1_decoy
chrUn_JTFH01000662v1_decoy
chrUn_JTFH01000663v1_decoy
chrUn_JTFH01000664v1_decoy
chrUn_JTFH01000665v1_decoy
chrUn_JTFH01000666v1_decoy
chrUn_JTFH01000667v1_decoy
chrUn_JTFH01000668v1_decoy
chrUn_JTFH01000669v1_decoy
chrUn_JTFH01000670v1_decoy
chrUn_JTFH01000671v1_decoy
chrUn_JTFH01000672v1_decoy
chrUn_JTFH01000673v1_decoy
chrUn_JTFH01000674v1_decoy
chrUn_JTFH01000675v1_decoy
chrUn_JTFH01000676v1_decoy
chrUn_JTFH01000677v1_decoy
chrUn_JTFH01000678v1_decoy
chrUn_JTFH01000679v1_decoy
chrUn_JTFH01000680v1_decoy
chrUn_JTFH01000681v1_decoy
chrUn_JTFH01000682v1_decoy
chrUn_JTFH01000683v1_decoy
chrUn_JTFH01000684v1_decoy
chrUn_JTFH01000685v1_decoy
chrUn_JTFH01000686v1_decoy
chrUn_JTFH01000687v1_decoy
chrUn_JTFH01000688v1_decoy
chrUn_JTFH01000689v1_decoy
chrUn_JTFH01000690v1_decoy
chrUn_JTFH01000691v1_decoy
chrUn_JTFH01000692v1_decoy
chrUn_JTFH01000693v1_decoy
chrUn_JTFH01000694v1_decoy
chrUn_JTFH01000695v1_decoy
chrUn_JTFH01000696v1_decoy
chrUn_JTFH01000697v1_decoy
chrUn_JTFH01000698v1_decoy
chrUn_JTFH01000699v1_decoy
chrUn_JTFH01000700v1_decoy
chrUn_JTFH01000701v1_decoy
chrUn_JTFH01000702v1_decoy
chrUn_JTFH01000703v1_decoy
chrUn_JTFH01000704v1_decoy
chrUn_JTFH01000705v1_decoy
chrUn_JTFH01000706v1_decoy
chrUn_JTFH01000707v1_decoy
chrUn_JTFH01000708v1_decoy
chrUn_JTFH01000709v1_decoy
chrUn_JTFH01000710v1_decoy
chrUn_JTFH01000711v1_decoy
chrUn_JTFH01000712v1_decoy
chrUn_JTFH01000713v1_decoy
chrUn_JTFH01000714v1_decoy
chrUn_JTFH01000715v1_decoy
chrUn_JTFH01000716v1_decoy
chrUn_JTFH01000717v1_decoy
chrUn_JTFH01000718v1_decoy
chrUn_JTFH01000719v1_decoy
chrUn_JTFH01000720v1_decoy
chrUn_JTFH01000721v1_decoy
chrUn_JTFH01000722v1_decoy
chrUn_JTFH01000723v1_decoy
chrUn_JTFH01000724v1_decoy
chrUn_JTFH01000725v1_decoy
chrUn_JTFH01000726v1_decoy
chrUn_JTFH01000727v1_decoy
chrUn_JTFH01000728v1_decoy
chrUn_JTFH01000729v1_decoy
chrUn_JTFH01000730v1_decoy
chrUn_JTFH01000731v1_decoy
chrUn_JTFH01000732v1_decoy
chrUn_JTFH01000733v1_decoy
chrUn_JTFH01000734v1_decoy
chrUn_JTFH01000735v1_decoy
chrUn_JTFH01000736v1_decoy
chrUn_JTFH01000737v1_decoy
chrUn_JTFH01000738v1_decoy
chrUn_JTFH01000739v1_decoy
chrUn_JTFH01000740v1_decoy
chrUn_JTFH01000741v1_decoy
chrUn_JTFH01000742v1_decoy
chrUn_JTFH01000743v1_decoy
chrUn_JTFH01000744v1_decoy
chrUn_JTFH01000745v1_decoy
chrUn_JTFH01000746v1_decoy
chrUn_JTFH01000747v1_decoy
chrUn_JTFH01000748v1_decoy
chrUn_JTFH01000749v1_decoy
chrUn_JTFH01000750v1_decoy
chrUn_JTFH01000751v1_decoy
chrUn_JTFH01000752v1_decoy
chrUn_JTFH01000753v1_decoy
chrUn_JTFH01000754v1_decoy
chrUn_JTFH01000755v1_decoy
chrUn_JTFH01000756v1_decoy
chrUn_JTFH01000757v1_decoy
chrUn_JTFH01000758v1_decoy
chrUn_JTFH01000759v1_decoy
chrUn_JTFH01000760v1_decoy
chrUn_JTFH01000761v1_decoy
chrUn_JTFH01000762v1_decoy
chrUn_JTFH01000763v1_decoy
chrUn_JTFH01000764v1_decoy
chrUn_JTFH01000765v1_decoy
chrUn_JTFH01000766v1_decoy
chrUn_JTFH01000767v1_decoy
chrUn_JTFH01000768v1_decoy
chrUn_JTFH01000769v1_decoy
chrUn_JTFH01000770v1_decoy
chrUn_JTFH01000771v1_decoy
chrUn_JTFH01000772v1_decoy
chrUn_JTFH01000773v1_decoy
chrUn_JTFH01000774v1_decoy
chrUn_JTFH01000775v1_decoy
chrUn_JTFH01000776v1_decoy
chrUn_JTFH01000777v1_decoy
chrUn_JTFH01000778v1_decoy
chrUn_JTFH01000779v1_decoy
chrUn_JTFH01000780v1_decoy
chrUn_JTFH01000781v1_decoy
chrUn_JTFH01000782v1_decoy
chrUn_JTFH01000783v1_decoy
chrUn_JTFH01000784v1_decoy
chrUn_JTFH01000785v1_decoy
chrUn_JTFH01000786v1_decoy
chrUn_JTFH01000787v1_decoy
chrUn_JTFH01000788v1_decoy
chrUn_JTFH01000789v1_decoy
chrUn_JTFH01000790v1_decoy
chrUn_JTFH01000791v1_decoy
chrUn_JTFH01000792v1_decoy
chrUn_JTFH01000793v1_decoy
chrUn_JTFH01000794v1_decoy
chrUn_JTFH01000795v1_decoy
chrUn_JTFH01000796v1_decoy
chrUn_JTFH01000797v1_decoy
chrUn_JTFH01000798v1_decoy
chrUn_JTFH01000799v1_decoy
chrUn_JTFH01000800v1_decoy
chrUn_JTFH01000801v1_decoy
chrUn_JTFH01000802v1_decoy
chrUn_JTFH01000803v1_decoy
chrUn_JTFH01000804v1_decoy
chrUn_JTFH01000805v1_decoy
chrUn_JTFH01000806v1_decoy
chrUn_JTFH01000807v1_decoy
chrUn_JTFH01000808v1_decoy
chrUn_JTFH01000809v1_decoy
chrUn_JTFH01000810v1_decoy
chrUn_JTFH01000811v1_decoy
chrUn_JTFH01000812v1_decoy
chrUn_JTFH01000813v1_decoy
chrUn_JTFH01000814v1_decoy
chrUn_JTFH01000815v1_decoy
chrUn_JTFH01000816v1_decoy
chrUn_JTFH01000817v1_decoy
chrUn_JTFH01000818v1_decoy
chrUn_JTFH01000819v1_decoy
chrUn_JTFH01000820v1_decoy
chrUn_JTFH01000821v1_decoy
chrUn_JTFH01000822v1_decoy
chrUn_JTFH01000823v1_decoy
chrUn_JTFH01000824v1_decoy
chrUn_JTFH01000825v1_decoy
chrUn_JTFH01000826v1_decoy
chrUn_JTFH01000827v1_decoy
chrUn_JTFH01000828v1_decoy
chrUn_JTFH01000829v1_decoy
chrUn_JTFH01000830v1_decoy
chrUn_JTFH01000831v1_decoy
chrUn_JTFH01000832v1_decoy
chrUn_JTFH01000833v1_decoy
chrUn_JTFH01000834v1_decoy
chrUn_JTFH01000835v1_decoy
chrUn_JTFH01000836v1_decoy
chrUn_JTFH01000837v1_decoy
chrUn_JTFH01000838v1_decoy
chrUn_JTFH01000839v1_decoy
chrUn_JTFH01000840v1_decoy
chrUn_JTFH01000841v1_decoy
chrUn_JTFH01000842v1_decoy
chrUn_JTFH01000843v1_decoy
chrUn_JTFH01000844v1_decoy
chrUn_JTFH01000845v1_decoy
chrUn_JTFH01000846v1_decoy
chrUn_JTFH01000847v1_decoy
chrUn_JTFH01000848v1_decoy
chrUn_JTFH01000849v1_decoy
chrUn_JTFH01000850v1_decoy
chrUn_JTFH01000851v1_decoy
chrUn_JTFH01000852v1_decoy
chrUn_JTFH01000853v1_decoy
chrUn_JTFH01000854v1_decoy
chrUn_JTFH01000855v1_decoy
chrUn_JTFH01000856v1_decoy
chrUn_JTFH01000857v1_decoy
chrUn_JTFH01000858v1_decoy
chrUn_JTFH01000859v1_decoy
chrUn_JTFH01000860v1_decoy
chrUn_JTFH01000861v1_decoy
chrUn_JTFH01000862v1_decoy
chrUn_JTFH01000863v1_decoy
chrUn_JTFH01000864v1_decoy
chrUn_JTFH01000865v1_decoy
chrUn_JTFH01000866v1_decoy
chrUn_JTFH01000867v1_decoy
chrUn_JTFH01000868v1_decoy
chrUn_JTFH01000869v1_decoy
chrUn_JTFH01000870v1_decoy
chrUn_JTFH01000871v1_decoy
chrUn_JTFH01000872v1_decoy
chrUn_JTFH01000873v1_decoy
chrUn_JTFH01000874v1_decoy
chrUn_JTFH01000875v1_decoy
chrUn_JTFH01000876v1_decoy
chrUn_JTFH01000877v1_decoy
chrUn_JTFH01000878v1_decoy
chrUn_JTFH01000879v1_decoy
chrUn_JTFH01000880v1_decoy
chrUn_JTFH01000881v1_decoy
chrUn_JTFH01000882v1_decoy
chrUn_JTFH01000883v1_decoy
chrUn_JTFH01000884v1_decoy
chrUn_JTFH01000885v1_decoy
chrUn_JTFH01000886v1_decoy
chrUn_JTFH01000887v1_decoy
chrUn_JTFH01000888v1_decoy
chrUn_JTFH01000889v1_decoy
chrUn_JTFH01000890v1_decoy
chrUn_JTFH01000891v1_decoy
chrUn_JTFH01000892v1_decoy
chrUn_JTFH01000893v1_decoy
chrUn_JTFH01000894v1_decoy
chrUn_JTFH01000895v1_decoy
chrUn_JTFH01000896v1_decoy
chrUn_JTFH01000897v1_decoy
chrUn_JTFH01000898v1_decoy
chrUn_JTFH01000899v1_decoy
chrUn_JTFH01000900v1_decoy
chrUn_JTFH01000901v1_decoy
chrUn_JTFH01000902v1_decoy
chrUn_JTFH01000903v1_decoy
chrUn_JTFH01000904v1_decoy
chrUn_JTFH01000905v1_decoy
chrUn_JTFH01000906v1_decoy
chrUn_JTFH01000907v1_decoy
chrUn_JTFH01000908v1_decoy
chrUn_JTFH01000909v1_decoy
chrUn_JTFH01000910v1_decoy
chrUn_JTFH01000911v1_decoy
chrUn_JTFH01000912v1_decoy
chrUn_JTFH01000913v1_decoy
chrUn_JTFH01000914v1_decoy
chrUn_JTFH01000915v1_decoy
chrUn_JTFH01000916v1_decoy
chrUn_JTFH01000917v1_decoy
chrUn_JTFH01000918v1_decoy
chrUn_JTFH01000919v1_decoy
chrUn_JTFH01000920v1_decoy
chrUn_JTFH01000921v1_decoy
chrUn_JTFH01000922v1_decoy
chrUn_JTFH01000923v1_decoy
chrUn_JTFH01000924v1_decoy
chrUn_JTFH01000925v1_decoy
chrUn_JTFH01000926v1_decoy
chrUn_JTFH01000927v1_decoy
chrUn_JTFH01000928v1_decoy
chrUn_JTFH01000929v1_decoy
chrUn_JTFH01000930v1_decoy
chrUn_JTFH01000931v1_decoy
chrUn_JTFH01000932v1_decoy
chrUn_JTFH01000933v1_decoy
chrUn_JTFH01000934v1_decoy
chrUn_JTFH01000935v1_decoy
chrUn_JTFH01000936v1_decoy
chrUn_JTFH01000937v1_decoy
chrUn_JTFH01000938v1_decoy
chrUn_JTFH01000939v1_decoy
chrUn_JTFH01000940v1_decoy
chrUn_JTFH01000941v1_decoy
chrUn_JTFH01000942v1_decoy
chrUn_JTFH01000943v1_decoy
chrUn_JTFH01000944v1_decoy
chrUn_JTFH01000945v1_decoy
chrUn_JTFH01000946v1_decoy
chrUn_JTFH01000947v1_decoy
chrUn_JTFH01000948v1_decoy
chrUn_JTFH01000949v1_decoy
chrUn_JTFH01000950v1_decoy
chrUn_JTFH01000951v1_decoy
chrUn_JTFH01000952v1_decoy
chrUn_JTFH01000953v1_decoy
chrUn_JTFH01000954v1_decoy
chrUn_JTFH01000955v1_decoy
chrUn_JTFH01000956v1_decoy
chrUn_JTFH01000957v1_decoy
chrUn_JTFH01000958v1_decoy
chrUn_JTFH01000959v1_decoy
chrUn_JTFH01000960v1_decoy
chrUn_JTFH01000961v1_decoy
chrUn_JTFH01000962v1_decoy
chrUn_JTFH01000963v1_decoy
chrUn_JTFH01000964v1_decoy
chrUn_JTFH01000965v1_decoy
chrUn_JTFH01000966v1_decoy
chrUn_JTFH01000967v1_decoy
chrUn_JTFH01000968v1_decoy
chrUn_JTFH01000969v1_decoy
chrUn_JTFH01000970v1_decoy
chrUn_JTFH01000971v1_decoy
chrUn_JTFH01000972v1_decoy
chrUn_JTFH01000973v1_decoy
chrUn_JTFH01000974v1_decoy
chrUn_JTFH01000975v1_decoy
chrUn_JTFH01000976v1_decoy
chrUn_JTFH01000977v1_decoy
chrUn_JTFH01000978v1_decoy
chrUn_JTFH01000979v1_decoy
chrUn_JTFH01000980v1_decoy
chrUn_JTFH01000981v1_decoy
chrUn_JTFH01000982v1_decoy
chrUn_JTFH01000983v1_decoy
chrUn_JTFH01000984v1_decoy
chrUn_JTFH01000985v1_decoy
chrUn_JTFH01000986v1_decoy
chrUn_JTFH01000987v1_decoy
chrUn_JTFH01000988v1_decoy
chrUn_JTFH01000989v1_decoy
chrUn_JTFH01000990v1_decoy
chrUn_JTFH01000991v1_decoy
chrUn_JTFH01000992v1_decoy
chrUn_JTFH01000993v1_decoy
chrUn_JTFH01000994v1_decoy
chrUn_JTFH01000995v1_decoy
chrUn_JTFH01000996v1_decoy
chrUn_JTFH01000997v1_decoy
chrUn_JTFH01000998v1_decoy
chrUn_JTFH01000999v1_decoy
chrUn_JTFH01001000v1_decoy
chrUn_JTFH01001001v1_decoy
chrUn_JTFH01001002v1_decoy
chrUn_JTFH01001003v1_decoy
chrUn_JTFH01001004v1_decoy
chrUn_JTFH01001005v1_decoy
chrUn_JTFH01001006v1_decoy
chrUn_JTFH01001007v1_decoy
chrUn_JTFH01001008v1_decoy
chrUn_JTFH01001009v1_decoy
chrUn_JTFH01001010v1_decoy
chrUn_JTFH01001011v1_decoy
chrUn_JTFH01001012v1_decoy
chrUn_JTFH01001013v1_decoy
chrUn_JTFH01001014v1_decoy
chrUn_JTFH01001015v1_decoy
chrUn_JTFH01001016v1_decoy
chrUn_JTFH01001017v1_decoy
chrUn_JTFH01001018v1_decoy
chrUn_JTFH01001019v1_decoy
chrUn_JTFH01001020v1_decoy
chrUn_JTFH01001021v1_decoy
chrUn_JTFH01001022v1_decoy
chrUn_JTFH01001023v1_decoy
chrUn_JTFH01001024v1_decoy
chrUn_JTFH01001025v1_decoy
chrUn_JTFH01001026v1_decoy
chrUn_JTFH01001027v1_decoy
chrUn_JTFH01001028v1_decoy
chrUn_JTFH01001029v1_decoy
chrUn_JTFH01001030v1_decoy
chrUn_JTFH01001031v1_decoy
chrUn_JTFH01001032v1_decoy
chrUn_JTFH01001033v1_decoy
chrUn_JTFH01001034v1_decoy
chrUn_JTFH01001035v1_decoy
chrUn_JTFH01001036v1_decoy
chrUn_JTFH01001037v1_decoy
chrUn_JTFH01001038v1_decoy
chrUn_JTFH01001039v1_decoy
chrUn_JTFH01001040v1_decoy
chrUn_JTFH01001041v1_decoy
chrUn_JTFH01001042v1_decoy
chrUn_JTFH01001043v1_decoy
chrUn_JTFH01001044v1_decoy
chrUn_JTFH01001045v1_decoy
chrUn_JTFH01001046v1_decoy
chrUn_JTFH01001047v1_decoy
chrUn_JTFH01001048v1_decoy
chrUn_JTFH01001049v1_decoy
chrUn_JTFH01001050v1_decoy
chrUn_JTFH01001051v1_decoy
chrUn_JTFH01001052v1_decoy
chrUn_JTFH01001053v1_decoy
chrUn_JTFH01001054v1_decoy
chrUn_JTFH01001055v1_decoy
chrUn_JTFH01001056v1_decoy
chrUn_JTFH01001057v1_decoy
chrUn_JTFH01001058v1_decoy
chrUn_JTFH01001059v1_decoy
chrUn_JTFH01001060v1_decoy
chrUn_JTFH01001061v1_decoy
chrUn_JTFH01001062v1_decoy
chrUn_JTFH01001063v1_decoy
chrUn_JTFH01001064v1_decoy
chrUn_JTFH01001065v1_decoy
chrUn_JTFH01001066v1_decoy
chrUn_JTFH01001067v1_decoy
chrUn_JTFH01001068v1_decoy
chrUn_JTFH01001069v1_decoy
chrUn_JTFH01001070v1_decoy
chrUn_JTFH01001071v1_decoy
chrUn_JTFH01001072v1_decoy
chrUn_JTFH01001073v1_decoy
chrUn_JTFH01001074v1_decoy
chrUn_JTFH01001075v1_decoy
chrUn_JTFH01001076v1_decoy
chrUn_JTFH01001077v1_decoy
chrUn_JTFH01001078v1_decoy
chrUn_JTFH01001079v1_decoy
chrUn_JTFH01001080v1_decoy
chrUn_JTFH01001081v1_decoy
chrUn_JTFH01001082v1_decoy
chrUn_JTFH01001083v1_decoy
chrUn_JTFH01001084v1_decoy
chrUn_JTFH01001085v1_decoy
chrUn_JTFH01001086v1_decoy
chrUn_JTFH01001087v1_decoy
chrUn_JTFH01001088v1_decoy
chrUn_JTFH01001089v1_decoy
chrUn_JTFH01001090v1_decoy
chrUn_JTFH01001091v1_decoy
chrUn_JTFH01001092v1_decoy
chrUn_JTFH01001093v1_decoy
chrUn_JTFH01001094v1_decoy
chrUn_JTFH01001095v1_decoy
chrUn_JTFH01001096v1_decoy
chrUn_JTFH01001097v1_decoy
chrUn_JTFH01001098v1_decoy
chrUn_JTFH01001099v1_decoy
chrUn_JTFH01001100v1_decoy
chrUn_JTFH01001101v1_decoy
chrUn_JTFH01001102v1_decoy
chrUn_JTFH01001103v1_decoy
chrUn_JTFH01001104v1_decoy
chrUn_JTFH01001105v1_decoy
chrUn_JTFH01001106v1_decoy
chrUn_JTFH01001107v1_decoy
chrUn_JTFH01001108v1_decoy
chrUn_JTFH01001109v1_decoy
chrUn_JTFH01001110v1_decoy
chrUn_JTFH01001111v1_decoy
chrUn_JTFH01001112v1_decoy
chrUn_JTFH01001113v1_decoy
chrUn_JTFH01001114v1_decoy
chrUn_JTFH01001115v1_decoy
chrUn_JTFH01001116v1_decoy
chrUn_JTFH01001117v1_decoy
chrUn_JTFH01001118v1_decoy
chrUn_JTFH01001119v1_decoy
chrUn_JTFH01001120v1_decoy
chrUn_JTFH01001121v1_decoy
chrUn_JTFH01001122v1_decoy
chrUn_JTFH01001123v1_decoy
chrUn_JTFH01001124v1_decoy
chrUn_JTFH01001125v1_decoy
chrUn_JTFH01001126v1_decoy
chrUn_JTFH01001127v1_decoy
chrUn_JTFH01001128v1_decoy
chrUn_JTFH01001129v1_decoy
chrUn_JTFH01001130v1_decoy
chrUn_JTFH01001131v1_decoy
chrUn_JTFH01001132v1_decoy
chrUn_JTFH01001133v1_decoy
chrUn_JTFH01001134v1_decoy
chrUn_JTFH01001135v1_decoy
chrUn_JTFH01001136v1_decoy
chrUn_JTFH01001137v1_decoy
chrUn_JTFH01001138v1_decoy
chrUn_JTFH01001139v1_decoy
chrUn_JTFH01001140v1_decoy
chrUn_JTFH01001141v1_decoy
chrUn_JTFH01001142v1_decoy
chrUn_JTFH01001143v1_decoy
chrUn_JTFH01001144v1_decoy
chrUn_JTFH01001145v1_decoy
chrUn_JTFH01001146v1_decoy
chrUn_JTFH01001147v1_decoy
chrUn_JTFH01001148v1_decoy
chrUn_JTFH01001149v1_decoy
chrUn_JTFH01001150v1_decoy
chrUn_JTFH01001151v1_decoy
chrUn_JTFH01001152v1_decoy
chrUn_JTFH01001153v1_decoy
chrUn_JTFH01001154v1_decoy
chrUn_JTFH01001155v1_decoy
chrUn_JTFH01001156v1_decoy
chrUn_JTFH01001157v1_decoy
chrUn_JTFH01001158v1_decoy
chrUn_JTFH01001159v1_decoy
chrUn_JTFH01001160v1_decoy
chrUn_JTFH01001161v1_decoy
chrUn_JTFH01001162v1_decoy
chrUn_JTFH01001163v1_decoy
chrUn_JTFH01001164v1_decoy
chrUn_JTFH01001165v1_decoy
chrUn_JTFH01001166v1_decoy
chrUn_JTFH01001167v1_decoy
chrUn_JTFH01001168v1_decoy
chrUn_JTFH01001169v1_decoy
chrUn_JTFH01001170v1_decoy
chrUn_JTFH01001171v1_decoy
chrUn_JTFH01001172v1_decoy
chrUn_JTFH01001173v1_decoy
chrUn_JTFH01001174v1_decoy
chrUn_JTFH01001175v1_decoy
chrUn_JTFH01001176v1_decoy
chrUn_JTFH01001177v1_decoy
chrUn_JTFH01001178v1_decoy
chrUn_JTFH01001179v1_decoy
chrUn_JTFH01001180v1_decoy
chrUn_JTFH01001181v1_decoy
chrUn_JTFH01001182v1_decoy
chrUn_JTFH01001183v1_decoy
chrUn_JTFH01001184v1_decoy
chrUn_JTFH01001185v1_decoy
chrUn_JTFH01001186v1_decoy
chrUn_JTFH01001187v1_decoy
chrUn_JTFH01001188v1_decoy
chrUn_JTFH01001189v1_decoy
chrUn_JTFH01001190v1_decoy
chrUn_JTFH01001191v1_decoy
chrUn_JTFH01001192v1_decoy
chrUn_JTFH01001193v1_decoy
chrUn_JTFH01001194v1_decoy
chrUn_JTFH01001195v1_decoy
chrUn_JTFH01001196v1_decoy
chrUn_JTFH01001197v1_decoy
chrUn_JTFH01001198v1_decoy
chrUn_JTFH01001199v1_decoy
chrUn_JTFH01001200v1_decoy
chrUn_JTFH01001201v1_decoy
chrUn_JTFH01001202v1_decoy
chrUn_JTFH01001203v1_decoy
chrUn_JTFH01001204v1_decoy
chrUn_JTFH01001205v1_decoy
chrUn_JTFH01001206v1_decoy
chrUn_JTFH01001207v1_decoy
chrUn_JTFH01001208v1_decoy
chrUn_JTFH01001209v1_decoy
chrUn_JTFH01001210v1_decoy
chrUn_JTFH01001211v1_decoy
chrUn_JTFH01001212v1_decoy
chrUn_JTFH01001213v1_decoy
chrUn_JTFH01001214v1_decoy
chrUn_JTFH01001215v1_decoy
chrUn_JTFH01001216v1_decoy
chrUn_JTFH01001217v1_decoy
chrUn_JTFH01001218v1_decoy
chrUn_JTFH01001219v1_decoy
chrUn_JTFH01001220v1_decoy
chrUn_JTFH01001221v1_decoy
chrUn_JTFH01001222v1_decoy
chrUn_JTFH01001223v1_decoy
chrUn_JTFH01001224v1_decoy
chrUn_JTFH01001225v1_decoy
chrUn_JTFH01001226v1_decoy
chrUn_JTFH01001227v1_decoy
chrUn_JTFH01001228v1_decoy
chrUn_JTFH01001229v1_decoy
chrUn_JTFH01001230v1_decoy
chrUn_JTFH01001231v1_decoy
chrUn_JTFH01001232v1_decoy
chrUn_JTFH01001233v1_decoy
chrUn_JTFH01001234v1_decoy
chrUn_JTFH01001235v1_decoy
chrUn_JTFH01001236v1_decoy
chrUn_JTFH01001237v1_decoy
chrUn_JTFH01001238v1_decoy
chrUn_JTFH01001239v1_decoy
chrUn_JTFH01001240v1_decoy
chrUn_JTFH01001241v1_decoy
chrUn_JTFH01001242v1_decoy
chrUn_JTFH01001243v1_decoy
chrUn_JTFH01001244v1_decoy
chrUn_JTFH01001245v1_decoy
chrUn_JTFH01001246v1_decoy
chrUn_JTFH01001247v1_decoy
chrUn_JTFH01001248v1_decoy
chrUn_JTFH01001249v1_decoy
chrUn_JTFH01001250v1_decoy
chrUn_JTFH01001251v1_decoy
chrUn_JTFH01001252v1_decoy
chrUn_JTFH01001253v1_decoy
chrUn_JTFH01001254v1_decoy
chrUn_JTFH01001255v1_decoy
chrUn_JTFH01001256v1_decoy
chrUn_JTFH01001257v1_decoy
chrUn_JTFH01001258v1_decoy
chrUn_JTFH01001259v1_decoy
chrUn_JTFH01001260v1_decoy
chrUn_JTFH01001261v1_decoy
chrUn_JTFH01001262v1_decoy
chrUn_JTFH01001263v1_decoy
chrUn_JTFH01001264v1_decoy
chrUn_JTFH01001265v1_decoy
chrUn_JTFH01001266v1_decoy
chrUn_JTFH01001267v1_decoy
chrUn_JTFH01001268v1_decoy
chrUn_JTFH01001269v1_decoy
chrUn_JTFH01001270v1_decoy
chrUn_JTFH01001271v1_decoy
chrUn_JTFH01001272v1_decoy
chrUn_JTFH01001273v1_decoy
chrUn_JTFH01001274v1_decoy
chrUn_JTFH01001275v1_decoy
chrUn_JTFH01001276v1_decoy
chrUn_JTFH01001277v1_decoy
chrUn_JTFH01001278v1_decoy
chrUn_JTFH01001279v1_decoy
chrUn_JTFH01001280v1_decoy
chrUn_JTFH01001281v1_decoy
chrUn_JTFH01001282v1_decoy
chrUn_JTFH01001283v1_decoy
chrUn_JTFH01001284v1_decoy
chrUn_JTFH01001285v1_decoy
chrUn_JTFH01001286v1_decoy
chrUn_JTFH01001287v1_decoy
chrUn_JTFH01001288v1_decoy
chrUn_JTFH01001289v1_decoy
chrUn_JTFH01001290v1_decoy
chrUn_JTFH01001291v1_decoy
chrUn_JTFH01001292v1_decoy
chrUn_JTFH01001293v1_decoy
chrUn_JTFH01001294v1_decoy
chrUn_JTFH01001295v1_decoy
chrUn_JTFH01001296v1_decoy
chrUn_JTFH01001297v1_decoy
chrUn_JTFH01001298v1_decoy
chrUn_JTFH01001299v1_decoy
chrUn_JTFH01001300v1_decoy
chrUn_JTFH01001301v1_decoy
chrUn_JTFH01001302v1_decoy
chrUn_JTFH01001303v1_decoy
chrUn_JTFH01001304v1_decoy
chrUn_JTFH01001305v1_decoy
chrUn_JTFH01001306v1_decoy
chrUn_JTFH01001307v1_decoy
chrUn_JTFH01001308v1_decoy
chrUn_JTFH01001309v1_decoy
chrUn_JTFH01001310v1_decoy
chrUn_JTFH01001311v1_decoy
chrUn_JTFH01001312v1_decoy
chrUn_JTFH01001313v1_decoy
chrUn_JTFH01001314v1_decoy
chrUn_JTFH01001315v1_decoy
chrUn_JTFH01001316v1_decoy
chrUn_JTFH01001317v1_decoy
chrUn_JTFH01001318v1_decoy
chrUn_JTFH01001319v1_decoy
chrUn_JTFH01001320v1_decoy
chrUn_JTFH01001321v1_decoy
chrUn_JTFH01001322v1_decoy
chrUn_JTFH01001323v1_decoy
chrUn_JTFH01001324v1_decoy
chrUn_JTFH01001325v1_decoy
chrUn_JTFH01001326v1_decoy
chrUn_JTFH01001327v1_decoy
chrUn_JTFH01001328v1_decoy
chrUn_JTFH01001329v1_decoy
chrUn_JTFH01001330v1_decoy
chrUn_JTFH01001331v1_decoy
chrUn_JTFH01001332v1_decoy
chrUn_JTFH01001333v1_decoy
chrUn_JTFH01001334v1_decoy
chrUn_JTFH01001335v1_decoy
chrUn_JTFH01001336v1_decoy
chrUn_JTFH01001337v1_decoy
chrUn_JTFH01001338v1_decoy
chrUn_JTFH01001339v1_decoy
chrUn_JTFH01001340v1_decoy
chrUn_JTFH01001341v1_decoy
chrUn_JTFH01001342v1_decoy
chrUn_JTFH01001343v1_decoy
chrUn_JTFH01001344v1_decoy
chrUn_JTFH01001345v1_decoy
chrUn_JTFH01001346v1_decoy
chrUn_JTFH01001347v1_decoy
chrUn_JTFH01001348v1_decoy
chrUn_JTFH01001349v1_decoy
chrUn_JTFH01001350v1_decoy
chrUn_JTFH01001351v1_decoy
chrUn_JTFH01001352v1_decoy
chrUn_JTFH01001353v1_decoy
chrUn_JTFH01001354v1_decoy
chrUn_JTFH01001355v1_decoy
chrUn_JTFH01001356v1_decoy
chrUn_JTFH01001357v1_decoy
chrUn_JTFH01001358v1_decoy
chrUn_JTFH01001359v1_decoy
chrUn_JTFH01001360v1_decoy
chrUn_JTFH01001361v1_decoy
chrUn_JTFH01001362v1_decoy
chrUn_JTFH01001363v1_decoy
chrUn_JTFH01001364v1_decoy
chrUn_JTFH01001365v1_decoy
chrUn_JTFH01001366v1_decoy
chrUn_JTFH01001367v1_decoy
chrUn_JTFH01001368v1_decoy
chrUn_JTFH01001369v1_decoy
chrUn_JTFH01001370v1_decoy
chrUn_JTFH01001371v1_decoy
chrUn_JTFH01001372v1_decoy
chrUn_JTFH01001373v1_decoy
chrUn_JTFH01001374v1_decoy
chrUn_JTFH01001375v1_decoy
chrUn_JTFH01001376v1_decoy
chrUn_JTFH01001377v1_decoy
chrUn_JTFH01001378v1_decoy
chrUn_JTFH01001379v1_decoy
chrUn_JTFH01001380v1_decoy
chrUn_JTFH01001381v1_decoy
chrUn_JTFH01001382v1_decoy
chrUn_JTFH01001383v1_decoy
chrUn_JTFH01001384v1_decoy
chrUn_JTFH01001385v1_decoy
chrUn_JTFH01001386v1_decoy
chrUn_JTFH01001387v1_decoy
chrUn_JTFH01001388v1_decoy
chrUn_JTFH01001389v1_decoy
chrUn_JTFH01001390v1_decoy
chrUn_JTFH01001391v1_decoy
chrUn_JTFH01001392v1_decoy
chrUn_JTFH01001393v1_decoy
chrUn_JTFH01001394v1_decoy
chrUn_JTFH01001395v1_decoy
chrUn_JTFH01001396v1_decoy
chrUn_JTFH01001397v1_decoy
chrUn_JTFH01001398v1_decoy
chrUn_JTFH01001399v1_decoy
chrUn_JTFH01001400v1_decoy
chrUn_JTFH01001401v1_decoy
chrUn_JTFH01001402v1_decoy
chrUn_JTFH01001403v1_decoy
chrUn_JTFH01001404v1_decoy
chrUn_JTFH01001405v1_decoy
chrUn_JTFH01001406v1_decoy
chrUn_JTFH01001407v1_decoy
chrUn_JTFH01001408v1_decoy
chrUn_JTFH01001409v1_decoy
chrUn_JTFH01001410v1_decoy
chrUn_JTFH01001411v1_decoy
chrUn_JTFH01001412v1_decoy
chrUn_JTFH01001413v1_decoy
chrUn_JTFH01001414v1_decoy
chrUn_JTFH01001415v1_decoy
chrUn_JTFH01001416v1_decoy
chrUn_JTFH01001417v1_decoy
chrUn_JTFH01001418v1_decoy
chrUn_JTFH01001419v1_decoy
chrUn_JTFH01001420v1_decoy
chrUn_JTFH01001421v1_decoy
chrUn_JTFH01001422v1_decoy
chrUn_JTFH01001423v1_decoy
chrUn_JTFH01001424v1_decoy
chrUn_JTFH01001425v1_decoy
chrUn_JTFH01001426v1_decoy
chrUn_JTFH01001427v1_decoy
chrUn_JTFH01001428v1_decoy
chrUn_JTFH01001429v1_decoy
chrUn_JTFH01001430v1_decoy
chrUn_JTFH01001431v1_decoy
chrUn_JTFH01001432v1_decoy
chrUn_JTFH01001433v1_decoy
chrUn_JTFH01001434v1_decoy
chrUn_JTFH01001435v1_decoy
chrUn_JTFH01001436v1_decoy
chrUn_JTFH01001437v1_decoy
chrUn_JTFH01001438v1_decoy
chrUn_JTFH01001439v1_decoy
chrUn_JTFH01001440v1_decoy
chrUn_JTFH01001441v1_decoy
chrUn_JTFH01001442v1_decoy
chrUn_JTFH01001443v1_decoy
chrUn_JTFH01001444v1_decoy
chrUn_JTFH01001445v1_decoy
chrUn_JTFH01001446v1_decoy
chrUn_JTFH01001447v1_decoy
chrUn_JTFH01001448v1_decoy
chrUn_JTFH01001449v1_decoy
chrUn_JTFH01001450v1_decoy
chrUn_JTFH01001451v1_decoy
chrUn_JTFH01001452v1_decoy
chrUn_JTFH01001453v1_decoy
chrUn_JTFH01001454v1_decoy
chrUn_JTFH01001455v1_decoy
chrUn_JTFH01001456v1_decoy
chrUn_JTFH01001457v1_decoy
chrUn_JTFH01001458v1_decoy
chrUn_JTFH01001459v1_decoy
chrUn_JTFH01001460v1_decoy
chrUn_JTFH01001461v1_decoy
chrUn_JTFH01001462v1_decoy
chrUn_JTFH01001463v1_decoy
chrUn_JTFH01001464v1_decoy
chrUn_JTFH01001465v1_decoy
chrUn_JTFH01001466v1_decoy
chrUn_JTFH01001467v1_decoy
chrUn_JTFH01001468v1_decoy
chrUn_JTFH01001469v1_decoy
chrUn_JTFH01001470v1_decoy
chrUn_JTFH01001471v1_decoy
chrUn_JTFH01001472v1_decoy
chrUn_JTFH01001473v1_decoy
chrUn_JTFH01001474v1_decoy
chrUn_JTFH01001475v1_decoy
chrUn_JTFH01001476v1_decoy
chrUn_JTFH01001477v1_decoy
chrUn_JTFH01001478v1_decoy
chrUn_JTFH01001479v1_decoy
chrUn_JTFH01001480v1_decoy
chrUn_JTFH01001481v1_decoy
chrUn_JTFH01001482v1_decoy
chrUn_JTFH01001483v1_decoy
chrUn_JTFH01001484v1_decoy
chrUn_JTFH01001485v1_decoy
chrUn_JTFH01001486v1_decoy
chrUn_JTFH01001487v1_decoy
chrUn_JTFH01001488v1_decoy
chrUn_JTFH01001489v1_decoy
chrUn_JTFH01001490v1_decoy
chrUn_JTFH01001491v1_decoy
chrUn_JTFH01001492v1_decoy
chrUn_JTFH01001493v1_decoy
chrUn_JTFH01001494v1_decoy
chrUn_JTFH01001495v1_decoy
chrUn_JTFH01001496v1_decoy
chrUn_JTFH01001497v1_decoy
chrUn_JTFH01001498v1_decoy
chrUn_JTFH01001499v1_decoy
chrUn_JTFH01001500v1_decoy
chrUn_JTFH01001501v1_decoy
chrUn_JTFH01001502v1_decoy
chrUn_JTFH01001503v1_decoy
chrUn_JTFH01001504v1_decoy
chrUn_JTFH01001505v1_decoy
chrUn_JTFH01001506v1_decoy
chrUn_JTFH01001507v1_decoy
chrUn_JTFH01001508v1_decoy
chrUn_JTFH01001509v1_decoy
chrUn_JTFH01001510v1_decoy
chrUn_JTFH01001511v1_decoy
chrUn_JTFH01001512v1_decoy
chrUn_JTFH01001513v1_decoy
chrUn_JTFH01001514v1_decoy
chrUn_JTFH01001515v1_decoy
chrUn_JTFH01001516v1_decoy
chrUn_JTFH01001517v1_decoy
chrUn_JTFH01001518v1_decoy
chrUn_JTFH01001519v1_decoy
chrUn_JTFH01001520v1_decoy
chrUn_JTFH01001521v1_decoy
chrUn_JTFH01001522v1_decoy
chrUn_JTFH01001523v1_decoy
chrUn_JTFH01001524v1_decoy
chrUn_JTFH01001525v1_decoy
chrUn_JTFH01001526v1_decoy
chrUn_JTFH01001527v1_decoy
chrUn_JTFH01001528v1_decoy
chrUn_JTFH01001529v1_decoy
chrUn_JTFH01001530v1_decoy
chrUn_JTFH01001531v1_decoy
chrUn_JTFH01001532v1_decoy
chrUn_JTFH01001533v1_decoy
chrUn_JTFH01001534v1_decoy
chrUn_JTFH01001535v1_decoy
chrUn_JTFH01001536v1_decoy
chrUn_JTFH01001537v1_decoy
chrUn_JTFH01001538v1_decoy
chrUn_JTFH01001539v1_decoy
chrUn_JTFH01001540v1_decoy
chrUn_JTFH01001541v1_decoy
chrUn_JTFH01001542v1_decoy
chrUn_JTFH01001543v1_decoy
chrUn_JTFH01001544v1_decoy
chrUn_JTFH01001545v1_decoy
chrUn_JTFH01001546v1_decoy
chrUn_JTFH01001547v1_decoy
chrUn_JTFH01001548v1_decoy
chrUn_JTFH01001549v1_decoy
chrUn_JTFH01001550v1_decoy
chrUn_JTFH01001551v1_decoy
chrUn_JTFH01001552v1_decoy
chrUn_JTFH01001553v1_decoy
chrUn_JTFH01001554v1_decoy
chrUn_JTFH01001555v1_decoy
chrUn_JTFH01001556v1_decoy
chrUn_JTFH01001557v1_decoy
chrUn_JTFH01001558v1_decoy
chrUn_JTFH01001559v1_decoy
chrUn_JTFH01001560v1_decoy
chrUn_JTFH01001561v1_decoy
chrUn_JTFH01001562v1_decoy
chrUn_JTFH01001563v1_decoy
chrUn_JTFH01001564v1_decoy
chrUn_JTFH01001565v1_decoy
chrUn_JTFH01001566v1_decoy
chrUn_JTFH01001567v1_decoy
chrUn_JTFH01001568v1_decoy
chrUn_JTFH01001569v1_decoy
chrUn_JTFH01001570v1_decoy
chrUn_JTFH01001571v1_decoy
chrUn_JTFH01001572v1_decoy
chrUn_JTFH01001573v1_decoy
chrUn_JTFH01001574v1_decoy
chrUn_JTFH01001575v1_decoy
chrUn_JTFH01001576v1_decoy
chrUn_JTFH01001577v1_decoy
chrUn_JTFH01001578v1_decoy
chrUn_JTFH01001579v1_decoy
chrUn_JTFH01001580v1_decoy
chrUn_JTFH01001581v1_decoy
chrUn_JTFH01001582v1_decoy
chrUn_JTFH01001583v1_decoy
chrUn_JTFH01001584v1_decoy
chrUn_JTFH01001585v1_decoy
chrUn_JTFH01001586v1_decoy
chrUn_JTFH01001587v1_decoy
chrUn_JTFH01001588v1_decoy
chrUn_JTFH01001589v1_decoy
chrUn_JTFH01001590v1_decoy
chrUn_JTFH01001591v1_decoy
chrUn_JTFH01001592v1_decoy
chrUn_JTFH01001593v1_decoy
chrUn_JTFH01001594v1_decoy
chrUn_JTFH01001595v1_decoy
chrUn_JTFH01001596v1_decoy
chrUn_JTFH01001597v1_decoy
chrUn_JTFH01001598v1_decoy
chrUn_JTFH01001599v1_decoy
chrUn_JTFH01001600v1_decoy
chrUn_JTFH01001601v1_decoy
chrUn_JTFH01001602v1_decoy
chrUn_JTFH01001603v1_decoy
chrUn_JTFH01001604v1_decoy
chrUn_JTFH01001605v1_decoy
chrUn_JTFH01001606v1_decoy
chrUn_JTFH01001607v1_decoy
chrUn_JTFH01001608v1_decoy
chrUn_JTFH01001609v1_decoy
chrUn_JTFH01001610v1_decoy
chrUn_JTFH01001611v1_decoy
chrUn_JTFH01001612v1_decoy
chrUn_JTFH01001613v1_decoy
chrUn_JTFH01001614v1_decoy
chrUn_JTFH01001615v1_decoy
chrUn_JTFH01001616v1_decoy
chrUn_JTFH01001617v1_decoy
chrUn_JTFH01001618v1_decoy
chrUn_JTFH01001619v1_decoy
chrUn_JTFH01001620v1_decoy
chrUn_JTFH01001621v1_decoy
chrUn_JTFH01001622v1_decoy
chrUn_JTFH01001623v1_decoy
chrUn_JTFH01001624v1_decoy
chrUn_JTFH01001625v1_decoy
chrUn_JTFH01001626v1_decoy
chrUn_JTFH01001627v1_decoy
chrUn_JTFH01001628v1_decoy
chrUn_JTFH01001629v1_decoy
chrUn_JTFH01001630v1_decoy
chrUn_JTFH01001631v1_decoy
chrUn_JTFH01001632v1_decoy
chrUn_JTFH01001633v1_decoy
chrUn_JTFH01001634v1_decoy
chrUn_JTFH01001635v1_decoy
chrUn_JTFH01001636v1_decoy
chrUn_JTFH01001637v1_decoy
chrUn_JTFH01001638v1_decoy
chrUn_JTFH01001639v1_decoy
chrUn_JTFH01001640v1_decoy
chrUn_JTFH01001641v1_decoy
chrUn_JTFH01001642v1_decoy
chrUn_JTFH01001643v1_decoy
chrUn_JTFH01001644v1_decoy
chrUn_JTFH01001645v1_decoy
chrUn_JTFH01001646v1_decoy
chrUn_JTFH01001647v1_decoy
chrUn_JTFH01001648v1_decoy
chrUn_JTFH01001649v1_decoy
chrUn_JTFH01001650v1_decoy
chrUn_JTFH01001651v1_decoy
chrUn_JTFH01001652v1_decoy
chrUn_JTFH01001653v1_decoy
chrUn_JTFH01001654v1_decoy
chrUn_JTFH01001655v1_decoy
chrUn_JTFH01001656v1_decoy
chrUn_JTFH01001657v1_decoy
chrUn_JTFH01001658v1_decoy
chrUn_JTFH01001659v1_decoy
chrUn_JTFH01001660v1_decoy
chrUn_JTFH01001661v1_decoy
chrUn_JTFH01001662v1_decoy
chrUn_JTFH01001663v1_decoy
chrUn_JTFH01001664v1_decoy
chrUn_JTFH01001665v1_decoy
chrUn_JTFH01001666v1_decoy
chrUn_JTFH01001667v1_decoy
chrUn_JTFH01001668v1_decoy
chrUn_JTFH01001669v1_decoy
chrUn_JTFH01001670v1_decoy
chrUn_JTFH01001671v1_decoy
chrUn_JTFH01001672v1_decoy
chrUn_JTFH01001673v1_decoy
chrUn_JTFH01001674v1_decoy
chrUn_JTFH01001675v1_decoy
chrUn_JTFH01001676v1_decoy
chrUn_JTFH01001677v1_decoy
chrUn_JTFH01001678v1_decoy
chrUn_JTFH01001679v1_decoy
chrUn_JTFH01001680v1_decoy
chrUn_JTFH01001681v1_decoy
chrUn_JTFH01001682v1_decoy
chrUn_JTFH01001683v1_decoy
chrUn_JTFH01001684v1_decoy
chrUn_JTFH01001685v1_decoy
chrUn_JTFH01001686v1_decoy
chrUn_JTFH01001687v1_decoy
chrUn_JTFH01001688v1_decoy
chrUn_JTFH01001689v1_decoy
chrUn_JTFH01001690v1_decoy
chrUn_JTFH01001691v1_decoy
chrUn_JTFH01001692v1_decoy
chrUn_JTFH01001693v1_decoy
chrUn_JTFH01001694v1_decoy
chrUn_JTFH01001695v1_decoy
chrUn_JTFH01001696v1_decoy
chrUn_JTFH01001697v1_decoy
chrUn_JTFH01001698v1_decoy
chrUn_JTFH01001699v1_decoy
chrUn_JTFH01001700v1_decoy
chrUn_JTFH01001701v1_decoy
chrUn_JTFH01001702v1_decoy
chrUn_JTFH01001703v1_decoy
chrUn_JTFH01001704v1_decoy
chrUn_JTFH01001705v1_decoy
chrUn_JTFH01001706v1_decoy
chrUn_JTFH01001707v1_decoy
chrUn_JTFH01001708v1_decoy
chrUn_JTFH01001709v1_decoy
chrUn_JTFH01001710v1_decoy
chrUn_JTFH01001711v1_decoy
chrUn_JTFH01001712v1_decoy
chrUn_JTFH01001713v1_decoy
chrUn_JTFH01001714v1_decoy
chrUn_JTFH01001715v1_decoy
chrUn_JTFH01001716v1_decoy
chrUn_JTFH01001717v1_decoy
chrUn_JTFH01001718v1_decoy
chrUn_JTFH01001719v1_decoy
chrUn_JTFH01001720v1_decoy
chrUn_JTFH01001721v1_decoy
chrUn_JTFH01001722v1_decoy
chrUn_JTFH01001723v1_decoy
chrUn_JTFH01001724v1_decoy
chrUn_JTFH01001725v1_decoy
chrUn_JTFH01001726v1_decoy
chrUn_JTFH01001727v1_decoy
chrUn_JTFH01001728v1_decoy
chrUn_JTFH01001729v1_decoy
chrUn_JTFH01001730v1_decoy
chrUn_JTFH01001731v1_decoy
chrUn_JTFH01001732v1_decoy
chrUn_JTFH01001733v1_decoy
chrUn_JTFH01001734v1_decoy
chrUn_JTFH01001735v1_decoy
chrUn_JTFH01001736v1_decoy
chrUn_JTFH01001737v1_decoy
chrUn_JTFH01001738v1_decoy
chrUn_JTFH01001739v1_decoy
chrUn_JTFH01001740v1_decoy
chrUn_JTFH01001741v1_decoy
chrUn_JTFH01001742v1_decoy
chrUn_JTFH01001743v1_decoy
chrUn_JTFH01001744v1_decoy
chrUn_JTFH01001745v1_decoy
chrUn_JTFH01001746v1_decoy
chrUn_JTFH01001747v1_decoy
chrUn_JTFH01001748v1_decoy
chrUn_JTFH01001749v1_decoy
chrUn_JTFH01001750v1_decoy
chrUn_JTFH01001751v1_decoy
chrUn_JTFH01001752v1_decoy
chrUn_JTFH01001753v1_decoy
chrUn_JTFH01001754v1_decoy
chrUn_JTFH01001755v1_decoy
chrUn_JTFH01001756v1_decoy
chrUn_JTFH01001757v1_decoy
chrUn_JTFH01001758v1_decoy
chrUn_JTFH01001759v1_decoy
chrUn_JTFH01001760v1_decoy
chrUn_JTFH01001761v1_decoy
chrUn_JTFH01001762v1_decoy
chrUn_JTFH01001763v1_decoy
chrUn_JTFH01001764v1_decoy
chrUn_JTFH01001765v1_decoy
chrUn_JTFH01001766v1_decoy
chrUn_JTFH01001767v1_decoy
chrUn_JTFH01001768v1_decoy
chrUn_JTFH01001769v1_decoy
chrUn_JTFH01001770v1_decoy
chrUn_JTFH01001771v1_decoy
chrUn_JTFH01001772v1_decoy
chrUn_JTFH01001773v1_decoy
chrUn_JTFH01001774v1_decoy
chrUn_JTFH01001775v1_decoy
chrUn_JTFH01001776v1_decoy
chrUn_JTFH01001777v1_decoy
chrUn_JTFH01001778v1_decoy
chrUn_JTFH01001779v1_decoy
chrUn_JTFH01001780v1_decoy
chrUn_JTFH01001781v1_decoy
chrUn_JTFH01001782v1_decoy
chrUn_JTFH01001783v1_decoy
chrUn_JTFH01001784v1_decoy
chrUn_JTFH01001785v1_decoy
chrUn_JTFH01001786v1_decoy
chrUn_JTFH01001787v1_decoy
chrUn_JTFH01001788v1_decoy
chrUn_JTFH01001789v1_decoy
chrUn_JTFH01001790v1_decoy
chrUn_JTFH01001791v1_decoy
chrUn_JTFH01001792v1_decoy
chrUn_JTFH01001793v1_decoy
chrUn_JTFH01001794v1_decoy
chrUn_JTFH01001795v1_decoy
chrUn_JTFH01001796v1_decoy
chrUn_JTFH01001797v1_decoy
chrUn_JTFH01001798v1_decoy
chrUn_JTFH01001799v1_decoy
chrUn_JTFH01001800v1_decoy
chrUn_JTFH01001801v1_decoy
chrUn_JTFH01001802v1_decoy
chrUn_JTFH01001803v1_decoy
chrUn_JTFH01001804v1_decoy
chrUn_JTFH01001805v1_decoy
chrUn_JTFH01001806v1_decoy
chrUn_JTFH01001807v1_decoy
chrUn_JTFH01001808v1_decoy
chrUn_JTFH01001809v1_decoy
chrUn_JTFH01001810v1_decoy
chrUn_JTFH01001811v1_decoy
chrUn_JTFH01001812v1_decoy
chrUn_JTFH01001813v1_decoy
chrUn_JTFH01001814v1_decoy
chrUn_JTFH01001815v1_decoy
chrUn_JTFH01001816v1_decoy
chrUn_JTFH01001817v1_decoy
chrUn_JTFH01001818v1_decoy
chrUn_JTFH01001819v1_decoy
chrUn_JTFH01001820v1_decoy
chrUn_JTFH01001821v1_decoy
chrUn_JTFH01001822v1_decoy
chrUn_JTFH01001823v1_decoy
chrUn_JTFH01001824v1_decoy
chrUn_JTFH01001825v1_decoy
chrUn_JTFH01001826v1_decoy
chrUn_JTFH01001827v1_decoy
chrUn_JTFH01001828v1_decoy
chrUn_JTFH01001829v1_decoy
chrUn_JTFH01001830v1_decoy
chrUn_JTFH01001831v1_decoy
chrUn_JTFH01001832v1_decoy
chrUn_JTFH01001833v1_decoy
chrUn_JTFH01001834v1_decoy
chrUn_JTFH01001835v1_decoy
chrUn_JTFH01001836v1_decoy
chrUn_JTFH01001837v1_decoy
chrUn_JTFH01001838v1_decoy
chrUn_JTFH01001839v1_decoy
chrUn_JTFH01001840v1_decoy
chrUn_JTFH01001841v1_decoy
chrUn_JTFH01001842v1_decoy
chrUn_JTFH01001843v1_decoy
chrUn_JTFH01001844v1_decoy
chrUn_JTFH01001845v1_decoy
chrUn_JTFH01001846v1_decoy
chrUn_JTFH01001847v1_decoy
chrUn_JTFH01001848v1_decoy
chrUn_JTFH01001849v1_decoy
chrUn_JTFH01001850v1_decoy
chrUn_JTFH01001851v1_decoy
chrUn_JTFH01001852v1_decoy
chrUn_JTFH01001853v1_decoy
chrUn_JTFH01001854v1_decoy
chrUn_JTFH01001855v1_decoy
chrUn_JTFH01001856v1_decoy
chrUn_JTFH01001857v1_decoy
chrUn_JTFH01001858v1_decoy
chrUn_JTFH01001859v1_decoy
chrUn_JTFH01001860v1_decoy
chrUn_JTFH01001861v1_decoy
chrUn_JTFH01001862v1_decoy
chrUn_JTFH01001863v1_decoy
chrUn_JTFH01001864v1_decoy
chrUn_JTFH01001865v1_decoy
chrUn_JTFH01001866v1_decoy
chrUn_JTFH01001867v1_decoy
chrUn_JTFH01001868v1_decoy
chrUn_JTFH01001869v1_decoy
chrUn_JTFH01001870v1_decoy
chrUn_JTFH01001871v1_decoy
chrUn_JTFH01001872v1_decoy
chrUn_JTFH01001873v1_decoy
chrUn_JTFH01001874v1_decoy
chrUn_JTFH01001875v1_decoy
chrUn_JTFH01001876v1_decoy
chrUn_JTFH01001877v1_decoy
chrUn_JTFH01001878v1_decoy
chrUn_JTFH01001879v1_decoy
chrUn_JTFH01001880v1_decoy
chrUn_JTFH01001881v1_decoy
chrUn_JTFH01001882v1_decoy
chrUn_JTFH01001883v1_decoy
chrUn_JTFH01001884v1_decoy
chrUn_JTFH01001885v1_decoy
chrUn_JTFH01001886v1_decoy
chrUn_JTFH01001887v1_decoy
chrUn_JTFH01001888v1_decoy
chrUn_JTFH01001889v1_decoy
chrUn_JTFH01001890v1_decoy
chrUn_JTFH01001891v1_decoy
chrUn_JTFH01001892v1_decoy
chrUn_JTFH01001893v1_decoy
chrUn_JTFH01001894v1_decoy
chrUn_JTFH01001895v1_decoy
chrUn_JTFH01001896v1_decoy
chrUn_JTFH01001897v1_decoy
chrUn_JTFH01001898v1_decoy
chrUn_JTFH01001899v1_decoy
chrUn_JTFH01001900v1_decoy
chrUn_JTFH01001901v1_decoy
chrUn_JTFH01001902v1_decoy
chrUn_JTFH01001903v1_decoy
chrUn_JTFH01001904v1_decoy
chrUn_JTFH01001905v1_decoy
chrUn_JTFH01001906v1_decoy
chrUn_JTFH01001907v1_decoy
chrUn_JTFH01001908v1_decoy
chrUn_JTFH01001909v1_decoy
chrUn_JTFH01001910v1_decoy
chrUn_JTFH01001911v1_decoy
chrUn_JTFH01001912v1_decoy
chrUn_JTFH01001913v1_decoy
chrUn_JTFH01001914v1_decoy
chrUn_JTFH01001915v1_decoy
chrUn_JTFH01001916v1_decoy
chrUn_JTFH01001917v1_decoy
chrUn_JTFH01001918v1_decoy
chrUn_JTFH01001919v1_decoy
chrUn_JTFH01001920v1_decoy
chrUn_JTFH01001921v1_decoy
chrUn_JTFH01001922v1_decoy
chrUn_JTFH01001923v1_decoy
chrUn_JTFH01001924v1_decoy
chrUn_JTFH01001925v1_decoy
chrUn_JTFH01001926v1_decoy
chrUn_JTFH01001927v1_decoy
chrUn_JTFH01001928v1_decoy
chrUn_JTFH01001929v1_decoy
chrUn_JTFH01001930v1_decoy
chrUn_JTFH01001931v1_decoy
chrUn_JTFH01001932v1_decoy
chrUn_JTFH01001933v1_decoy
chrUn_JTFH01001934v1_decoy
chrUn_JTFH01001935v1_decoy
chrUn_JTFH01001936v1_decoy
chrUn_JTFH01001937v1_decoy
chrUn_JTFH01001938v1_decoy
chrUn_JTFH01001939v1_decoy
chrUn_JTFH01001940v1_decoy
chrUn_JTFH01001941v1_decoy
chrUn_JTFH01001942v1_decoy
chrUn_JTFH01001943v1_decoy
chrUn_JTFH01001944v1_decoy
chrUn_JTFH01001945v1_decoy
chrUn_JTFH01001946v1_decoy
chrUn_JTFH01001947v1_decoy
chrUn_JTFH01001948v1_decoy
chrUn_JTFH01001949v1_decoy
chrUn_JTFH01001950v1_decoy
chrUn_JTFH01001951v1_decoy
chrUn_JTFH01001952v1_decoy
chrUn_JTFH01001953v1_decoy
chrUn_JTFH01001954v1_decoy
chrUn_JTFH01001955v1_decoy
chrUn_JTFH01001956v1_decoy
chrUn_JTFH01001957v1_decoy
chrUn_JTFH01001958v1_decoy
chrUn_JTFH01001959v1_decoy
chrUn_JTFH01001960v1_decoy
chrUn_JTFH01001961v1_decoy
chrUn_JTFH01001962v1_decoy
chrUn_JTFH01001963v1_decoy
chrUn_JTFH01001964v1_decoy
chrUn_JTFH01001965v1_decoy
chrUn_JTFH01001966v1_decoy
chrUn_JTFH01001967v1_decoy
chrUn_JTFH01001968v1_decoy
chrUn_JTFH01001969v1_decoy
chrUn_JTFH01001970v1_decoy
chrUn_JTFH01001971v1_decoy
chrUn_JTFH01001972v1_decoy
chrUn_JTFH01001973v1_decoy
chrUn_JTFH01001974v1_decoy
chrUn_JTFH01001975v1_decoy
chrUn_JTFH01001976v1_decoy
chrUn_JTFH01001977v1_decoy
chrUn_JTFH01001978v1_decoy
chrUn_JTFH01001979v1_decoy
chrUn_JTFH01001980v1_decoy
chrUn_JTFH01001981v1_decoy
chrUn_JTFH01001982v1_decoy
chrUn_JTFH01001983v1_decoy
chrUn_JTFH01001984v1_decoy
chrUn_JTFH01001985v1_decoy
chrUn_JTFH01001986v1_decoy
chrUn_JTFH01001987v1_decoy
chrUn_JTFH01001988v1_decoy
chrUn_JTFH01001989v1_decoy
chrUn_JTFH01001990v1_decoy
chrUn_JTFH01001991v1_decoy
chrUn_JTFH01001992v1_decoy
chrUn_JTFH01001993v1_decoy
chrUn_JTFH01001994v1_decoy
chrUn_JTFH01001995v1_decoy
chrUn_JTFH01001996v1_decoy
chrUn_JTFH01001997v1_decoy
chrUn_JTFH01001998v1_decoy
HLA-A*01:01:01:01
HLA-A*01:01:01:02N
HLA-A*01:01:38L
HLA-A*01:02
HLA-A*01:03
HLA-A*01:04N
HLA-A*01:09
HLA-A*01:11N
HLA-A*01:14
HLA-A*01:16N
HLA-A*01:20
HLA-A*02:01:01:01
HLA-A*02:01:01:02L
HLA-A*02:01:01:03
HLA-A*02:01:01:04
HLA-A*02:02:01
HLA-A*02:03:01
HLA-A*02:03:03
HLA-A*02:05:01
HLA-A*02:06:01
HLA-A*02:07:01
HLA-A*02:10
HLA-A*02:251
HLA-A*02:259
HLA-A*02:264
HLA-A*02:265
HLA-A*02:266
HLA-A*02:269
HLA-A*02:279
HLA-A*02:32N
HLA-A*02:376
HLA-A*02:43N
HLA-A*02:455
HLA-A*02:48
HLA-A*02:51
HLA-A*02:533
HLA-A*02:53N
HLA-A*02:57
HLA-A*02:60:01
HLA-A*02:65
HLA-A*02:68
HLA-A*02:77
HLA-A*02:81
HLA-A*02:89
HLA-A*02:95
HLA-A*03:01:01:01
HLA-A*03:01:01:02N
HLA-A*03:01:01:03
HLA-A*03:02:01
HLA-A*03:11N
HLA-A*03:21N
HLA-A*03:36N
HLA-A*11:01:01
HLA-A*11:01:18
HLA-A*11:02:01
HLA-A*11:05
HLA-A*11:110
HLA-A*11:25
HLA-A*11:50Q
HLA-A*11:60
HLA-A*11:69N
HLA-A*11:74
HLA-A*11:75
HLA-A*11:77
HLA-A*23:01:01
HLA-A*23:09
HLA-A*23:38N
HLA-A*24:02:01:01
HLA-A*24:02:01:02L
HLA-A*24:02:01:03
HLA-A*24:02:03Q
HLA-A*24:02:10
HLA-A*24:03:01
HLA-A*24:07:01
HLA-A*24:08
HLA-A*24:09N
HLA-A*24:10:01
HLA-A*24:11N
HLA-A*24:152
HLA-A*24:20
HLA-A*24:215
HLA-A*24:61
HLA-A*24:86N
HLA-A*25:01:01
HLA-A*26:01:01
HLA-A*26:11N
HLA-A*26:15
HLA-A*26:50
HLA-A*29:01:01:01
HLA-A*29:01:01:02N
HLA-A*29:02:01:01
HLA-A*29:02:01:02
HLA-A*29:46
HLA-A*30:01:01
HLA-A*30:02:01:01
HLA-A*30:02:01:02
HLA-A*30:04:01
HLA-A*30:89
HLA-A*31:01:02
HLA-A*31:01:23
HLA-A*31:04
HLA-A*31:14N
HLA-A*31:46
HLA-A*32:01:01
HLA-A*32:06
HLA-A*33:01:01
HLA-A*33:03:01
HLA-A*33:07
HLA-A*34:01:01
HLA-A*34:02:01
HLA-A*36:01
HLA-A*43:01
HLA-A*66:01:01
HLA-A*66:17
HLA-A*68:01:01:01
HLA-A*68:01:01:02
HLA-A*68:01:02:01
HLA-A*68:01:02:02
HLA-A*68:02:01:01
HLA-A*68:02:01:02
HLA-A*68:02:01:03
HLA-A*68:02:02
HLA-A*68:03:01
HLA-A*68:08:01
HLA-A*68:113
HLA-A*68:17
HLA-A*68:18N
HLA-A*68:22
HLA-A*68:71
HLA-A*69:01
HLA-A*74:01
HLA-A*74:02:01:01
HLA-A*74:02:01:02
HLA-A*80:01:01:01
HLA-A*80:01:01:02
HLA-B*07:02:01
HLA-B*07:05:01
HLA-B*07:06
HLA-B*07:156
HLA-B*07:33:01
HLA-B*07:41
HLA-B*07:44
HLA-B*07:50
HLA-B*08:01:01
HLA-B*08:08N
HLA-B*08:132
HLA-B*08:134
HLA-B*08:19N
HLA-B*08:20
HLA-B*08:33
HLA-B*08:79
HLA-B*13:01:01
HLA-B*13:02:01
HLA-B*13:02:03
HLA-B*13:02:09
HLA-B*13:08
HLA-B*13:15
HLA-B*13:25
HLA-B*14:01:01
HLA-B*14:02:01
HLA-B*14:07N
HLA-B*15:01:01:01
HLA-B*15:01:01:02N
HLA-B*15:01:01:03
HLA-B*15:02:01
HLA-B*15:03:01
HLA-B*15:04:01
HLA-B*15:07:01
HLA-B*15:108
HLA-B*15:10:01
HLA-B*15:11:01
HLA-B*15:13:01
HLA-B*15:16:01
HLA-B*15:17:01:01
HLA-B*15:17:01:02
HLA-B*15:18:01
HLA-B*15:220
HLA-B*15:25:01
HLA-B*15:27:01
HLA-B*15:32:01
HLA-B*15:42
HLA-B*15:58
HLA-B*15:66
HLA-B*15:77
HLA-B*15:83
HLA-B*18:01:01:01
HLA-B*18:01:01:02
HLA-B*18:02
HLA-B*18:03
HLA-B*18:17N
HLA-B*18:26
HLA-B*18:94N
HLA-B*27:04:01
HLA-B*27:05:02
HLA-B*27:05:18
HLA-B*27:06
HLA-B*27:07:01
HLA-B*27:131
HLA-B*27:24
HLA-B*27:25
HLA-B*27:32
HLA-B*35:01:01:01
HLA-B*35:01:01:02
HLA-B*35:01:22
HLA-B*35:02:01
HLA-B*35:03:01
HLA-B*35:05:01
HLA-B*35:08:01
HLA-B*35:14:02
HLA-B*35:241
HLA-B*35:41
HLA-B*37:01:01
HLA-B*37:01:05
HLA-B*38:01:01
HLA-B*38:02:01
HLA-B*38:14
HLA-B*39:01:01:01
HLA-B*39:01:01:02L
HLA-B*39:01:01:03
HLA-B*39:01:03
HLA-B*39:01:16
HLA-B*39:01:21
HLA-B*39:05:01
HLA-B*39:06:02
HLA-B*39:10:01
HLA-B*39:13:02
HLA-B*39:14
HLA-B*39:34
HLA-B*39:38Q
HLA-B*40:01:01
HLA-B*40:01:02
HLA-B*40:02:01
HLA-B*40:03
HLA-B*40:06:01:01
HLA-B*40:06:01:02
HLA-B*40:10:01
HLA-B*40:150
HLA-B*40:40
HLA-B*40:72:01
HLA-B*40:79
HLA-B*41:01:01
HLA-B*41:02:01
HLA-B*42:01:01
HLA-B*42:02
HLA-B*42:08
HLA-B*44:02:01:01
HLA-B*44:02:01:02S
HLA-B*44:02:01:03
HLA-B*44:02:17
HLA-B*44:02:27
HLA-B*44:03:01
HLA-B*44:03:02
HLA-B*44:04
HLA-B*44:09
HLA-B*44:138Q
HLA-B*44:150
HLA-B*44:23N
HLA-B*44:26
HLA-B*44:46
HLA-B*44:49
HLA-B*44:56N
HLA-B*45:01:01
HLA-B*45:04
HLA-B*46:01:01
HLA-B*46:01:05
HLA-B*47:01:01:01
HLA-B*47:01:01:02
HLA-B*48:01:01
HLA-B*48:03:01
HLA-B*48:04
HLA-B*48:08
HLA-B*49:01:01
HLA-B*49:32
HLA-B*50:01:01
HLA-B*51:01:01
HLA-B*51:01:02
HLA-B*51:02:01
HLA-B*51:07:01
HLA-B*51:42
HLA-B*52:01:01:01
HLA-B*52:01:01:02
HLA-B*52:01:01:03
HLA-B*52:01:02
HLA-B*53:01:01
HLA-B*53:11
HLA-B*54:01:01
HLA-B*54:18
HLA-B*55:01:01
HLA-B*55:01:03
HLA-B*55:02:01
HLA-B*55:12
HLA-B*55:24
HLA-B*55:48
HLA-B*56:01:01
HLA-B*56:03
HLA-B*56:04
HLA-B*57:01:01
HLA-B*57:03:01
HLA-B*57:06
HLA-B*57:11
HLA-B*57:29
HLA-B*58:01:01
HLA-B*58:31N
HLA-B*59:01:01:01
HLA-B*59:01:01:02
HLA-B*67:01:01
HLA-B*67:01:02
HLA-B*67:02
HLA-B*73:01
HLA-B*78:01:01
HLA-B*81:01
HLA-B*82:02:01
HLA-C*01:02:01
HLA-C*01:02:11
HLA-C*01:02:29
HLA-C*01:02:30
HLA-C*01:03
HLA-C*01:06
HLA-C*01:08
HLA-C*01:14
HLA-C*01:21
HLA-C*01:30
HLA-C*01:40
HLA-C*02:02:02:01
HLA-C*02:02:02:02
HLA-C*02:10
HLA-C*02:11
HLA-C*02:16:02
HLA-C*02:69
HLA-C*02:85
HLA-C*02:86
HLA-C*02:87
HLA-C*03:02:01
HLA-C*03:02:02:01
HLA-C*03:02:02:02
HLA-C*03:02:02:03
HLA-C*03:03:01
HLA-C*03:04:01:01
HLA-C*03:04:01:02
HLA-C*03:04:02
HLA-C*03:04:04
HLA-C*03:05
HLA-C*03:06
HLA-C*03:100
HLA-C*03:13:01
HLA-C*03:20N
HLA-C*03:219
HLA-C*03:261
HLA-C*03:40:01
HLA-C*03:41:02
HLA-C*03:46
HLA-C*03:61
HLA-C*04:01:01:01
HLA-C*04:01:01:02
HLA-C*04:01:01:03
HLA-C*04:01:01:04
HLA-C*04:01:01:05
HLA-C*04:01:62
HLA-C*04:03:01
HLA-C*04:06
HLA-C*04:09N
HLA-C*04:128
HLA-C*04:161
HLA-C*04:177
HLA-C*04:70
HLA-C*04:71
HLA-C*05:01:01:01
HLA-C*05:01:01:02
HLA-C*05:08
HLA-C*05:09:01
HLA-C*05:93
HLA-C*06:02:01:01
HLA-C*06:02:01:02
HLA-C*06:02:01:03
HLA-C*06:23
HLA-C*06:24
HLA-C*06:46N
HLA-C*07:01:01:01
HLA-C*07:01:01:02
HLA-C*07:01:02
HLA-C*07:01:19
HLA-C*07:01:27
HLA-C*07:01:45
HLA-C*07:02:01:01
HLA-C*07:02:01:02
HLA-C*07:02:01:03
HLA-C*07:02:01:04
HLA-C*07:02:01:05
HLA-C*07:02:05
HLA-C*07:02:06
HLA-C*07:02:64
HLA-C*07:04:01
HLA-C*07:04:02
HLA-C*07:06
HLA-C*07:149
HLA-C*07:18
HLA-C*07:19
HLA-C*07:26
HLA-C*07:30
HLA-C*07:32N
HLA-C*07:384
HLA-C*07:385
HLA-C*07:386
HLA-C*07:391
HLA-C*07:392
HLA-C*07:49
HLA-C*07:56:02
HLA-C*07:66
HLA-C*07:67
HLA-C*08:01:01
HLA-C*08:01:03
HLA-C*08:02:01:01
HLA-C*08:02:01:02
HLA-C*08:03:01
HLA-C*08:04:01
HLA-C*08:112
HLA-C*08:20
HLA-C*08:21
HLA-C*08:22
HLA-C*08:24
HLA-C*08:27
HLA-C*08:36N
HLA-C*08:40
HLA-C*08:41
HLA-C*08:62
HLA-C*12:02:02
HLA-C*12:03:01:01
HLA-C*12:03:01:02
HLA-C*12:08
HLA-C*12:13
HLA-C*12:19
HLA-C*12:22
HLA-C*12:99
HLA-C*14:02:01
HLA-C*14:03
HLA-C*14:21N
HLA-C*14:23
HLA-C*15:02:01
HLA-C*15:05:01
HLA-C*15:05:02
HLA-C*15:13
HLA-C*15:16
HLA-C*15:17
HLA-C*15:96Q
HLA-C*16:01:01
HLA-C*16:02:01
HLA-C*16:04:01
HLA-C*17:01:01:01
HLA-C*17:01:01:02
HLA-C*17:01:01:03
HLA-C*17:03
HLA-C*18:01
HLA-DQA1*01:01:02
HLA-DQA1*01:02:01:01
HLA-DQA1*01:02:01:02
HLA-DQA1*01:02:01:03
HLA-DQA1*01:02:01:04
HLA-DQA1*01:03:01:01
HLA-DQA1*01:03:01:02
HLA-DQA1*01:04:01:01
HLA-DQA1*01:04:01:02
HLA-DQA1*01:05:01
HLA-DQA1*01:07
HLA-DQA1*01:10
HLA-DQA1*01:11
HLA-DQA1*02:01
HLA-DQA1*03:01:01
HLA-DQA1*03:02
HLA-DQA1*03:03:01
HLA-DQA1*04:01:02:01
HLA-DQA1*04:01:02:02
HLA-DQA1*04:02
HLA-DQA1*05:01:01:01
HLA-DQA1*05:01:01:02
HLA-DQA1*05:03
HLA-DQA1*05:05:01:01
HLA-DQA1*05:05:01:02
HLA-DQA1*05:05:01:03
HLA-DQA1*05:11
HLA-DQA1*06:01:01
HLA-DQB1*02:01:01
HLA-DQB1*02:02:01
HLA-DQB1*03:01:01:01
HLA-DQB1*03:01:01:02
HLA-DQB1*03:01:01:03
HLA-DQB1*03:02:01
HLA-DQB1*03:03:02:01
HLA-DQB1*03:03:02:02
HLA-DQB1*03:03:02:03
HLA-DQB1*03:05:01
HLA-DQB1*05:01:01:01
HLA-DQB1*05:01:01:02
HLA-DQB1*05:03:01:01
HLA-DQB1*05:03:01:02
HLA-DQB1*06:01:01
HLA-DQB1*06:02:01
HLA-DQB1*06:03:01
HLA-DQB1*06:09:01
HLA-DRB1*01:01:01
HLA-DRB1*01:02:01
HLA-DRB1*03:01:01:01
HLA-DRB1*03:01:01:02
HLA-DRB1*04:03:01
HLA-DRB1*07:01:01:01
HLA-DRB1*07:01:01:02
HLA-DRB1*08:03:02
HLA-DRB1*09:21
HLA-DRB1*10:01:01
HLA-DRB1*11:01:01
HLA-DRB1*11:01:02
HLA-DRB1*11:04:01
HLA-DRB1*12:01:01
HLA-DRB1*12:17
HLA-DRB1*13:01:01
HLA-DRB1*13:02:01
HLA-DRB1*14:05:01
HLA-DRB1*14:54:01
HLA-DRB1*15:01:01:01
HLA-DRB1*15:01:01:02
HLA-DRB1*15:01:01:03
HLA-DRB1*15:01:01:04
HLA-DRB1*15:02:01
HLA-DRB1*15:03:01:01
HLA-DRB1*15:03:01:02
HLA-DRB1*16:02:01
delly-0.9.1/excludeTemplates/mouse.mm10.excl.tsv 0000664 0000000 0000000 00000012066 14147641277 0021555 0 ustar 00root root 0000000 0000000 chr1 0 100000 telomere
chr1 110000 3000000 centromere
chr1 195371971 195471971 telomere
chr2 0 100000 telomere
chr2 110000 3000000 centromere
chr2 182013224 182113224 telomere
chr3 0 100000 telomere
chr3 110000 3000000 centromere
chr3 159939680 160039680 telomere
chr4 0 100000 telomere
chr4 110000 3000000 centromere
chr4 156408116 156508116 telomere
chr5 0 100000 telomere
chr5 110000 3000000 centromere
chr5 151734684 151834684 telomere
chr6 0 100000 telomere
chr6 110000 3000000 centromere
chr6 149636546 149736546 telomere
chr7 0 100000 telomere
chr7 110000 3000000 centromere
chr7 145341459 145441459 telomere
chr8 0 100000 telomere
chr8 110000 3000000 centromere
chr8 129301213 129401213 telomere
chr9 0 100000 telomere
chr9 110000 3000000 centromere
chr9 124495110 124595110 telomere
chrX 110000 3000000 centromere
chrX 0 100000 telomere
chrX 170931299 171031299 telomere
chrY 0 100000 telomere
chrY 91644698 91744698 telomere
chr10 0 100000 telomere
chr10 110000 3000000 centromere
chr10 130594993 130694993 telomere
chr11 0 100000 telomere
chr11 110000 3000000 centromere
chr11 121982543 122082543 telomere
chr12 0 100000 telomere
chr12 110000 3000000 centromere
chr12 120029022 120129022 telomere
chr13 0 100000 telomere
chr13 110000 3000000 centromere
chr13 120321639 120421639 telomere
chr14 0 100000 telomere
chr14 110000 3000000 centromere
chr14 124802244 124902244 telomere
chr15 110000 3000000 centromere
chr15 0 100000 telomere
chr15 103943685 104043685 telomere
chr16 0 100000 telomere
chr16 110000 3000000 centromere
chr16 98107768 98207768 telomere
chr17 110000 3000000 centromere
chr17 94887271 94987271 telomere
chr17 0 100000 telomere
chr18 0 100000 telomere
chr18 110000 3000000 centromere
chr18 90602639 90702639 telomere
chr19 0 100000 telomere
chr19 110000 3000000 centromere
chr19 61331566 61431566 telomere
1 0 100000 telomere
1 110000 3000000 centromere
1 195371971 195471971 telomere
2 0 100000 telomere
2 110000 3000000 centromere
2 182013224 182113224 telomere
3 0 100000 telomere
3 110000 3000000 centromere
3 159939680 160039680 telomere
4 0 100000 telomere
4 110000 3000000 centromere
4 156408116 156508116 telomere
5 0 100000 telomere
5 110000 3000000 centromere
5 151734684 151834684 telomere
6 0 100000 telomere
6 110000 3000000 centromere
6 149636546 149736546 telomere
7 0 100000 telomere
7 110000 3000000 centromere
7 145341459 145441459 telomere
8 0 100000 telomere
8 110000 3000000 centromere
8 129301213 129401213 telomere
9 0 100000 telomere
9 110000 3000000 centromere
9 124495110 124595110 telomere
X 110000 3000000 centromere
X 0 100000 telomere
X 170931299 171031299 telomere
Y 0 100000 telomere
Y 91644698 91744698 telomere
10 0 100000 telomere
10 110000 3000000 centromere
10 130594993 130694993 telomere
11 0 100000 telomere
11 110000 3000000 centromere
11 121982543 122082543 telomere
12 0 100000 telomere
12 110000 3000000 centromere
12 120029022 120129022 telomere
13 0 100000 telomere
13 110000 3000000 centromere
13 120321639 120421639 telomere
14 0 100000 telomere
14 110000 3000000 centromere
14 124802244 124902244 telomere
15 110000 3000000 centromere
15 0 100000 telomere
15 103943685 104043685 telomere
16 0 100000 telomere
16 110000 3000000 centromere
16 98107768 98207768 telomere
17 110000 3000000 centromere
17 94887271 94987271 telomere
17 0 100000 telomere
18 0 100000 telomere
18 110000 3000000 centromere
18 90602639 90702639 telomere
19 0 100000 telomere
19 110000 3000000 centromere
19 61331566 61431566 telomere
chr1_GL456210_random
chr1_GL456211_random
chr1_GL456212_random
chr1_GL456213_random
chr1_GL456221_random
chr4_GL456216_random
chr4_GL456350_random
chr4_JH584292_random
chr4_JH584293_random
chr4_JH584294_random
chr4_JH584295_random
chr5_GL456354_random
chr5_JH584296_random
chr5_JH584297_random
chr5_JH584298_random
chr5_JH584299_random
chr7_GL456219_random
chrUn_GL456239
chrUn_GL456359
chrUn_GL456360
chrUn_GL456366
chrUn_GL456367
chrUn_GL456368
chrUn_GL456370
chrUn_GL456372
chrUn_GL456378
chrUn_GL456379
chrUn_GL456381
chrUn_GL456382
chrUn_GL456383
chrUn_GL456385
chrUn_GL456387
chrUn_GL456389
chrUn_GL456390
chrUn_GL456392
chrUn_GL456393
chrUn_GL456394
chrUn_GL456396
chrUn_JH584304
chrX_GL456233_random
chrY_JH584300_random
chrY_JH584301_random
chrY_JH584302_random
chrY_JH584303_random
GL456210
GL456211
GL456212
GL456213
GL456221
GL456216
GL456350
JH584292
JH584293
JH584294
JH584295
GL456354
JH584296
JH584297
JH584298
JH584299
GL456219
GL456239
GL456359
GL456360
GL456366
GL456367
GL456368
GL456370
GL456372
GL456378
GL456379
GL456381
GL456382
GL456383
GL456385
GL456387
GL456389
GL456390
GL456392
GL456393
GL456394
GL456396
JH584304
GL456233
JH584300
JH584301
JH584302
JH584303
GL456210.1
GL456211.1
GL456212.1
GL456213.1
GL456221.1
GL456216.1
GL456350.1
JH584292.1
JH584293.1
JH584294.1
JH584295.1
GL456354.1
JH584296.1
JH584297.1
JH584298.1
JH584299.1
GL456219.1
GL456239.1
GL456359.1
GL456360.1
GL456366.1
GL456367.1
GL456368.1
GL456370.1
GL456372.1
GL456378.1
GL456379.1
GL456381.1
GL456382.1
GL456383.1
GL456385.1
GL456387.1
GL456389.1
GL456390.1
GL456392.1
GL456393.1
GL456394.1
GL456396.1
JH584304.1
GL456233.1
JH584300.1
JH584301.1
JH584302.1
JH584303.1
chrMT
chrM
MT
delly-0.9.1/excludeTemplates/mouse.mm9.excl.tsv 0000664 0000000 0000000 00000002476 14147641277 0021511 0 ustar 00root root 0000000 0000000 chr1 0 3000000 centromere
chr2 0 3000000 centromere
chr3 0 3000000 centromere
chr4 0 3000000 centromere
chr5 0 3000000 centromere
chr6 0 3000000 centromere
chr7 0 3000000 centromere
chr8 0 3000000 centromere
chr9 0 3000000 centromere
chrX 0 3000000 centromere
chrY 2902555 5902555 centromere
chr10 0 3000000 centromere
chr11 0 3000000 centromere
chr12 0 3000000 centromere
chr13 0 3000000 centromere
chr14 0 3000000 centromere
chr15 0 3000000 centromere
chr16 0 3000000 centromere
chr17 0 3000000 centromere
chr18 0 3000000 centromere
chr19 0 3000000 centromere
1 0 3000000 centromere
2 0 3000000 centromere
3 0 3000000 centromere
4 0 3000000 centromere
5 0 3000000 centromere
6 0 3000000 centromere
7 0 3000000 centromere
8 0 3000000 centromere
9 0 3000000 centromere
X 0 3000000 centromere
Y 2902555 5902555 centromere
10 0 3000000 centromere
11 0 3000000 centromere
12 0 3000000 centromere
13 0 3000000 centromere
14 0 3000000 centromere
15 0 3000000 centromere
16 0 3000000 centromere
17 0 3000000 centromere
18 0 3000000 centromere
19 0 3000000 centromere
chr13_random
chr16_random
chr17_random
chr1_random
chr3_random
chr4_random
chr5_random
chr7_random
chr8_random
chr9_random
chrUn_random
chrX_random
chrY_random
13_random
16_random
17_random
1_random
3_random
4_random
5_random
7_random
8_random
9_random
Un_random
X_random
Y_random
delly-0.9.1/excludeTemplates/yeast.sacCer3.excl.tsv 0000664 0000000 0000000 00000002656 14147641277 0022267 0 ustar 00root root 0000000 0000000 chrI 1 801 telomere
chrI 229411 230218 telomere
chrII 1 6608 telomere
chrII 307587 308887 telomere
chrII 812379 813184 telomere
chrIII 1 1098 telomere
chrIII 315354 316620 telomere
chrIV 1 904 telomere
chrIV 1524625 1531933 telomere
chrIX 1 7784 telomere
chrIX 439068 439888 telomere
chrV 1 6473 telomere
chrV 549566 549814 telomere
chrV 569599 576874 telomere
chrVI 1 6155 telomere
chrVI 269731 270161 telomere
chrVII 1 781 telomere
chrVII 1083635 1090940 telomere
chrVIII 1 5505 telomere
chrVIII 556105 562643 telomere
chrX 1 7767 telomere
chrX 744902 745751 telomere
chrXI 1 807 telomere
chrXI 665904 666816 telomere
chrXII 1 12085 telomere
chrXII 1064281 1078177 telomere
chrXIII 1 6344 telomere
chrXIII 923541 924431 telomere
chrXIV 1 7428 telomere
chrXIV 783278 784333 telomere
chrXV 1 847 telomere
chrXV 1083922 1091291 telomere
chrXVI 1 7223 telomere
chrXVI 942396 948010 telomere
chrI 151465 151582 centromere
chrII 238207 238323 centromere
chrIII 114385 114501 centromere
chrIV 449711 449821 centromere
chrIX 355629 355745 centromere
chrV 151987 152104 centromere
chrVI 148510 148627 centromere
chrVII 496920 497038 centromere
chrVIII 105586 105703 centromere
chrX 436307 436425 centromere
chrXI 440129 440246 centromere
chrXII 5724 11196 centromere
chrXII 150828 150947 centromere
chrXII 1065156 1071645 centromere
chrXIII 268031 268149 centromere
chrXIV 628758 628875 centromere
chrXV 326584 326702 centromere
chrXVI 555957 556073 centromere
delly-0.9.1/singularity/ 0000775 0000000 0000000 00000000000 14147641277 0015221 5 ustar 00root root 0000000 0000000 delly-0.9.1/singularity/README.md 0000664 0000000 0000000 00000000373 14147641277 0016503 0 ustar 00root root 0000000 0000000 You can build a [delly](https://github.com/dellytools/delly) singularity container (SIF file) using
`sudo singularity build delly.sif delly.def`
Once you have built the container you can run analysis using
`singularity exec delly.sif delly --help`
delly-0.9.1/singularity/delly.def 0000664 0000000 0000000 00000002223 14147641277 0017011 0 ustar 00root root 0000000 0000000 # Build image
BootStrap: library
From: ubuntu:16.04
Stage: build
%post
apt-get -y update
apt-get install -y autoconf build-essential cmake g++ gfortran git libcurl4-gnutls-dev hdf5-tools libboost-date-time-dev libboost-program-options-dev libboost-system-dev libboost-filesystem-dev libboost-iostreams-dev libbz2-dev libhdf5-dev libncurses-dev liblzma-dev zlib1g-dev
apt-get clean
rm -rf /var/lib/apt/lists/*
cd /opt
git clone --recursive https://github.com/dellytools/delly.git
cd /opt/delly/
make STATIC=1 all
make install
# Final image
BootStrap: library
From: alpine:latest
Stage: final
%files from build
/opt/delly/bin/delly /bin/delly
%post
DELLYVERSION=`./bin/delly --version`
echo "export DELLYVERSION=\"${DELLYVERSION}\"" >> $SINGULARITY_ENVIRONMENT
CREATEDATE=`date`
echo "export CREATEDATE=\"${CREATEDATE}\"" >> $SINGULARITY_ENVIRONMENT
%environment
export PATH=/bin:$PATH
%runscript
delly
%labels
Singularity definition file version v0.0.1
%help
This is a container running delly.
You can run delly on files inside the directory where you start
the container, i.e.: singularity exec delly.sif delly call -g ref.fa input.bam
delly-0.9.1/src/ 0000775 0000000 0000000 00000000000 14147641277 0013436 5 ustar 00root root 0000000 0000000 delly-0.9.1/src/align.h 0000664 0000000 0000000 00000016367 14147641277 0014716 0 ustar 00root root 0000000 0000000 #ifndef ALIGN_H
#define ALIGN_H
#include
#include
namespace torali
{
template
struct DnaScore {
typedef TScoreValue TValue;
TScoreValue match;
TScoreValue mismatch;
TScoreValue go;
TScoreValue ge;
TScoreValue inf;
DnaScore() {
match = 5;
mismatch = -4;
go = -10;
ge = -1;
inf = 1000000;
}
DnaScore(TScoreValue m, TScoreValue mm, TScoreValue gapopen, TScoreValue gapextension) : match(m), mismatch(mm), go(gapopen), ge(gapextension) {
inf = 1000000;
}
};
// Configure the DP matrix
template
class AlignConfig;
template<>
class AlignConfig {};
template<>
class AlignConfig {};
template<>
class AlignConfig {};
template<>
class AlignConfig {};
template
inline TCost
_verticalGap(AlignConfig const&, TPos1 const, TPos2 const, TCost const cost)
{
return cost;
}
template
inline TCost
_verticalGap(AlignConfig const&, TPos1 const i, TPos2 const iend, TCost const cost)
{
if ((i == (TPos1) 0) || (i == (TPos1) iend)) return 0;
else return cost;
}
template
inline TCost
_horizontalGap(AlignConfig const&, TPos1 const, TPos2 const, TCost const cost)
{
return cost;
}
template
inline TCost
_horizontalGap(AlignConfig const&, TPos1 const i, TPos2 const iend, TCost const cost)
{
if ((i == (TPos1) 0) || (i == (TPos1) iend)) return 0;
else return cost;
}
template
inline std::size_t
_size(boost::multi_array const& a, TDimension const i) {
return a.shape()[i];
}
template
inline std::size_t
_size(std::string const& s, TDimension const i) {
if (i) return s.size();
return 1;
}
template
inline int
_score(std::string const& s1, std::string const& s2, TProfile const&, TProfile const&, TAIndex row, TAIndex col, TScore const& sc)
{
return (s1[row] == s2[col] ? sc.match : sc.mismatch );
}
template
inline int
_score(boost::multi_array const& a1, boost::multi_array const& a2, TProfile const& p1, TProfile const& p2, TAIndex row, TAIndex col, TScore const& sc)
{
if ((a1.shape()[0] == 1) && (a2.shape()[0] == 1)) {
if (a1[0][row] == a2[0][col]) return sc.match;
else return sc.mismatch;
} else {
typedef typename TProfile::index TPIndex;
float score = 0;
for(TPIndex k1 = 0; k1<5; ++k1)
for(TPIndex k2 = 0; k2<5; ++k2)
score += p1[k1][row] * p2[k2][col] * ( (k1 == k2) ? sc.match : sc.mismatch );
return ((int) score);
}
}
template
inline void
_createProfile(std::string const& s, TProfile& p)
{
typedef typename TProfile::index TPIndex;
p.resize(boost::extents[6][s.size()]); // 'A', 'C', 'G', 'T', 'N', '-'
for (std::size_t j = 0; j < s.size(); ++j) {
for(TPIndex k = 0; k < 6; ++k) p[k][j] = 0;
if ((s[j] == 'A') || (s[j] == 'a')) p[0][j] += 1;
else if ((s[j] == 'C') || (s[j] == 'c')) p[1][j] += 1;
else if ((s[j] == 'G') || (s[j] == 'g')) p[2][j] += 1;
else if ((s[j] == 'T') || (s[j] == 't')) p[3][j] += 1;
else if ((s[j] == 'N') || (s[j] == 'n')) p[4][j] += 1;
else if (s[j] == '-') p[5][j] += 1;
}
}
template
inline void
_createProfile(boost::multi_array const& a, TProfile& p)
{
typedef typename boost::multi_array::index TAIndex;
typedef typename TProfile::index TPIndex;
p.resize(boost::extents[6][a.shape()[1]]); // 'A', 'C', 'G', 'T', 'N', '-'
// Ignore leading and trailing gaps
std::vector firstAlignedNuc(a.shape()[0], -1);
std::vector lastAlignedNuc(a.shape()[0], a.shape()[1]);
for(TAIndex i = 0; i < (TAIndex) a.shape()[0]; ++i) {
for (TAIndex j = 0; j < (TAIndex) a.shape()[1]; ++j) {
if (firstAlignedNuc[i] == -1) {
if (a[i][j] != '-') firstAlignedNuc[i] = j;
}
if (firstAlignedNuc[i] != -1) {
if (a[i][j] != '-') lastAlignedNuc[i] = j;
}
}
}
// Compute alignment profile
for (TAIndex j = 0; j < (TAIndex) a.shape()[1]; ++j) {
for(TPIndex k = 0; k < 6; ++k) p[k][j] = 0;
int sum = 0;
for(TAIndex i = 0; i < (TAIndex) a.shape()[0]; ++i) {
if ((firstAlignedNuc[i] <= j) && (j <= lastAlignedNuc[i])) {
++sum;
if ((a[i][j] == 'A') || (a[i][j] == 'a')) p[0][j] += 1;
else if ((a[i][j] == 'C') || (a[i][j] == 'c')) p[1][j] += 1;
else if ((a[i][j] == 'G') || (a[i][j] == 'g')) p[2][j] += 1;
else if ((a[i][j] == 'T') || (a[i][j] == 't')) p[3][j] += 1;
else if ((a[i][j] == 'N') || (a[i][j] == 'n')) p[4][j] += 1;
else if (a[i][j] == '-') p[5][j] += 1;
else --sum;
}
}
for(TPIndex k = 0; k<6; ++k) p[k][j] /= sum;
}
}
template
inline void
_createLocalAlignment(TTrace const& trace, std::string const& s1, std::string const& s2, TAlign& align, int32_t const maxRow, int32_t const maxCol)
{
align.resize(boost::extents[2][trace.size()]);
std::size_t row = maxRow;
std::size_t col = maxCol;
std::size_t ai = 0;
for(typename TTrace::const_reverse_iterator itT = trace.rbegin(); itT != trace.rend(); ++itT, ++ai) {
if (*itT == 's') {
align[0][ai] = s1[row++];
align[1][ai] = s2[col++];
} else if (*itT =='h') {
align[0][ai] = '-';
align[1][ai] = s2[col++];
} else {
align[0][ai] = s1[row++];
align[1][ai] = '-';
}
}
}
template
inline void
_createAlignment(TTrace const& trace, std::string const& s1, std::string const& s2, TAlign& align)
{
_createLocalAlignment(trace, s1, s2, align, 0, 0);
}
template
inline void
_createAlignment(TTrace const& trace, boost::multi_array const& a1, boost::multi_array const& a2, TAlign& align)
{
typedef typename TAlign::index TAIndex;
TAIndex numN = a1.shape()[0];
TAIndex numM = a2.shape()[0];
align.resize(boost::extents[numN + numM][trace.size()]);
TAIndex row = 0;
TAIndex col = 0;
TAIndex ai = 0;
for(typename TTrace::const_reverse_iterator itT = trace.rbegin(); itT != trace.rend(); ++itT, ++ai) {
if (*itT == 's') {
for(TAIndex i = 0; i