changeset 0:dbeb4a0abfc6 draft

planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/probecoverage commit 102edc0c210d94e9d72f913e2d18c19220c4167c
author artbio
date Sat, 23 Sep 2017 05:11:49 -0400
parents
children ebe5ec2e244d
files probecoverage.r probecoverage.xml test-data/coverage.tab test-data/graph.pdf test-data/probes.bed test-data/sample1 test-data/sample2 test-data/sample3
diffstat 8 files changed, 1707 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/probecoverage.r	Sat Sep 23 05:11:49 2017 -0400
@@ -0,0 +1,61 @@
+## Setup R error handling to go to stderr
+options( show.error.messages=F,
+       error = function () { cat( geterrmessage(), file=stderr() ); q( "no", 1, F ) } )
+warnings()
+library(optparse)
+library(ggplot2)
+library(reshape2)
+
+option_list <- list(
+    make_option(c("-i", "--input"), type="character", help="Path to dataframe"),
+    make_option(c("-t", "--title"), type="character", help="Main Title"),
+    make_option("--xlab", type = "character", help="X-axis legend"),
+    make_option("--ylab", type = "character", help="Y-axis legend"),
+    make_option("--sample", type = "character", help="a space separated of sample labels"),
+    make_option(c("-o", "--output"), type = "character", help="path to the pdf plot")
+    )
+ 
+parser <- OptionParser(usage = "%prog [options] file", option_list = option_list)
+args = parse_args(parser)
+samples = substr(args$sample, 2, nchar(args$sample)-2)
+samples = strsplit(samples, ", ")
+ 
+# data frames implementation
+
+Table <- read.delim(args$input, header=F)
+headers = c("chromosome", "start", "end", "id")
+for (i in seq(1, length(Table)-4)) {
+    headers <- c(headers, samples[[1]][i])
+colnames(Table) <- headers
+}
+
+## function
+
+cumul <- function(x,y) sum(Table[,y]/(Table$end-Table$start) > x)/length(Table$chromosome)
+
+## end of function
+## let's do a dataframe before plotting
+maxdepth <- trunc(max(Table[,5:length(Table)]/(Table$end-Table$start))) + 20
+graphpoints <- data.frame(1:maxdepth)
+i <- 5
+for (colonne in colnames(Table)[5:length(colnames(Table))]) {
+    graphpoints <- cbind(graphpoints,  mapply(cumul, 1:maxdepth, rep(i, maxdepth)))
+    i <- i + 1
+    }
+colnames(graphpoints) <- c("Depth", colnames(Table)[5:length(Table)])
+maxfrac = max(graphpoints[,2:length(graphpoints)])
+
+graphpoints <- melt(graphpoints, id.vars="Depth", variable.name="Samples", value.name="sample_value")
+
+## GRAPHS
+
+pdf(file=args$output)
+ggplot(data=graphpoints, aes(x=Depth, y=sample_value, group=Samples, colour=Samples)) +
+      geom_line(size=1) +
+      scale_x_continuous(trans='log2', breaks = 2^(seq(0,log(maxdepth, 2)))) +
+      scale_y_continuous(breaks = seq(0, maxfrac, by=maxfrac/10)) +
+      labs(x=args$xlab, y=args$ylab, title=args$title) +
+      theme(legend.position="top", legend.title=element_blank(), legend.text=element_text(colour="blue", size=7))
+
+devname=dev.off()
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/probecoverage.xml	Sat Sep 23 05:11:49 2017 -0400
@@ -0,0 +1,84 @@
+<tool id="probecoverage" name="Probe Coverage" version="0.1.0">
+  <description></description>
+  <requirements>
+        <requirement type="package" version="1.4.1">samtools</requirement>
+        <requirement type="package" version="2.26.0">bedtools</requirement>
+        <requirement type="package" version="1.3.2=r3.3.1_0">r-optparse</requirement>
+        <requirement type="package" version="2.2.1=r3.3.1_0">r-ggplot2</requirement>
+        <requirement type="package" version="1.4.2=r3.3.1_0">r-reshape2</requirement>
+  </requirements>
+  <stdio>
+      <exit_code range="1:" level="fatal" description="Tool exception" />
+  </stdio>
+  <command detect_errors="exit_code"><![CDATA[
+      #for $file in $inputs
+          samtools index '$file' &&
+      #end for
+      bedtools multicov
+          -bams
+              #for $file in $inputs
+                  '$file'
+              #end for
+          -bed '$bed' > $bedtools_table &&
+      Rscript '$__tool_directory__'/probecoverage.r
+          --input '$bedtools_table' 
+          --title 'Probe coverage depth (cumulative distribution)'
+          --xlab 'Depth'
+          --ylab 'Fraction of covered regions with coverage >= Depth'
+          --output '$distribution'
+          --sample "
+              #for $file in $inputs 
+                  $file.element_identifier,
+              #end for
+              "
+              
+  ]]></command>
+ <inputs>
+   <param name="inputs" type="data" format="bam" label="Select multiple Bam alignments to parse" multiple="True"/>
+   <param name="bed" type="data" format="bed" label="Select a bed file describing the genomic regions to analyze" />
+ </inputs>
+
+ <outputs>
+   <data format="tabular" name="bedtools_table" label="bedtools multicov output" />
+   <data format="pdf" name="distribution" label="Cumulative distribution of region coverages" />
+</outputs>
+
+    <tests>
+        <test>
+            <param name="inputs" value="sample1,sample2,sample3" ftype="bam"/>
+            <param name="bed" value="probes.bed" ftype="bed"/>
+            <output file="coverage.tab" name="bedtools_table" />
+            <output file="graph.pdf" name="distribution" />
+        </test>
+    </tests>
+
+
+<help>
+
+**What it does**
+
+Generates counts of alignments from multiple position-sorted BAM files
+that overlap intervals in a BED file.
+
+Shows data as a cumulative plot of numbers of regions with coverage > x.	
+
+**Inputs**
+
+bam alignment files that must be
+
+  - sorted
+  - mapped to the same reference
+
+**Output**
+
+A data frame of computed counts
+
+A pdf file generated by R
+
+</help>
+
+<citations>
+    <citation type="doi">10.1093/bioinformatics/btq033</citation>
+</citations>
+</tool>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/coverage.tab	Sat Sep 23 05:11:49 2017 -0400
@@ -0,0 +1,781 @@
+chr1	21835833	21836044	uc001bet.3_exon_0_0_chr1_21835858_f;uc010odn.2_exon_0_0_chr1_21835858_f;uc010odo.2_exon_0_0_chr1_21835858_f;uc010odp.2_exon_0_0_chr1_21835858_f	0	0	0
+chr1	21877748	21877951	uc001beu.4_exon_0_0_chr1_21877772_f	0	0	0
+chr1	21880448	21880653	uc001bet.3_exon_1_0_chr1_21880471_f;uc001beu.4_exon_1_0_chr1_21880471_f;uc010odn.2_exon_1_0_chr1_21880471_f	0	0	0
+chr1	21887093	21887264	uc001bet.3_exon_2_0_chr1_21887119_f;uc001beu.4_exon_2_0_chr1_21887119_f;uc010odn.2_exon_2_0_chr1_21887119_f;uc010odo.2_exon_1_0_chr1_21887119_f;uc010odp.2_exon_1_0_chr1_21887119_f	0	0	0
+chr1	21887563	21887740	uc001bet.3_exon_3_0_chr1_21887590_f;uc001beu.4_exon_3_0_chr1_21887590_f;uc010odn.2_exon_3_0_chr1_21887631_f;uc010odo.2_exon_2_0_chr1_21887590_f	0	0	0
+chr1	21889573	21889781	uc001bet.3_exon_4_0_chr1_21889603_f;uc001beu.4_exon_4_0_chr1_21889603_f;uc010odn.2_exon_4_0_chr1_21889603_f;uc010odo.2_exon_3_0_chr1_21889603_f;uc010odp.2_exon_2_0_chr1_21889603_f	0	0	0
+chr1	21890498	21890751	uc001bet.3_exon_5_0_chr1_21890534_f;uc001beu.4_exon_5_0_chr1_21890534_f;uc010odn.2_exon_5_0_chr1_21890534_f;uc010odo.2_exon_4_0_chr1_21890534_f;uc010odp.2_exon_3_0_chr1_21890534_f	0	0	0
+chr1	21894568	21894783	uc001bet.3_exon_6_0_chr1_21894597_f;uc001beu.4_exon_6_0_chr1_21894597_f;uc010odn.2_exon_6_0_chr1_21894597_f;uc010odo.2_exon_5_0_chr1_21894597_f;uc010odp.2_exon_4_0_chr1_21894597_f	0	0	0
+chr1	21896758	21896886	uc001bet.3_exon_7_0_chr1_21896798_f;uc001beu.4_exon_7_0_chr1_21896798_f;uc010odn.2_exon_7_0_chr1_21896798_f;uc010odo.2_exon_6_0_chr1_21896798_f;uc010odp.2_exon_5_0_chr1_21896798_f	0	0	0
+chr1	21900133	21900300	uc001bet.3_exon_8_0_chr1_21900158_f;uc001beu.4_exon_8_0_chr1_21900158_f;uc010odn.2_exon_8_0_chr1_21900158_f;uc010odo.2_exon_7_0_chr1_21900158_f;uc010odp.2_exon_6_0_chr1_21900158_f	0	0	0
+chr1	21902193	21902437	uc001bet.3_exon_9_0_chr1_21902226_f;uc001beu.4_exon_9_0_chr1_21902226_f;uc010odn.2_exon_9_0_chr1_21902226_f;uc010odo.2_exon_8_0_chr1_21902226_f;uc010odp.2_exon_7_0_chr1_21902226_f	0	0	0
+chr1	21902993	21903162	uc001bet.3_exon_10_0_chr1_21903015_f;uc001beu.4_exon_10_0_chr1_21903015_f;uc010odn.2_exon_10_0_chr1_21903015_f;uc010odo.2_exon_9_0_chr1_21903015_f;uc010odp.2_exon_8_0_chr1_21903015_f	0	0	0
+chr1	21903853	21904830	uc001bet.3_exon_11_0_chr1_21903876_f;uc001beu.4_exon_11_0_chr1_21903876_f;uc010odn.2_exon_11_0_chr1_21903876_f;uc010odo.2_exon_10_0_chr1_21903876_f;uc010odp.2_exon_9_0_chr1_21903876_f	0	0	0
+chr1	21904843	21904938	uc001bet.3_exon_11_0_chr1_21903876_f;uc001beu.4_exon_11_0_chr1_21903876_f;uc010odn.2_exon_11_0_chr1_21903876_f;uc010odo.2_exon_10_0_chr1_21903876_f;uc010odp.2_exon_9_0_chr1_21903876_f	0	0	0
+chr1	43199039	43201740	uc001cht.1_exon_0_0_chr1_43198764_r;uc001cht.1_exon_1_0_chr1_43201549_r;uc001chu.2_exon_0_0_chr1_43198764_r;uc010ojv.1_exon_0_0_chr1_43198764_r	0	0	0
+chr1	43203864	43204005	uc001cht.1_exon_2_0_chr1_43203900_r;uc001chu.2_exon_1_0_chr1_43203900_r	0	0	0
+chr1	43204059	43204281	uc001cht.1_exon_3_0_chr1_43204092_r;uc001chu.2_exon_2_0_chr1_43204092_r;uc010ojv.1_exon_1_0_chr1_43204092_r	0	0	0
+chr1	43205484	43205942	uc001cht.1_exon_4_0_chr1_43205512_r;uc001chu.2_exon_3_0_chr1_43205512_r;uc010ojv.1_exon_2_0_chr1_43205512_r	0	0	0
+chr1	156211919	156212103	uc001fnt.3_exon_0_0_chr1_156211951_f	0	0	0
+chr1	156212284	156212426	uc001fnt.3_exon_1_0_chr1_156212344_f	0	0	0
+chr1	156212514	156212654	uc001fnt.3_exon_2_0_chr1_156212553_f	0	0	0
+chr1	156212799	156213150	uc001fnt.3_exon_3_0_chr1_156212824_f	0	0	0
+chr1	165370129	165370662	uc001gda.3_exon_0_0_chr1_165370159_r;uc021pea.1_exon_0_0_chr1_165370159_r;uc031prc.1_exon_0_0_chr1_165370159_r	0	0	0
+chr1	165376014	165376193	uc001gda.3_exon_1_0_chr1_165376049_r;uc021pea.1_exon_1_0_chr1_165376049_r;uc031prc.1_exon_1_0_chr1_165376049_r	0	0	0
+chr1	165377434	165377569	uc001gda.3_exon_2_0_chr1_165377464_r;uc021pea.1_exon_2_0_chr1_165377464_r;uc031prc.1_exon_2_0_chr1_165377464_r	0	0	0
+chr1	165378759	165378943	uc001gda.3_exon_3_0_chr1_165378795_r;uc021pea.1_exon_3_0_chr1_165378795_r;uc031prc.1_exon_3_0_chr1_165378795_r	0	0	0
+chr1	165379914	165380085	uc001gda.3_exon_4_0_chr1_165379939_r;uc021pea.1_exon_4_0_chr1_165379939_r;uc031prc.1_exon_4_0_chr1_165379939_r	0	0	0
+chr1	165380164	165380393	uc001gda.3_exon_5_0_chr1_165380186_r;uc021pea.1_exon_5_0_chr1_165380186_r;uc031prc.1_exon_5_0_chr1_165380186_r	0	0	0
+chr1	165386249	165386492	uc001gda.3_exon_6_0_chr1_165386278_r;uc021pea.1_exon_6_0_chr1_165386278_r;uc031prc.1_exon_6_0_chr1_165386278_r	0	0	0
+chr1	165389074	165389294	uc001gda.3_exon_7_0_chr1_165389107_r;uc021pea.1_exon_7_0_chr1_165389107_r;uc031prc.1_exon_7_0_chr1_165389107_r	0	0	0
+chr1	165393964	165394253	uc021pea.1_exon_8_0_chr1_165393988_r;uc031prc.1_exon_8_0_chr1_165393988_r	0	0	0
+chr1	165397934	165398226	uc001gda.3_exon_8_0_chr1_165397956_r;uc021pea.1_exon_9_0_chr1_165397956_r	0	0	0
+chr1	165406129	165406450	uc001gdb.2_exon_0_0_chr1_165406165_r	0	0	0
+chr1	165414059	165414385	uc001gda.3_exon_9_0_chr1_165414082_r;uc001gdb.2_exon_1_0_chr1_165414082_r;uc021pea.1_exon_10_0_chr1_165414082_r	0	0	0
+chr1	165414399	165414604	uc001gda.3_exon_9_0_chr1_165414082_r;uc001gdb.2_exon_1_0_chr1_165414082_r;uc021pea.1_exon_10_0_chr1_165414082_r	0	0	0
+chr2	241808127	241808485	uc002waa.4_exon_0_0_chr2_241808162_f;uc010zoi.1_exon_0_0_chr2_241808162_f	0	0	0
+chr2	241808557	241808800	uc002waa.4_exon_1_0_chr2_241808587_f;uc010zoi.1_exon_1_0_chr2_241808587_f	0	0	0
+chr2	241810012	241810150	uc002waa.4_exon_2_0_chr2_241810061_f;uc010zoi.1_exon_2_0_chr2_241810061_f	0	0	0
+chr2	241810732	241810877	uc002waa.4_exon_3_0_chr2_241810766_f;uc010zoi.1_exon_3_0_chr2_241810766_f	0	0	0
+chr2	241812372	241813047	uc002waa.4_exon_4_0_chr2_241812396_f;uc010zoi.1_exon_4_0_chr2_241812396_f	0	0	0
+chr2	241813352	241813497	uc002waa.4_exon_5_0_chr2_241813395_f	0	0	0
+chr2	241814502	241814641	uc002waa.4_exon_6_0_chr2_241814526_f	0	0	0
+chr2	241815307	241815458	uc002waa.4_exon_7_0_chr2_241815352_f	0	0	0
+chr2	241816307	241817077	uc002waa.4_exon_8_0_chr2_241816954_f;uc002wab.4_exon_0_0_chr2_241816330_f	0	0	0
+chr2	241817417	241817587	uc002waa.4_exon_9_0_chr2_241817439_f;uc002wab.4_exon_1_0_chr2_241817439_f	0	0	0
+chr2	241818102	241818560	uc002waa.4_exon_10_0_chr2_241818131_f;uc002wab.4_exon_2_0_chr2_241818131_f	0	0	0
+chr3	48663133	48663451	uc003cug.3_exon_0_0_chr3_48663156_r;uc003cuh.3_exon_0_0_chr3_48663156_r;uc003cui.3_exon_0_0_chr3_48663156_r;uc003cuj.3_exon_0_0_chr3_48663156_r;uc003cuk.3_exon_0_0_chr3_48663156_r;uc010hke.3_exon_0_0_chr3_48663156_r;uc011bbp.2_exon_0_0_chr3_48663156_r	0	0	0
+chr3	48663618	48663806	uc003cug.3_exon_1_0_chr3_48663651_r;uc003cuh.3_exon_1_0_chr3_48663651_r;uc003cui.3_exon_1_0_chr3_48663651_r;uc003cuj.3_exon_1_0_chr3_48663651_r;uc003cuk.3_exon_1_0_chr3_48663651_r;uc010hke.3_exon_1_0_chr3_48663651_r;uc011bbp.2_exon_1_0_chr3_48663651_r	0	0	0
+chr3	48664008	48664151	uc003cug.3_exon_2_0_chr3_48664064_r;uc003cuh.3_exon_2_0_chr3_48664064_r;uc003cui.3_exon_2_0_chr3_48664064_r;uc003cuj.3_exon_2_0_chr3_48664064_r;uc003cuk.3_exon_2_0_chr3_48664064_r;uc010hke.3_exon_2_0_chr3_48664064_r;uc011bbp.2_exon_2_0_chr3_48664064_r	0	0	0
+chr3	48664283	48664537	uc003cug.3_exon_3_0_chr3_48664309_r;uc003cuh.3_exon_3_0_chr3_48664309_r;uc003cui.3_exon_3_0_chr3_48664309_r;uc003cuj.3_exon_3_0_chr3_48664309_r;uc003cuk.3_exon_3_0_chr3_48664309_r;uc010hke.3_exon_3_0_chr3_48664309_r;uc011bbp.2_exon_3_0_chr3_48664309_r	0	0	0
+chr3	48665353	48665488	uc003cug.3_exon_4_0_chr3_48665379_r;uc003cuh.3_exon_4_0_chr3_48665379_r;uc003cui.3_exon_4_0_chr3_48665379_r;uc003cuk.3_exon_4_0_chr3_48665379_r;uc011bbp.2_exon_4_0_chr3_48665379_r	0	0	0
+chr3	48665823	48666001	uc003cug.3_exon_5_0_chr3_48665867_r;uc003cuh.3_exon_5_0_chr3_48665867_r;uc003cui.3_exon_5_0_chr3_48665867_r;uc003cuj.3_exon_4_0_chr3_48665848_r;uc003cuk.3_exon_5_0_chr3_48665867_r;uc010hke.3_exon_4_0_chr3_48665848_r;uc011bbp.2_exon_5_0_chr3_48665867_r	0	0	0
+chr3	48666023	48666157	uc003cug.3_exon_6_0_chr3_48666055_r;uc003cuh.3_exon_6_0_chr3_48666055_r;uc003cui.3_exon_6_0_chr3_48666055_r;uc003cuj.3_exon_5_0_chr3_48666055_r;uc003cuk.3_exon_6_0_chr3_48666055_r;uc010hke.3_exon_5_0_chr3_48666055_r;uc011bbp.2_exon_6_0_chr3_48666055_r	0	0	0
+chr3	48667038	48667175	uc003cug.3_exon_7_0_chr3_48667075_r;uc003cuh.3_exon_7_0_chr3_48667075_r;uc003cui.3_exon_7_0_chr3_48667075_r;uc003cuj.3_exon_6_0_chr3_48667075_r;uc003cuk.3_exon_7_0_chr3_48667075_r;uc010hke.3_exon_6_0_chr3_48667075_r;uc011bbp.2_exon_7_0_chr3_48667075_r	0	0	0
+chr3	48667283	48667420	uc003cug.3_exon_8_0_chr3_48667305_r;uc003cuh.3_exon_8_0_chr3_48667305_r;uc003cui.3_exon_8_0_chr3_48667305_r;uc003cuj.3_exon_7_0_chr3_48667305_r;uc003cuk.3_exon_8_0_chr3_48667305_r;uc010hke.3_exon_7_0_chr3_48667305_r;uc011bbp.2_exon_8_0_chr3_48667305_r	0	0	0
+chr3	48667468	48667613	uc003cug.3_exon_9_0_chr3_48667495_r;uc003cuh.3_exon_9_0_chr3_48667495_r;uc003cui.3_exon_9_0_chr3_48667495_r;uc003cuj.3_exon_8_0_chr3_48667495_r;uc003cuk.3_exon_9_0_chr3_48667495_r;uc010hke.3_exon_8_0_chr3_48667495_r;uc011bbp.2_exon_9_0_chr3_48667495_r	0	0	0
+chr3	48667838	48667973	uc003cug.3_exon_10_0_chr3_48667871_r;uc003cuh.3_exon_10_0_chr3_48667871_r;uc003cui.3_exon_10_0_chr3_48667871_r;uc003cuj.3_exon_9_0_chr3_48667871_r;uc003cuk.3_exon_10_0_chr3_48667871_r;uc010hke.3_exon_9_0_chr3_48667871_r;uc011bbp.2_exon_10_0_chr3_48667871_r	0	0	0
+chr3	48668018	48668185	uc003cug.3_exon_11_0_chr3_48668040_r;uc003cuh.3_exon_11_0_chr3_48668040_r;uc003cui.3_exon_11_0_chr3_48668040_r;uc003cuj.3_exon_10_0_chr3_48668040_r;uc003cuk.3_exon_11_0_chr3_48668040_r;uc010hke.3_exon_10_0_chr3_48668040_r;uc011bbp.2_exon_11_0_chr3_48668040_r	0	0	0
+chr3	48668398	48668610	uc003cug.3_exon_12_0_chr3_48668426_r;uc003cuh.3_exon_12_0_chr3_48668426_r;uc003cui.3_exon_12_0_chr3_48668426_r;uc003cuj.3_exon_11_0_chr3_48668426_r;uc003cuk.3_exon_12_0_chr3_48668426_r;uc010hke.3_exon_11_0_chr3_48668426_r;uc011bbp.2_exon_12_0_chr3_48668426_r	0	0	0
+chr3	48668623	48668764	uc003cug.3_exon_13_0_chr3_48668657_r;uc003cuh.3_exon_13_0_chr3_48668657_r;uc003cui.3_exon_13_0_chr3_48668657_r;uc003cuj.3_exon_12_0_chr3_48668657_r;uc003cuk.3_exon_13_0_chr3_48668657_r;uc010hke.3_exon_12_0_chr3_48668657_r;uc011bbp.2_exon_13_0_chr3_48668657_r	0	0	0
+chr3	48669058	48669274	uc003cug.3_exon_14_0_chr3_48669082_r;uc003cuh.3_exon_14_0_chr3_48669082_r;uc003cui.3_exon_14_0_chr3_48669082_r;uc003cuj.3_exon_13_0_chr3_48669082_r;uc003cuk.3_exon_14_0_chr3_48669082_r;uc010hke.3_exon_13_0_chr3_48669082_r;uc011bbp.2_exon_14_0_chr3_48669082_r	0	0	0
+chr3	48669288	48669561	uc003cug.3_exon_15_0_chr3_48669313_r;uc003cuh.3_exon_15_0_chr3_48669313_r;uc003cui.3_exon_15_0_chr3_48669313_r;uc003cuj.3_exon_14_0_chr3_48669313_r;uc010hke.3_exon_14_0_chr3_48669313_r;uc011bbp.2_exon_15_0_chr3_48669313_r	0	0	0
+chr3	48669653	48669863	uc003cug.3_exon_16_0_chr3_48669678_r;uc003cuh.3_exon_16_0_chr3_48669678_r;uc003cui.3_exon_16_0_chr3_48669678_r;uc003cuj.3_exon_15_0_chr3_48669678_r;uc010hke.3_exon_15_0_chr3_48669678_r	0	0	0
+chr3	48670378	48670601	uc003cug.3_exon_17_0_chr3_48670407_r;uc003cuh.3_exon_17_0_chr3_48670407_r;uc003cui.3_exon_17_0_chr3_48670407_r;uc003cuj.3_exon_16_0_chr3_48670407_r;uc003cuk.3_exon_15_0_chr3_48670407_r;uc010hke.3_exon_16_0_chr3_48670407_r;uc011bbp.2_exon_16_0_chr3_48670407_r	0	0	0
+chr3	48670648	48670835	uc003cug.3_exon_18_0_chr3_48670684_r;uc003cuh.3_exon_18_0_chr3_48670684_r;uc003cui.3_exon_18_0_chr3_48670684_r;uc003cuj.3_exon_17_0_chr3_48670684_r;uc003cuk.3_exon_16_0_chr3_48670684_r;uc010hke.3_exon_17_0_chr3_48670684_r;uc011bbp.2_exon_17_0_chr3_48670684_r	0	0	0
+chr3	48670878	48671298	uc003cug.3_exon_19_0_chr3_48670910_r;uc003cuh.3_exon_19_0_chr3_48670910_r;uc003cui.3_exon_19_0_chr3_48670910_r;uc003cuj.3_exon_18_0_chr3_48670910_r;uc003cuk.3_exon_17_0_chr3_48670910_r;uc010hke.3_exon_18_0_chr3_48670910_r;uc011bbp.2_exon_18_0_chr3_48670910_r	0	0	0
+chr3	48672778	48672946	uc003cuh.3_exon_20_0_chr3_48672804_r;uc003cui.3_exon_20_0_chr3_48672804_r;uc003cuj.3_exon_19_0_chr3_48672804_r;uc003cuk.3_exon_18_0_chr3_48672804_r;uc010hke.3_exon_19_0_chr3_48672804_r;uc011bbp.2_exon_19_0_chr3_48672804_r	0	0	0
+chr3	121902505	121902687	uc003eev.4_exon_0_0_chr3_121902530_f	0	0	0
+chr3	121903155	121903400	uc003eew.4_exon_0_0_chr3_121903181_f	0	0	0
+chr3	121972785	121973247	uc003eev.4_exon_1_0_chr3_121972795_f;uc003eew.4_exon_1_0_chr3_121972795_f	0	0	0
+chr3	121975905	121976257	uc003eev.4_exon_2_0_chr3_121975928_f;uc003eew.4_exon_2_0_chr3_121975928_f	0	0	0
+chr3	121980350	121981297	uc003eev.4_exon_3_0_chr3_121980375_f;uc003eew.4_exon_3_0_chr3_121980375_f	0	0	0
+chr3	121994630	121994910	uc003eev.4_exon_4_0_chr3_121994659_f;uc003eew.4_exon_4_0_chr3_121994659_f	0	0	0
+chr3	122000895	122001113	uc003eev.4_exon_5_0_chr3_122000960_f;uc003eew.4_exon_5_0_chr3_122000930_f	0	0	0
+chr3	122002500	122004214	uc003eev.4_exon_6_0_chr3_122002534_f;uc003eew.4_exon_6_0_chr3_122002534_f	0	0	0
+chr3	122004215	122005329	uc003eev.4_exon_6_0_chr3_122002534_f;uc003eew.4_exon_6_0_chr3_122002534_f	0	0	0
+chr3	186330818	186331175	uc003fqj.3_exon_0_0_chr3_186330850_f;uc003fqk.4_exon_0_0_chr3_186330850_f	0	0	0
+chr3	186333448	186333631	uc003fqj.3_exon_1_0_chr3_186333474_f;uc003fqk.4_exon_1_0_chr3_186333474_f	0	0	0
+chr3	186334203	186334338	uc003fqj.3_exon_2_0_chr3_186334232_f;uc003fqk.4_exon_2_0_chr3_186334232_f	0	0	0
+chr3	186334948	186335521	uc003fqj.3_exon_3_0_chr3_186334976_f;uc003fqk.4_exon_3_0_chr3_186334976_f	0	0	0
+chr3	186336303	186336444	uc003fqk.4_exon_4_0_chr3_186336325_f	0	0	0
+chr3	186337613	186337688	uc003fqk.4_exon_5_0_chr3_186337646_f	0	0	0
+chr3	186337693	186337772	uc003fqk.4_exon_5_0_chr3_186337646_f	0	0	0
+chr3	186338343	186339128	uc003fqk.4_exon_6_0_chr3_186338375_f	0	0	0
+chr3	190105627	190106278	uc003fsi.3_exon_0_0_chr3_190105661_f;uc010hze.3_exon_0_0_chr3_190105661_f	0	0	0
+chr3	190120092	190120254	uc003fsi.3_exon_1_0_chr3_190120126_f	0	0	0
+chr3	190122517	190122739	uc003fsi.3_exon_2_0_chr3_190122551_f	0	0	0
+chr3	190126072	190126313	uc003fsi.3_exon_3_0_chr3_190126103_f	0	0	0
+chr3	190127667	190128781	uc003fsi.3_exon_4_0_chr3_190127692_f;uc010hze.3_exon_1_0_chr3_190127692_f	0	0	0
+chr3	190129077	190129349	uc003fsi.3_exon_4_0_chr3_190127692_f;uc010hze.3_exon_1_0_chr3_190127692_f	0	0	0
+chr3	190129352	190129588	uc003fsi.3_exon_4_0_chr3_190127692_f;uc010hze.3_exon_1_0_chr3_190127692_f	0	0	0
+chr3	190129652	190129945	uc003fsi.3_exon_4_0_chr3_190127692_f;uc010hze.3_exon_1_0_chr3_190127692_f	0	0	0
+chr4	972840	973323	uc003gbx.3_exon_0_0_chr4_972863_r	0	0	0
+chr4	981420	984181	uc003gcb.3_exon_0_0_chr4_981445_r;uc003gcc.3_exon_0_0_chr4_981445_r	0	0	0
+chr4	984890	985551	uc003gbx.3_exon_1_0_chr4_984916_r;uc003gcb.3_exon_1_0_chr4_984916_r;uc003gcc.3_exon_1_0_chr4_984916_r	0	0	0
+chr4	986485	986765	uc003gcb.3_exon_2_0_chr4_986509_r	0	0	0
+chr4	987055	987248	uc003gbx.3_exon_2_0_chr4_987089_r;uc003gcb.3_exon_3_0_chr4_987089_r;uc003gcc.3_exon_2_0_chr4_987089_r	0	0	0
+chr4	88571410	88571547	uc003hqv.3_exon_0_0_chr4_88571454_f;uc003hqw.3_exon_0_0_chr4_88571454_f	0	0	0
+chr4	88577585	88577727	uc003hqv.3_exon_1_0_chr4_88577624_f;uc003hqw.3_exon_1_0_chr4_88577624_f	0	0	0
+chr4	88578130	88578267	uc003hqv.3_exon_2_0_chr4_88578184_f;uc003hqw.3_exon_2_0_chr4_88578184_f	0	0	0
+chr4	88580355	88580457	uc003hqv.3_exon_3_0_chr4_88580372_f;uc003hqw.3_exon_3_0_chr4_88580372_f	0	0	0
+chr4	88580535	88580666	uc003hqv.3_exon_4_0_chr4_88580583_f	0	0	0
+chr4	88583080	88585217	uc003hqv.3_exon_5_0_chr4_88583114_f;uc003hqw.3_exon_4_0_chr4_88583114_f	0	0	0
+chr4	88585230	88585546	uc003hqv.3_exon_5_0_chr4_88583114_f;uc003hqw.3_exon_4_0_chr4_88583114_f	0	0	0
+chr4	88896775	88896994	uc003hra.3_exon_0_0_chr4_88896802_f;uc003hrb.3_exon_0_0_chr4_88896802_f;uc003hrc.3_exon_0_0_chr4_88896802_f;uc003hrd.3_exon_0_0_chr4_88896802_f;uc011cde.2_exon_0_0_chr4_88896802_f	0	0	0
+chr4	88897995	88898136	uc003hra.3_exon_1_0_chr4_88898034_f;uc003hrb.3_exon_1_0_chr4_88898034_f;uc003hrc.3_exon_1_0_chr4_88898034_f;uc003hrd.3_exon_1_0_chr4_88898034_f;uc011cde.2_exon_1_0_chr4_88898034_f	0	0	0
+chr4	88898150	88898288	uc003hra.3_exon_2_0_chr4_88898211_f;uc003hrb.3_exon_2_0_chr4_88898211_f;uc003hrc.3_exon_2_0_chr4_88898211_f;uc003hrd.3_exon_2_0_chr4_88898211_f;uc011cde.2_exon_2_0_chr4_88898211_f	0	0	0
+chr4	88898790	88899034	uc011cde.2_exon_3_0_chr4_88898814_f	0	0	0
+chr4	88901165	88901299	uc003hra.3_exon_3_0_chr4_88901198_f;uc003hrc.3_exon_3_0_chr4_88901198_f;uc011cde.2_exon_4_0_chr4_88901198_f	0	0	0
+chr4	88901485	88901626	uc003hra.3_exon_4_0_chr4_88901545_f;uc003hrb.3_exon_3_0_chr4_88901545_f;uc011cde.2_exon_5_0_chr4_88901545_f	0	0	0
+chr4	88902600	88902990	uc003hra.3_exon_5_0_chr4_88902627_f;uc003hrb.3_exon_4_0_chr4_88902627_f;uc003hrc.3_exon_4_0_chr4_88902627_f;uc003hrd.3_exon_3_0_chr4_88902627_f;uc011cde.2_exon_6_0_chr4_88902627_f	0	0	0
+chr4	88903615	88904585	uc003hra.3_exon_6_0_chr4_88903644_f;uc003hrb.3_exon_5_0_chr4_88903644_f;uc003hrc.3_exon_5_0_chr4_88903644_f;uc003hrd.3_exon_4_0_chr4_88903644_f;uc011cde.2_exon_7_0_chr4_88903644_f	0	0	0
+chr5	14704887	14705160	uc003jfm.4_exon_0_0_chr5_14704909_r	0	0	0
+chr5	14705262	14705400	uc003jfm.4_exon_0_0_chr5_14704909_r	0	0	0
+chr5	14705402	14707399	uc003jfm.4_exon_0_0_chr5_14704909_r	0	0	0
+chr5	14707407	14709009	uc003jfm.4_exon_0_0_chr5_14704909_r	0	0	0
+chr5	14709292	14710006	uc003jfm.4_exon_0_0_chr5_14704909_r	0	0	0
+chr5	14710032	14710099	uc003jfm.4_exon_0_0_chr5_14704909_r	0	0	0
+chr5	14710102	14711444	uc003jfm.4_exon_0_0_chr5_14704909_r	0	0	0
+chr5	14712957	14713094	uc003jfm.4_exon_1_0_chr5_14712983_r	0	0	0
+chr5	14713627	14713799	uc003jfm.4_exon_2_0_chr5_14713653_r	0	0	0
+chr5	14716792	14716964	uc003jfm.4_exon_3_0_chr5_14716815_r	0	0	0
+chr5	14741912	14742048	uc003jfm.4_exon_4_0_chr5_14741936_r	0	0	0
+chr5	14745942	14746094	uc003jfm.4_exon_5_0_chr5_14745979_r	0	0	0
+chr5	14749257	14749434	uc003jfm.4_exon_6_0_chr5_14749281_r	0	0	0
+chr5	14751152	14751358	uc003jfm.4_exon_7_0_chr5_14751178_r	0	0	0
+chr5	14755937	14756072	uc003jfm.4_exon_8_0_chr5_14755970_r	0	0	0
+chr5	14758557	14758741	uc003jfm.4_exon_9_0_chr5_14758589_r	0	0	0
+chr5	14769052	14769334	uc003jfm.4_exon_10_0_chr5_14769084_r	0	0	0
+chr5	14871427	14871826	uc003jfm.4_exon_11_0_chr5_14871461_r	0	0	0
+chr5	14871847	14871923	uc003jfm.4_exon_11_0_chr5_14871461_r	0	0	0
+chr5	149340268	149340553	uc003lrh.3_exon_0_0_chr5_149340300_f	0	0	0
+chr5	149357163	149357937	uc003lrh.3_exon_1_0_chr5_149357191_f	0	0	0
+chr5	149359833	149362583	uc003lrh.3_exon_2_0_chr5_149359856_f	0	0	0
+chr5	149362593	149363149	uc003lrh.3_exon_2_0_chr5_149359856_f	0	0	0
+chr5	149363428	149363952	uc003lrh.3_exon_2_0_chr5_149359856_f	0	0	0
+chr5	149364233	149364859	uc003lrh.3_exon_2_0_chr5_149359856_f	0	0	0
+chr5	149364873	149365754	uc003lrh.3_exon_2_0_chr5_149359856_f	0	0	0
+chr5	149365803	149366984	uc003lrh.3_exon_2_0_chr5_149359856_f	0	0	0
+chr5	176811379	176811535	uc003mgk.4_exon_0_0_chr5_176811432_f;uc021yis.1_exon_0_0_chr5_176811432_f	0	0	0
+chr5	176812674	176812883	uc003mgk.4_exon_1_0_chr5_176812696_f;uc021yis.1_exon_1_0_chr5_176812696_f	0	0	0
+chr5	176812954	176813173	uc003mgk.4_exon_2_0_chr5_176812988_f;uc021yis.1_exon_2_0_chr5_176812988_f	0	0	0
+chr5	176813194	176813371	uc003mgk.4_exon_3_0_chr5_176813222_f;uc021yis.1_exon_3_0_chr5_176813222_f	0	0	0
+chr5	176813394	176813609	uc003mgk.4_exon_4_0_chr5_176813424_f;uc021yis.1_exon_4_0_chr5_176813424_f	0	0	0
+chr5	176814729	176814909	uc003mgk.4_exon_5_0_chr5_176814763_f;uc021yis.1_exon_5_0_chr5_176814763_f	0	0	0
+chr5	176814969	176815220	uc003mgk.4_exon_6_0_chr5_176814995_f;uc021yis.1_exon_6_0_chr5_176814995_f	0	0	0
+chr5	176815254	176815391	uc003mgk.4_exon_7_0_chr5_176815278_f;uc021yis.1_exon_7_0_chr5_176815278_f	0	0	0
+chr5	176816614	176817547	uc021yis.1_exon_8_0_chr5_176816640_f	0	0	0
+chr5	176820654	176820803	uc003mgk.4_exon_8_0_chr5_176820695_f	0	0	0
+chr5	176820994	176821219	uc003mgk.4_exon_9_0_chr5_176821029_f	0	0	0
+chr5	176823709	176823878	uc003mgk.4_exon_10_0_chr5_176823734_f	0	0	0
+chr5	176823929	176824102	uc003mgk.4_exon_11_0_chr5_176823951_f	0	0	0
+chr5	176824759	176825439	uc003mgk.4_exon_12_0_chr5_176824784_f	0	0	0
+chr5	176825449	176825857	uc003mgk.4_exon_12_0_chr5_176824784_f	0	0	0
+chr6	33161331	33161866	uc003odb.4_exon_0_0_chr6_33161362_r;uc003odc.4_exon_0_0_chr6_33161362_r;uc011dqr.3_exon_0_0_chr6_33161362_r	0	0	0
+chr6	33161886	33162617	uc003odb.4_exon_0_0_chr6_33161362_r;uc003odc.4_exon_0_0_chr6_33161362_r;uc011dqr.3_exon_0_0_chr6_33161362_r	0	0	0
+chr6	33162696	33162866	uc003odb.4_exon_1_0_chr6_33162722_r;uc003odc.4_exon_1_0_chr6_33162722_r;uc011dqr.3_exon_1_0_chr6_33162722_r	0	0	0
+chr6	33163111	33163264	uc003odb.4_exon_2_0_chr6_33163140_r;uc003odc.4_exon_2_0_chr6_33163140_r;uc011dqr.3_exon_2_0_chr6_33163140_r	0	0	0
+chr6	33163311	33163475	uc003odb.4_exon_3_0_chr6_33163347_r;uc003odb.4_exon_4_0_chr6_33163684_r;uc003odb.4_exon_5_0_chr6_33164211_r;uc003odc.4_exon_3_0_chr6_33163347_r;uc003odc.4_exon_4_0_chr6_33163684_r;uc003odc.4_exon_5_0_chr6_33164211_r;uc003ode.1_exon_0_0_chr6_33163562_r;uc011dqr.3_exon_3_0_chr6_33163347_r;uc011dqr.3_exon_4_0_chr6_33163684_r;uc011dqr.3_exon_5_0_chr6_33164211_r;uc011dqs.2_exon_0_0_chr6_33163388_r;uc011dqs.2_exon_1_0_chr6_33164211_r;uc011dqt.2_exon_0_0_chr6_33163562_r;uc011dqu.2_exon_0_0_chr6_33163562_r	0	0	0
+chr6	33163486	33164285	uc003odb.4_exon_3_0_chr6_33163347_r;uc003odb.4_exon_4_0_chr6_33163684_r;uc003odb.4_exon_5_0_chr6_33164211_r;uc003odc.4_exon_3_0_chr6_33163347_r;uc003odc.4_exon_4_0_chr6_33163684_r;uc003odc.4_exon_5_0_chr6_33164211_r;uc003ode.1_exon_0_0_chr6_33163562_r;uc011dqr.3_exon_3_0_chr6_33163347_r;uc011dqr.3_exon_4_0_chr6_33163684_r;uc011dqr.3_exon_5_0_chr6_33164211_r;uc011dqs.2_exon_0_0_chr6_33163388_r;uc011dqs.2_exon_1_0_chr6_33164211_r;uc011dqt.2_exon_0_0_chr6_33163562_r;uc011dqu.2_exon_0_0_chr6_33163562_r	0	0	0
+chr6	33164286	33164415	uc003odb.4_exon_3_0_chr6_33163347_r;uc003odb.4_exon_4_0_chr6_33163684_r;uc003odb.4_exon_5_0_chr6_33164211_r;uc003odc.4_exon_3_0_chr6_33163347_r;uc003odc.4_exon_4_0_chr6_33163684_r;uc003odc.4_exon_5_0_chr6_33164211_r;uc003ode.1_exon_0_0_chr6_33163562_r;uc011dqr.3_exon_3_0_chr6_33163347_r;uc011dqr.3_exon_4_0_chr6_33163684_r;uc011dqr.3_exon_5_0_chr6_33164211_r;uc011dqs.2_exon_0_0_chr6_33163388_r;uc011dqs.2_exon_1_0_chr6_33164211_r;uc011dqt.2_exon_0_0_chr6_33163562_r;uc011dqu.2_exon_0_0_chr6_33163562_r	0	0	0
+chr6	33165506	33165750	uc003odb.4_exon_6_0_chr6_33165539_r;uc003odc.4_exon_6_0_chr6_33165539_r;uc003ode.1_exon_1_0_chr6_33165539_r;uc011dqr.3_exon_6_0_chr6_33165539_r;uc011dqs.2_exon_2_0_chr6_33165539_r;uc011dqt.2_exon_1_0_chr6_33165539_r;uc011dqu.2_exon_1_0_chr6_33165539_r	0	0	0
+chr6	33166051	33166388	uc003odb.4_exon_7_0_chr6_33166085_r;uc003odc.4_exon_7_0_chr6_33166085_r;uc003ode.1_exon_2_0_chr6_33166085_r;uc011dqr.3_exon_7_0_chr6_33166085_r;uc011dqs.2_exon_3_0_chr6_33166085_r;uc011dqt.2_exon_2_0_chr6_33166085_r;uc011dqu.2_exon_2_0_chr6_33166085_r	0	0	0
+chr6	33166911	33167063	uc003odb.4_exon_8_0_chr6_33166946_r;uc003odc.4_exon_8_0_chr6_33166946_r;uc011dqt.2_exon_3_0_chr6_33166946_r	0	0	0
+chr6	33167071	33167209	uc003odb.4_exon_8_0_chr6_33166946_r;uc003odc.4_exon_8_0_chr6_33166946_r;uc011dqt.2_exon_3_0_chr6_33166946_r	0	0	0
+chr6	33167986	33168096	uc003odb.4_exon_9_0_chr6_33168019_r;uc003odc.4_exon_9_0_chr6_33168019_r;uc011dqs.2_exon_4_0_chr6_33168019_r;uc011dqt.2_exon_4_0_chr6_33168019_r;uc011dqu.2_exon_3_0_chr6_33168019_r	0	0	0
+chr6	33168111	33168490	uc003odb.4_exon_9_0_chr6_33168019_r;uc003odc.4_exon_9_0_chr6_33168019_r;uc011dqs.2_exon_4_0_chr6_33168019_r;uc011dqt.2_exon_4_0_chr6_33168019_r;uc011dqu.2_exon_3_0_chr6_33168019_r	0	0	0
+chr6	33168506	33168646	uc011dqr.3_exon_8_0_chr6_33168544_r	0	0	0
+chr6	86159268	86160229	uc003pkn.3_exon_0_0_chr6_86159302_f;uc003pko.4_exon_0_0_chr6_86159302_f;uc010kbr.3_exon_0_0_chr6_86159302_f	0	0	0
+chr6	86176753	86177029	uc003pkn.3_exon_1_0_chr6_86176778_f;uc003pko.4_exon_1_0_chr6_86176778_f;uc010kbr.3_exon_1_0_chr6_86176778_f	0	0	0
+chr6	86180933	86181355	uc003pkn.3_exon_2_0_chr6_86180955_f;uc003pko.4_exon_2_0_chr6_86180955_f;uc010kbr.3_exon_2_0_chr6_86180955_f	0	0	0
+chr6	86194928	86195167	uc003pko.4_exon_3_0_chr6_86194953_f;uc010kbr.3_exon_3_0_chr6_86194953_f	0	0	0
+chr6	86197043	86197236	uc003pko.4_exon_4_0_chr6_86197053_f;uc010kbr.3_exon_4_0_chr6_86197053_f	0	0	0
+chr6	86199188	86199325	uc003pko.4_exon_5_0_chr6_86199212_f;uc010kbr.3_exon_5_0_chr6_86199212_f	0	0	0
+chr6	86200203	86200412	uc003pko.4_exon_6_0_chr6_86200226_f	0	0	0
+chr6	86201663	86201917	uc003pko.4_exon_7_0_chr6_86201695_f;uc010kbr.3_exon_6_0_chr6_86201695_f	0	0	0
+chr6	86203533	86204574	uc003pko.4_exon_8_0_chr6_86203559_f;uc010kbr.3_exon_7_0_chr6_86203559_f	0	0	0
+chr6	86204578	86205520	uc003pko.4_exon_8_0_chr6_86203559_f;uc010kbr.3_exon_7_0_chr6_86203559_f	0	0	0
+chr6	132129126	132129444	uc011ecf.2_exon_0_0_chr6_132129156_f	0	0	0
+chr6	132168881	132168980	uc011ecf.2_exon_1_0_chr6_132168916_f	0	0	0
+chr6	132171101	132171284	uc011ecf.2_exon_2_0_chr6_132171130_f	0	0	0
+chr6	132172256	132172437	uc011ecf.2_exon_3_0_chr6_132172282_f	0	0	0
+chr6	132173271	132173338	uc011ecf.2_exon_4_0_chr6_132173315_f	0	0	0
+chr6	132176056	132176198	uc011ecf.2_exon_5_0_chr6_132176066_f	0	0	0
+chr6	132179776	132179909	uc011ecf.2_exon_6_0_chr6_132179808_f	0	0	0
+chr6	132181491	132181662	uc011ecf.2_exon_7_0_chr6_132181527_f	0	0	0
+chr6	132182711	132182877	uc003qcy.3_exon_0_0_chr6_132182735_f;uc011ecf.2_exon_8_0_chr6_132182735_f	0	0	0
+chr6	132185606	132185746	uc003qcy.3_exon_1_0_chr6_132185646_f;uc011ecf.2_exon_9_0_chr6_132185646_f	0	0	0
+chr6	132185961	132186108	uc003qcy.3_exon_2_0_chr6_132186032_f;uc011ecf.2_exon_10_0_chr6_132186006_f	0	0	0
+chr6	132189126	132189311	uc003qcy.3_exon_3_0_chr6_132189158_f;uc011ecf.2_exon_11_0_chr6_132189158_f	0	0	0
+chr6	132190486	132190668	uc003qcy.3_exon_4_0_chr6_132190498_f;uc011ecf.2_exon_12_0_chr6_132190498_f	0	0	0
+chr6	132193151	132193281	uc003qcy.3_exon_5_0_chr6_132193210_f;uc011ecf.2_exon_13_0_chr6_132193210_f	0	0	0
+chr6	132194041	132194215	uc003qcy.3_exon_6_0_chr6_132194063_f;uc011ecf.2_exon_14_0_chr6_132194063_f	0	0	0
+chr6	132195371	132195508	uc003qcy.3_exon_7_0_chr6_132195408_f;uc011ecf.2_exon_15_0_chr6_132195408_f	0	0	0
+chr6	132196881	132197023	uc003qcy.3_exon_8_0_chr6_132196916_f;uc011ecf.2_exon_16_0_chr6_132196916_f	0	0	0
+chr6	132198106	132198847	uc003qcy.3_exon_9_0_chr6_132198132_f;uc011ecf.2_exon_17_0_chr6_132198132_f	0	0	0
+chr6	132199636	132199778	uc011ecf.2_exon_18_0_chr6_132199682_f	0	0	0
+chr6	132200996	132201207	uc011ecf.2_exon_19_0_chr6_132201020_f	0	0	0
+chr6	132203456	132203624	uc011ecf.2_exon_20_0_chr6_132203485_f	0	0	0
+chr6	132204801	132204935	uc011ecf.2_exon_21_0_chr6_132204834_f	0	0	0
+chr6	132206041	132206219	uc011ecf.2_exon_22_0_chr6_132206071_f	0	0	0
+chr6	132207676	132207883	uc011ecf.2_exon_23_0_chr6_132207702_f	0	0	0
+chr6	132211456	132212142	uc011ecf.2_exon_24_0_chr6_132211481_f	0	0	0
+chr6	132212151	132212332	uc011ecf.2_exon_24_0_chr6_132211481_f	0	0	0
+chr6	132212351	132212894	uc011ecf.2_exon_24_0_chr6_132211481_f	0	0	0
+chr6	132212906	132214201	uc011ecf.2_exon_24_0_chr6_132211481_f	0	0	0
+chr6	132214206	132214862	uc011ecf.2_exon_24_0_chr6_132211481_f	0	0	0
+chr6	132214896	132215094	uc011ecf.2_exon_24_0_chr6_132211481_f	0	0	0
+chr6	132215361	132215438	uc011ecf.2_exon_24_0_chr6_132211481_f	0	0	0
+chr6	132215691	132216320	uc011ecf.2_exon_24_0_chr6_132211481_f	0	0	0
+chr6_cox_hap2	4605164	4605706	uc011fpt.3_exon_0_0_chr6_cox_hap2_4605198_r;uc011fpu.3_exon_0_0_chr6_cox_hap2_4605198_r;uc011fpw.3_exon_0_0_chr6_cox_hap2_4605198_r	0	0	0
+chr6_cox_hap2	4605724	4606454	uc011fpt.3_exon_0_0_chr6_cox_hap2_4605198_r;uc011fpu.3_exon_0_0_chr6_cox_hap2_4605198_r;uc011fpw.3_exon_0_0_chr6_cox_hap2_4605198_r	0	0	0
+chr6_cox_hap2	4606534	4606674	uc011fpt.3_exon_1_0_chr6_cox_hap2_4606558_r;uc011fpu.3_exon_1_0_chr6_cox_hap2_4606558_r;uc011fpw.3_exon_1_0_chr6_cox_hap2_4606558_r	0	0	0
+chr6_cox_hap2	4606949	4607102	uc011fpt.3_exon_2_0_chr6_cox_hap2_4606976_r;uc011fpu.3_exon_2_0_chr6_cox_hap2_4606976_r;uc011fpw.3_exon_2_0_chr6_cox_hap2_4606976_r	0	0	0
+chr6_cox_hap2	4607149	4608104	uc011fpt.3_exon_3_0_chr6_cox_hap2_4607183_r;uc011fpt.3_exon_4_0_chr6_cox_hap2_4607520_r;uc011fpt.3_exon_5_0_chr6_cox_hap2_4608047_r;uc011fpu.3_exon_3_0_chr6_cox_hap2_4607183_r;uc011fpu.3_exon_4_0_chr6_cox_hap2_4607520_r;uc011fpu.3_exon_5_0_chr6_cox_hap2_4608047_r;uc011fpw.3_exon_3_0_chr6_cox_hap2_4607183_r;uc011fpw.3_exon_4_0_chr6_cox_hap2_4607520_r;uc011fpw.3_exon_5_0_chr6_cox_hap2_4608047_r;uc011fpx.2_exon_0_0_chr6_cox_hap2_4607224_r;uc011fpx.2_exon_1_0_chr6_cox_hap2_4608047_r;uc011fpy.1_exon_0_0_chr6_cox_hap2_4607398_r;uc011fpz.2_exon_0_0_chr6_cox_hap2_4607398_r;uc011fqa.2_exon_0_0_chr6_cox_hap2_4607398_r	0	0	0
+chr6_cox_hap2	4608124	4608252	uc011fpt.3_exon_3_0_chr6_cox_hap2_4607183_r;uc011fpt.3_exon_4_0_chr6_cox_hap2_4607520_r;uc011fpt.3_exon_5_0_chr6_cox_hap2_4608047_r;uc011fpu.3_exon_3_0_chr6_cox_hap2_4607183_r;uc011fpu.3_exon_4_0_chr6_cox_hap2_4607520_r;uc011fpu.3_exon_5_0_chr6_cox_hap2_4608047_r;uc011fpw.3_exon_3_0_chr6_cox_hap2_4607183_r;uc011fpw.3_exon_4_0_chr6_cox_hap2_4607520_r;uc011fpw.3_exon_5_0_chr6_cox_hap2_4608047_r;uc011fpx.2_exon_0_0_chr6_cox_hap2_4607224_r;uc011fpx.2_exon_1_0_chr6_cox_hap2_4608047_r;uc011fpy.1_exon_0_0_chr6_cox_hap2_4607398_r;uc011fpz.2_exon_0_0_chr6_cox_hap2_4607398_r;uc011fqa.2_exon_0_0_chr6_cox_hap2_4607398_r	0	0	0
+chr6_cox_hap2	4609344	4609583	uc011fpt.3_exon_6_0_chr6_cox_hap2_4609375_r;uc011fpu.3_exon_6_0_chr6_cox_hap2_4609375_r;uc011fpw.3_exon_6_0_chr6_cox_hap2_4609375_r;uc011fpx.2_exon_2_0_chr6_cox_hap2_4609375_r;uc011fpy.1_exon_1_0_chr6_cox_hap2_4609375_r;uc011fpz.2_exon_1_0_chr6_cox_hap2_4609375_r;uc011fqa.2_exon_1_0_chr6_cox_hap2_4609375_r	0	0	0
+chr6_cox_hap2	4609889	4610223	uc011fpt.3_exon_7_0_chr6_cox_hap2_4609921_r;uc011fpu.3_exon_7_0_chr6_cox_hap2_4609921_r;uc011fpw.3_exon_7_0_chr6_cox_hap2_4609921_r;uc011fpx.2_exon_3_0_chr6_cox_hap2_4609921_r;uc011fpy.1_exon_2_0_chr6_cox_hap2_4609921_r;uc011fpz.2_exon_2_0_chr6_cox_hap2_4609921_r;uc011fqa.2_exon_2_0_chr6_cox_hap2_4609921_r	0	0	0
+chr6_cox_hap2	4610744	4610896	uc011fpt.3_exon_8_0_chr6_cox_hap2_4610780_r;uc011fpu.3_exon_8_0_chr6_cox_hap2_4610780_r;uc011fpz.2_exon_3_0_chr6_cox_hap2_4610780_r	0	0	0
+chr6_cox_hap2	4610904	4611041	uc011fpt.3_exon_8_0_chr6_cox_hap2_4610780_r;uc011fpu.3_exon_8_0_chr6_cox_hap2_4610780_r;uc011fpz.2_exon_3_0_chr6_cox_hap2_4610780_r	0	0	0
+chr6_cox_hap2	4611819	4611930	uc011fpt.3_exon_9_0_chr6_cox_hap2_4611853_r;uc011fpu.3_exon_9_0_chr6_cox_hap2_4611853_r;uc011fpx.2_exon_4_0_chr6_cox_hap2_4611853_r;uc011fpz.2_exon_4_0_chr6_cox_hap2_4611853_r;uc011fqa.2_exon_3_0_chr6_cox_hap2_4611853_r	0	0	0
+chr6_cox_hap2	4611944	4612327	uc011fpt.3_exon_9_0_chr6_cox_hap2_4611853_r;uc011fpu.3_exon_9_0_chr6_cox_hap2_4611853_r;uc011fpx.2_exon_4_0_chr6_cox_hap2_4611853_r;uc011fpz.2_exon_4_0_chr6_cox_hap2_4611853_r;uc011fqa.2_exon_3_0_chr6_cox_hap2_4611853_r	0	0	0
+chr6_cox_hap2	4612344	4612480	uc011fpw.3_exon_8_0_chr6_cox_hap2_4612378_r	0	0	0
+chr6_dbb_hap3	4442634	4443175	uc011gly.3_exon_0_0_chr6_dbb_hap3_4442669_r;uc011glz.3_exon_0_0_chr6_dbb_hap3_4442669_r;uc011gmb.3_exon_0_0_chr6_dbb_hap3_4442669_r	0	0	0
+chr6_dbb_hap3	4443194	4443924	uc011gly.3_exon_0_0_chr6_dbb_hap3_4442669_r;uc011glz.3_exon_0_0_chr6_dbb_hap3_4442669_r;uc011gmb.3_exon_0_0_chr6_dbb_hap3_4442669_r	0	0	0
+chr6_dbb_hap3	4444004	4444175	uc011gly.3_exon_1_0_chr6_dbb_hap3_4444029_r;uc011glz.3_exon_1_0_chr6_dbb_hap3_4444029_r;uc011gmb.3_exon_1_0_chr6_dbb_hap3_4444029_r	0	0	0
+chr6_dbb_hap3	4444424	4444567	uc011gly.3_exon_2_0_chr6_dbb_hap3_4444447_r;uc011glz.3_exon_2_0_chr6_dbb_hap3_4444447_r;uc011gmb.3_exon_2_0_chr6_dbb_hap3_4444447_r	0	0	0
+chr6_dbb_hap3	4444619	4445581	uc011gly.3_exon_3_0_chr6_dbb_hap3_4444654_r;uc011gly.3_exon_4_0_chr6_dbb_hap3_4444991_r;uc011gly.3_exon_5_0_chr6_dbb_hap3_4445518_r;uc011glz.3_exon_3_0_chr6_dbb_hap3_4444654_r;uc011glz.3_exon_4_0_chr6_dbb_hap3_4444991_r;uc011glz.3_exon_5_0_chr6_dbb_hap3_4445518_r;uc011gmb.3_exon_3_0_chr6_dbb_hap3_4444654_r;uc011gmb.3_exon_4_0_chr6_dbb_hap3_4444991_r;uc011gmb.3_exon_5_0_chr6_dbb_hap3_4445518_r;uc011gmc.2_exon_0_0_chr6_dbb_hap3_4444695_r;uc011gmc.2_exon_1_0_chr6_dbb_hap3_4445518_r;uc011gmd.1_exon_0_0_chr6_dbb_hap3_4444869_r;uc011gme.2_exon_0_0_chr6_dbb_hap3_4444869_r;uc011gmf.2_exon_0_0_chr6_dbb_hap3_4444869_r	0	0	0
+chr6_dbb_hap3	4445594	4445722	uc011gly.3_exon_3_0_chr6_dbb_hap3_4444654_r;uc011gly.3_exon_4_0_chr6_dbb_hap3_4444991_r;uc011gly.3_exon_5_0_chr6_dbb_hap3_4445518_r;uc011glz.3_exon_3_0_chr6_dbb_hap3_4444654_r;uc011glz.3_exon_4_0_chr6_dbb_hap3_4444991_r;uc011glz.3_exon_5_0_chr6_dbb_hap3_4445518_r;uc011gmb.3_exon_3_0_chr6_dbb_hap3_4444654_r;uc011gmb.3_exon_4_0_chr6_dbb_hap3_4444991_r;uc011gmb.3_exon_5_0_chr6_dbb_hap3_4445518_r;uc011gmc.2_exon_0_0_chr6_dbb_hap3_4444695_r;uc011gmc.2_exon_1_0_chr6_dbb_hap3_4445518_r;uc011gmd.1_exon_0_0_chr6_dbb_hap3_4444869_r;uc011gme.2_exon_0_0_chr6_dbb_hap3_4444869_r;uc011gmf.2_exon_0_0_chr6_dbb_hap3_4444869_r	0	0	0
+chr6_dbb_hap3	4446814	4447061	uc011gly.3_exon_6_0_chr6_dbb_hap3_4446846_r;uc011glz.3_exon_6_0_chr6_dbb_hap3_4446846_r;uc011gmb.3_exon_6_0_chr6_dbb_hap3_4446846_r;uc011gmc.2_exon_2_0_chr6_dbb_hap3_4446846_r;uc011gmd.1_exon_1_0_chr6_dbb_hap3_4446846_r;uc011gme.2_exon_1_0_chr6_dbb_hap3_4446846_r;uc011gmf.2_exon_1_0_chr6_dbb_hap3_4446846_r	0	0	0
+chr6_dbb_hap3	4447359	4447695	uc011gly.3_exon_7_0_chr6_dbb_hap3_4447392_r;uc011glz.3_exon_7_0_chr6_dbb_hap3_4447392_r;uc011gmb.3_exon_7_0_chr6_dbb_hap3_4447392_r;uc011gmc.2_exon_3_0_chr6_dbb_hap3_4447392_r;uc011gmd.1_exon_2_0_chr6_dbb_hap3_4447392_r;uc011gme.2_exon_2_0_chr6_dbb_hap3_4447392_r;uc011gmf.2_exon_2_0_chr6_dbb_hap3_4447392_r	0	0	0
+chr6_dbb_hap3	4448224	4448371	uc011gly.3_exon_8_0_chr6_dbb_hap3_4448253_r;uc011glz.3_exon_8_0_chr6_dbb_hap3_4448253_r;uc011gme.2_exon_3_0_chr6_dbb_hap3_4448253_r	0	0	0
+chr6_dbb_hap3	4448374	4448511	uc011gly.3_exon_8_0_chr6_dbb_hap3_4448253_r;uc011glz.3_exon_8_0_chr6_dbb_hap3_4448253_r;uc011gme.2_exon_3_0_chr6_dbb_hap3_4448253_r	0	0	0
+chr6_dbb_hap3	4449294	4449404	uc011gly.3_exon_9_0_chr6_dbb_hap3_4449326_r;uc011glz.3_exon_9_0_chr6_dbb_hap3_4449326_r;uc011gmc.2_exon_4_0_chr6_dbb_hap3_4449326_r;uc011gme.2_exon_4_0_chr6_dbb_hap3_4449326_r;uc011gmf.2_exon_3_0_chr6_dbb_hap3_4449326_r	0	0	0
+chr6_dbb_hap3	4449419	4449798	uc011gly.3_exon_9_0_chr6_dbb_hap3_4449326_r;uc011glz.3_exon_9_0_chr6_dbb_hap3_4449326_r;uc011gmc.2_exon_4_0_chr6_dbb_hap3_4449326_r;uc011gme.2_exon_4_0_chr6_dbb_hap3_4449326_r;uc011gmf.2_exon_3_0_chr6_dbb_hap3_4449326_r	0	0	0
+chr6_dbb_hap3	4449814	4449954	uc011gmb.3_exon_8_0_chr6_dbb_hap3_4449851_r	0	0	0
+chr6_mann_hap4	4618646	4619934	uc011hgn.3_exon_0_0_chr6_mann_hap4_4618677_r;uc011hgo.3_exon_0_0_chr6_mann_hap4_4618677_r;uc011hgq.3_exon_0_0_chr6_mann_hap4_4618677_r	0	0	0
+chr6_mann_hap4	4620016	4620159	uc011hgn.3_exon_1_0_chr6_mann_hap4_4620038_r;uc011hgo.3_exon_1_0_chr6_mann_hap4_4620038_r;uc011hgq.3_exon_1_0_chr6_mann_hap4_4620038_r	0	0	0
+chr6_mann_hap4	4620426	4620577	uc011hgn.3_exon_2_0_chr6_mann_hap4_4620456_r;uc011hgo.3_exon_2_0_chr6_mann_hap4_4620456_r;uc011hgq.3_exon_2_0_chr6_mann_hap4_4620456_r	0	0	0
+chr6_mann_hap4	4620636	4621588	uc011hgn.3_exon_3_0_chr6_mann_hap4_4620663_r;uc011hgn.3_exon_4_0_chr6_mann_hap4_4621000_r;uc011hgn.3_exon_5_0_chr6_mann_hap4_4621527_r;uc011hgo.3_exon_3_0_chr6_mann_hap4_4620663_r;uc011hgo.3_exon_4_0_chr6_mann_hap4_4621000_r;uc011hgo.3_exon_5_0_chr6_mann_hap4_4621527_r;uc011hgq.3_exon_3_0_chr6_mann_hap4_4620663_r;uc011hgq.3_exon_4_0_chr6_mann_hap4_4621000_r;uc011hgq.3_exon_5_0_chr6_mann_hap4_4621527_r;uc011hgr.2_exon_0_0_chr6_mann_hap4_4620704_r;uc011hgr.2_exon_1_0_chr6_mann_hap4_4621527_r;uc011hgs.1_exon_0_0_chr6_mann_hap4_4620878_r;uc011hgt.2_exon_0_0_chr6_mann_hap4_4620878_r;uc011hgu.2_exon_0_0_chr6_mann_hap4_4620878_r	0	0	0
+chr6_mann_hap4	4621591	4621730	uc011hgn.3_exon_3_0_chr6_mann_hap4_4620663_r;uc011hgn.3_exon_4_0_chr6_mann_hap4_4621000_r;uc011hgn.3_exon_5_0_chr6_mann_hap4_4621527_r;uc011hgo.3_exon_3_0_chr6_mann_hap4_4620663_r;uc011hgo.3_exon_4_0_chr6_mann_hap4_4621000_r;uc011hgo.3_exon_5_0_chr6_mann_hap4_4621527_r;uc011hgq.3_exon_3_0_chr6_mann_hap4_4620663_r;uc011hgq.3_exon_4_0_chr6_mann_hap4_4621000_r;uc011hgq.3_exon_5_0_chr6_mann_hap4_4621527_r;uc011hgr.2_exon_0_0_chr6_mann_hap4_4620704_r;uc011hgr.2_exon_1_0_chr6_mann_hap4_4621527_r;uc011hgs.1_exon_0_0_chr6_mann_hap4_4620878_r;uc011hgt.2_exon_0_0_chr6_mann_hap4_4620878_r;uc011hgu.2_exon_0_0_chr6_mann_hap4_4620878_r	0	0	0
+chr6_mann_hap4	4622826	4623065	uc011hgn.3_exon_6_0_chr6_mann_hap4_4622855_r;uc011hgo.3_exon_6_0_chr6_mann_hap4_4622855_r;uc011hgq.3_exon_6_0_chr6_mann_hap4_4622855_r;uc011hgr.2_exon_2_0_chr6_mann_hap4_4622855_r;uc011hgs.1_exon_1_0_chr6_mann_hap4_4622855_r;uc011hgt.2_exon_1_0_chr6_mann_hap4_4622855_r;uc011hgu.2_exon_1_0_chr6_mann_hap4_4622855_r	0	0	0
+chr6_mann_hap4	4623366	4623703	uc011hgn.3_exon_7_0_chr6_mann_hap4_4623401_r;uc011hgo.3_exon_7_0_chr6_mann_hap4_4623401_r;uc011hgq.3_exon_7_0_chr6_mann_hap4_4623401_r;uc011hgr.2_exon_3_0_chr6_mann_hap4_4623401_r;uc011hgs.1_exon_2_0_chr6_mann_hap4_4623401_r;uc011hgt.2_exon_2_0_chr6_mann_hap4_4623401_r;uc011hgu.2_exon_2_0_chr6_mann_hap4_4623401_r	0	0	0
+chr6_mann_hap4	4624226	4624378	uc011hgn.3_exon_8_0_chr6_mann_hap4_4624262_r;uc011hgo.3_exon_8_0_chr6_mann_hap4_4624262_r;uc011hgt.2_exon_3_0_chr6_mann_hap4_4624262_r	0	0	0
+chr6_mann_hap4	4624386	4624523	uc011hgn.3_exon_8_0_chr6_mann_hap4_4624262_r;uc011hgo.3_exon_8_0_chr6_mann_hap4_4624262_r;uc011hgt.2_exon_3_0_chr6_mann_hap4_4624262_r	0	0	0
+chr6_mann_hap4	4625301	4625412	uc011hgn.3_exon_9_0_chr6_mann_hap4_4625335_r;uc011hgo.3_exon_9_0_chr6_mann_hap4_4625335_r;uc011hgr.2_exon_4_0_chr6_mann_hap4_4625335_r;uc011hgt.2_exon_4_0_chr6_mann_hap4_4625335_r;uc011hgu.2_exon_3_0_chr6_mann_hap4_4625335_r	0	0	0
+chr6_mann_hap4	4625426	4625809	uc011hgn.3_exon_9_0_chr6_mann_hap4_4625335_r;uc011hgo.3_exon_9_0_chr6_mann_hap4_4625335_r;uc011hgr.2_exon_4_0_chr6_mann_hap4_4625335_r;uc011hgt.2_exon_4_0_chr6_mann_hap4_4625335_r;uc011hgu.2_exon_3_0_chr6_mann_hap4_4625335_r	0	0	0
+chr6_mann_hap4	4625826	4625962	uc011hgq.3_exon_8_0_chr6_mann_hap4_4625860_r	0	0	0
+chr6_mcf_hap5	4635098	4635635	uc011ibu.3_exon_0_0_chr6_mcf_hap5_4635126_r;uc011ibv.3_exon_0_0_chr6_mcf_hap5_4635126_r;uc011ibx.3_exon_0_0_chr6_mcf_hap5_4635126_r	0	0	0
+chr6_mcf_hap5	4635653	4636382	uc011ibu.3_exon_0_0_chr6_mcf_hap5_4635126_r;uc011ibv.3_exon_0_0_chr6_mcf_hap5_4635126_r;uc011ibx.3_exon_0_0_chr6_mcf_hap5_4635126_r	0	0	0
+chr6_mcf_hap5	4636463	4636602	uc011ibu.3_exon_1_0_chr6_mcf_hap5_4636486_r;uc011ibv.3_exon_1_0_chr6_mcf_hap5_4636486_r;uc011ibx.3_exon_1_0_chr6_mcf_hap5_4636486_r	0	0	0
+chr6_mcf_hap5	4636873	4637025	uc011ibu.3_exon_2_0_chr6_mcf_hap5_4636904_r;uc011ibv.3_exon_2_0_chr6_mcf_hap5_4636904_r;uc011ibx.3_exon_2_0_chr6_mcf_hap5_4636904_r	0	0	0
+chr6_mcf_hap5	4637088	4637237	uc011ibu.3_exon_3_0_chr6_mcf_hap5_4637111_r;uc011ibu.3_exon_4_0_chr6_mcf_hap5_4637446_r;uc011ibu.3_exon_5_0_chr6_mcf_hap5_4637973_r;uc011ibv.3_exon_3_0_chr6_mcf_hap5_4637111_r;uc011ibv.3_exon_4_0_chr6_mcf_hap5_4637446_r;uc011ibv.3_exon_5_0_chr6_mcf_hap5_4637973_r;uc011ibx.3_exon_3_0_chr6_mcf_hap5_4637111_r;uc011ibx.3_exon_4_0_chr6_mcf_hap5_4637446_r;uc011ibx.3_exon_5_0_chr6_mcf_hap5_4637973_r;uc011iby.2_exon_0_0_chr6_mcf_hap5_4637152_r;uc011iby.2_exon_1_0_chr6_mcf_hap5_4637973_r;uc011ibz.1_exon_0_0_chr6_mcf_hap5_4637326_r;uc011ica.2_exon_0_0_chr6_mcf_hap5_4637326_r;uc011icb.2_exon_0_0_chr6_mcf_hap5_4637326_r	0	0	0
+chr6_mcf_hap5	4637238	4638034	uc011ibu.3_exon_3_0_chr6_mcf_hap5_4637111_r;uc011ibu.3_exon_4_0_chr6_mcf_hap5_4637446_r;uc011ibu.3_exon_5_0_chr6_mcf_hap5_4637973_r;uc011ibv.3_exon_3_0_chr6_mcf_hap5_4637111_r;uc011ibv.3_exon_4_0_chr6_mcf_hap5_4637446_r;uc011ibv.3_exon_5_0_chr6_mcf_hap5_4637973_r;uc011ibx.3_exon_3_0_chr6_mcf_hap5_4637111_r;uc011ibx.3_exon_4_0_chr6_mcf_hap5_4637446_r;uc011ibx.3_exon_5_0_chr6_mcf_hap5_4637973_r;uc011iby.2_exon_0_0_chr6_mcf_hap5_4637152_r;uc011iby.2_exon_1_0_chr6_mcf_hap5_4637973_r;uc011ibz.1_exon_0_0_chr6_mcf_hap5_4637326_r;uc011ica.2_exon_0_0_chr6_mcf_hap5_4637326_r;uc011icb.2_exon_0_0_chr6_mcf_hap5_4637326_r	0	0	0
+chr6_mcf_hap5	4638038	4638177	uc011ibu.3_exon_3_0_chr6_mcf_hap5_4637111_r;uc011ibu.3_exon_4_0_chr6_mcf_hap5_4637446_r;uc011ibu.3_exon_5_0_chr6_mcf_hap5_4637973_r;uc011ibv.3_exon_3_0_chr6_mcf_hap5_4637111_r;uc011ibv.3_exon_4_0_chr6_mcf_hap5_4637446_r;uc011ibv.3_exon_5_0_chr6_mcf_hap5_4637973_r;uc011ibx.3_exon_3_0_chr6_mcf_hap5_4637111_r;uc011ibx.3_exon_4_0_chr6_mcf_hap5_4637446_r;uc011ibx.3_exon_5_0_chr6_mcf_hap5_4637973_r;uc011iby.2_exon_0_0_chr6_mcf_hap5_4637152_r;uc011iby.2_exon_1_0_chr6_mcf_hap5_4637973_r;uc011ibz.1_exon_0_0_chr6_mcf_hap5_4637326_r;uc011ica.2_exon_0_0_chr6_mcf_hap5_4637326_r;uc011icb.2_exon_0_0_chr6_mcf_hap5_4637326_r	0	0	0
+chr6_mcf_hap5	4639268	4639512	uc011ibu.3_exon_6_0_chr6_mcf_hap5_4639301_r;uc011ibv.3_exon_6_0_chr6_mcf_hap5_4639301_r;uc011ibx.3_exon_6_0_chr6_mcf_hap5_4639301_r;uc011iby.2_exon_2_0_chr6_mcf_hap5_4639301_r;uc011ibz.1_exon_1_0_chr6_mcf_hap5_4639301_r;uc011ica.2_exon_1_0_chr6_mcf_hap5_4639301_r;uc011icb.2_exon_1_0_chr6_mcf_hap5_4639301_r	0	0	0
+chr6_mcf_hap5	4639813	4640150	uc011ibu.3_exon_7_0_chr6_mcf_hap5_4639847_r;uc011ibv.3_exon_7_0_chr6_mcf_hap5_4639847_r;uc011ibx.3_exon_7_0_chr6_mcf_hap5_4639847_r;uc011iby.2_exon_3_0_chr6_mcf_hap5_4639847_r;uc011ibz.1_exon_2_0_chr6_mcf_hap5_4639847_r;uc011ica.2_exon_2_0_chr6_mcf_hap5_4639847_r;uc011icb.2_exon_2_0_chr6_mcf_hap5_4639847_r	0	0	0
+chr6_mcf_hap5	4640678	4640825	uc011ibu.3_exon_8_0_chr6_mcf_hap5_4640707_r;uc011ibv.3_exon_8_0_chr6_mcf_hap5_4640707_r;uc011ica.2_exon_3_0_chr6_mcf_hap5_4640707_r	0	0	0
+chr6_mcf_hap5	4640828	4640965	uc011ibu.3_exon_8_0_chr6_mcf_hap5_4640707_r;uc011ibv.3_exon_8_0_chr6_mcf_hap5_4640707_r;uc011ica.2_exon_3_0_chr6_mcf_hap5_4640707_r	0	0	0
+chr6_mcf_hap5	4641748	4641858	uc011ibu.3_exon_9_0_chr6_mcf_hap5_4641780_r;uc011ibv.3_exon_9_0_chr6_mcf_hap5_4641780_r;uc011iby.2_exon_4_0_chr6_mcf_hap5_4641780_r;uc011ica.2_exon_4_0_chr6_mcf_hap5_4641780_r;uc011icb.2_exon_3_0_chr6_mcf_hap5_4641780_r	0	0	0
+chr6_mcf_hap5	4641873	4642252	uc011ibu.3_exon_9_0_chr6_mcf_hap5_4641780_r;uc011ibv.3_exon_9_0_chr6_mcf_hap5_4641780_r;uc011iby.2_exon_4_0_chr6_mcf_hap5_4641780_r;uc011ica.2_exon_4_0_chr6_mcf_hap5_4641780_r;uc011icb.2_exon_3_0_chr6_mcf_hap5_4641780_r	0	0	0
+chr6_mcf_hap5	4642268	4642408	uc011ibx.3_exon_8_0_chr6_mcf_hap5_4642305_r	0	0	0
+chr6_qbl_hap6	4393556	4394093	uc011izg.3_exon_0_0_chr6_qbl_hap6_4393584_r;uc011izh.3_exon_0_0_chr6_qbl_hap6_4393584_r;uc011izj.3_exon_0_0_chr6_qbl_hap6_4393584_r	0	0	0
+chr6_qbl_hap6	4394111	4394841	uc011izg.3_exon_0_0_chr6_qbl_hap6_4393584_r;uc011izh.3_exon_0_0_chr6_qbl_hap6_4393584_r;uc011izj.3_exon_0_0_chr6_qbl_hap6_4393584_r	0	0	0
+chr6_qbl_hap6	4394921	4395061	uc011izg.3_exon_1_0_chr6_qbl_hap6_4394945_r;uc011izh.3_exon_1_0_chr6_qbl_hap6_4394945_r;uc011izj.3_exon_1_0_chr6_qbl_hap6_4394945_r	0	0	0
+chr6_qbl_hap6	4395336	4395489	uc011izg.3_exon_2_0_chr6_qbl_hap6_4395363_r;uc011izh.3_exon_2_0_chr6_qbl_hap6_4395363_r;uc011izj.3_exon_2_0_chr6_qbl_hap6_4395363_r	0	0	0
+chr6_qbl_hap6	4395536	4396491	uc011izg.3_exon_3_0_chr6_qbl_hap6_4395570_r;uc011izg.3_exon_4_0_chr6_qbl_hap6_4395907_r;uc011izg.3_exon_5_0_chr6_qbl_hap6_4396434_r;uc011izh.3_exon_3_0_chr6_qbl_hap6_4395570_r;uc011izh.3_exon_4_0_chr6_qbl_hap6_4395907_r;uc011izh.3_exon_5_0_chr6_qbl_hap6_4396434_r;uc011izj.3_exon_3_0_chr6_qbl_hap6_4395570_r;uc011izj.3_exon_4_0_chr6_qbl_hap6_4395907_r;uc011izj.3_exon_5_0_chr6_qbl_hap6_4396434_r;uc011izk.2_exon_0_0_chr6_qbl_hap6_4395611_r;uc011izk.2_exon_1_0_chr6_qbl_hap6_4396434_r;uc011izl.1_exon_0_0_chr6_qbl_hap6_4395785_r;uc011izm.2_exon_0_0_chr6_qbl_hap6_4395785_r;uc011izn.2_exon_0_0_chr6_qbl_hap6_4395785_r	0	0	0
+chr6_qbl_hap6	4396511	4396639	uc011izg.3_exon_3_0_chr6_qbl_hap6_4395570_r;uc011izg.3_exon_4_0_chr6_qbl_hap6_4395907_r;uc011izg.3_exon_5_0_chr6_qbl_hap6_4396434_r;uc011izh.3_exon_3_0_chr6_qbl_hap6_4395570_r;uc011izh.3_exon_4_0_chr6_qbl_hap6_4395907_r;uc011izh.3_exon_5_0_chr6_qbl_hap6_4396434_r;uc011izj.3_exon_3_0_chr6_qbl_hap6_4395570_r;uc011izj.3_exon_4_0_chr6_qbl_hap6_4395907_r;uc011izj.3_exon_5_0_chr6_qbl_hap6_4396434_r;uc011izk.2_exon_0_0_chr6_qbl_hap6_4395611_r;uc011izk.2_exon_1_0_chr6_qbl_hap6_4396434_r;uc011izl.1_exon_0_0_chr6_qbl_hap6_4395785_r;uc011izm.2_exon_0_0_chr6_qbl_hap6_4395785_r;uc011izn.2_exon_0_0_chr6_qbl_hap6_4395785_r	0	0	0
+chr6_qbl_hap6	4397731	4397970	uc011izg.3_exon_6_0_chr6_qbl_hap6_4397762_r;uc011izh.3_exon_6_0_chr6_qbl_hap6_4397762_r;uc011izj.3_exon_6_0_chr6_qbl_hap6_4397762_r;uc011izk.2_exon_2_0_chr6_qbl_hap6_4397762_r;uc011izl.1_exon_1_0_chr6_qbl_hap6_4397762_r;uc011izm.2_exon_1_0_chr6_qbl_hap6_4397762_r;uc011izn.2_exon_1_0_chr6_qbl_hap6_4397762_r	0	0	0
+chr6_qbl_hap6	4398276	4398610	uc011izg.3_exon_7_0_chr6_qbl_hap6_4398308_r;uc011izh.3_exon_7_0_chr6_qbl_hap6_4398308_r;uc011izj.3_exon_7_0_chr6_qbl_hap6_4398308_r;uc011izk.2_exon_3_0_chr6_qbl_hap6_4398308_r;uc011izl.1_exon_2_0_chr6_qbl_hap6_4398308_r;uc011izm.2_exon_2_0_chr6_qbl_hap6_4398308_r;uc011izn.2_exon_2_0_chr6_qbl_hap6_4398308_r	0	0	0
+chr6_qbl_hap6	4399136	4399287	uc011izg.3_exon_8_0_chr6_qbl_hap6_4399169_r;uc011izh.3_exon_8_0_chr6_qbl_hap6_4399169_r;uc011izm.2_exon_3_0_chr6_qbl_hap6_4399169_r	0	0	0
+chr6_qbl_hap6	4399291	4399436	uc011izg.3_exon_8_0_chr6_qbl_hap6_4399169_r;uc011izh.3_exon_8_0_chr6_qbl_hap6_4399169_r;uc011izm.2_exon_3_0_chr6_qbl_hap6_4399169_r	0	0	0
+chr6_qbl_hap6	4400206	4400308	uc011izg.3_exon_9_0_chr6_qbl_hap6_4400242_r;uc011izh.3_exon_9_0_chr6_qbl_hap6_4400242_r;uc011izk.2_exon_4_0_chr6_qbl_hap6_4400242_r;uc011izm.2_exon_4_0_chr6_qbl_hap6_4400242_r;uc011izn.2_exon_3_0_chr6_qbl_hap6_4400242_r	0	0	0
+chr6_qbl_hap6	4400331	4400714	uc011izg.3_exon_9_0_chr6_qbl_hap6_4400242_r;uc011izh.3_exon_9_0_chr6_qbl_hap6_4400242_r;uc011izk.2_exon_4_0_chr6_qbl_hap6_4400242_r;uc011izm.2_exon_4_0_chr6_qbl_hap6_4400242_r;uc011izn.2_exon_3_0_chr6_qbl_hap6_4400242_r	0	0	0
+chr6_qbl_hap6	4400726	4400870	uc011izj.3_exon_8_0_chr6_qbl_hap6_4400767_r	0	0	0
+chr7	30892967	30893116	uc011kac.1_exon_0_0_chr7_30893010_f	0	0	0
+chr7	30898822	30898975	uc011kac.1_exon_1_0_chr7_30898873_f	0	0	0
+chr7	30911807	30911957	uc011kac.1_exon_2_0_chr7_30911858_f	0	0	0
+chr7	30915087	30915303	uc011kac.1_exon_3_0_chr7_30915110_f	0	0	0
+chr7	30921767	30922009	uc011kac.1_exon_4_0_chr7_30921796_f	0	0	0
+chr7	30922497	30922635	uc011kac.1_exon_5_0_chr7_30922536_f	0	0	0
+chr7	30951382	30951943	uc003tbv.2_exon_0_0_chr7_30951415_f;uc011kac.1_exon_6_0_chr7_30951608_f	0	0	0
+chr7	30960842	30960980	uc010kwf.1_exon_0_0_chr7_30960915_f	0	0	0
+chr7	30961072	30961461	uc010kwf.1_exon_1_0_chr7_30961296_f;uc010kwh.1_exon_0_0_chr7_30961105_f;uc022abh.1_exon_0_0_chr7_30961119_f	0	0	0
+chr7	30961647	30961869	uc003tbv.2_exon_1_0_chr7_30961681_f;uc010kwf.1_exon_2_0_chr7_30961681_f;uc010kwh.1_exon_1_0_chr7_30961681_f;uc011kac.1_exon_7_0_chr7_30961681_f;uc022abh.1_exon_1_0_chr7_30961681_f	0	0	0
+chr7	30962147	30962280	uc003tbv.2_exon_2_0_chr7_30962179_f;uc010kwf.1_exon_3_0_chr7_30962179_f;uc010kwh.1_exon_2_0_chr7_30962179_f;uc011kac.1_exon_8_0_chr7_30962179_f;uc022abh.1_exon_2_0_chr7_30962179_f	0	0	0
+chr7	30963042	30963732	uc003tbv.2_exon_3_0_chr7_30963065_f;uc010kwf.1_exon_4_0_chr7_30963065_f;uc010kwh.1_exon_3_0_chr7_30963065_f;uc011kac.1_exon_9_0_chr7_30963065_f;uc022abh.1_exon_3_0_chr7_30963065_f	0	0	0
+chr7	30963742	30965147	uc003tbv.2_exon_3_0_chr7_30963065_f;uc010kwf.1_exon_4_0_chr7_30963065_f;uc010kwh.1_exon_3_0_chr7_30963065_f;uc011kac.1_exon_9_0_chr7_30963065_f;uc022abh.1_exon_3_0_chr7_30963065_f	0	0	0
+chr7	86781642	86782145	uc003uih.3_exon_0_0_chr7_86781677_f;uc003uii.3_exon_0_0_chr7_86781677_f;uc003uij.3_exon_0_0_chr7_86781677_f;uc003uil.3_exon_0_0_chr7_86781870_f;uc011khb.2_exon_0_0_chr7_86781677_f	0	0	0
+chr7	86783487	86783631	uc003uil.3_exon_1_0_chr7_86783544_f	0	0	0
+chr7	86783682	86783865	uc003uil.3_exon_2_0_chr7_86783706_f	0	0	0
+chr7	86792167	86792280	uc003uih.3_exon_1_0_chr7_86792811_f;uc003uii.3_exon_1_0_chr7_86792811_f;uc003uij.3_exon_1_0_chr7_86792811_f;uc003uil.3_exon_3_0_chr7_86792811_f;uc003uim.1_exon_0_0_chr7_86792198_f;uc003uin.3_exon_0_0_chr7_86792198_f;uc011khb.2_exon_1_0_chr7_86792811_f	0	0	0
+chr7	86792287	86792538	uc003uih.3_exon_1_0_chr7_86792811_f;uc003uii.3_exon_1_0_chr7_86792811_f;uc003uij.3_exon_1_0_chr7_86792811_f;uc003uil.3_exon_3_0_chr7_86792811_f;uc003uim.1_exon_0_0_chr7_86792198_f;uc003uin.3_exon_0_0_chr7_86792198_f;uc011khb.2_exon_1_0_chr7_86792811_f	0	0	0
+chr7	86792542	86792974	uc003uih.3_exon_1_0_chr7_86792811_f;uc003uii.3_exon_1_0_chr7_86792811_f;uc003uij.3_exon_1_0_chr7_86792811_f;uc003uil.3_exon_3_0_chr7_86792811_f;uc003uim.1_exon_0_0_chr7_86792198_f;uc003uin.3_exon_0_0_chr7_86792198_f;uc011khb.2_exon_1_0_chr7_86792811_f	0	0	0
+chr7	86793527	86793675	uc003uin.3_exon_1_0_chr7_86793570_f	0	0	0
+chr7	86794222	86794407	uc003uih.3_exon_2_0_chr7_86794250_f;uc003uii.3_exon_2_0_chr7_86794250_f;uc003uij.3_exon_2_0_chr7_86794250_f;uc003uil.3_exon_4_0_chr7_86794250_f;uc003uim.1_exon_1_0_chr7_86794250_f;uc003uin.3_exon_2_0_chr7_86794250_f	0	0	0
+chr7	86795777	86795956	uc003uih.3_exon_3_0_chr7_86795799_f;uc003uii.3_exon_3_0_chr7_86795799_f;uc003uij.3_exon_3_0_chr7_86795799_f;uc003uil.3_exon_5_0_chr7_86795799_f;uc003uim.1_exon_2_0_chr7_86795799_f;uc003uin.3_exon_3_0_chr7_86795799_f;uc011khb.2_exon_2_0_chr7_86795799_f	0	0	0
+chr7	86800282	86800435	uc003uih.3_exon_4_0_chr7_86800311_f;uc003uii.3_exon_4_0_chr7_86800311_f;uc003uij.3_exon_4_0_chr7_86800311_f;uc003uil.3_exon_6_0_chr7_86800311_f;uc003uim.1_exon_3_0_chr7_86800311_f;uc003uin.3_exon_4_0_chr7_86800311_f;uc011khb.2_exon_3_0_chr7_86800311_f	0	0	0
+chr7	86802827	86803000	uc003uih.3_exon_5_0_chr7_86802851_f;uc003uii.3_exon_5_0_chr7_86802851_f;uc003uij.3_exon_5_0_chr7_86802851_f;uc003uil.3_exon_7_0_chr7_86802851_f;uc003uim.1_exon_4_0_chr7_86802851_f;uc003uin.3_exon_5_0_chr7_86802851_f;uc011khb.2_exon_4_0_chr7_86802851_f	0	0	0
+chr7	86803867	86804006	uc003uih.3_exon_6_0_chr7_86803909_f;uc003uii.3_exon_6_0_chr7_86803909_f;uc003uij.3_exon_6_0_chr7_86803909_f;uc003uil.3_exon_8_0_chr7_86803909_f;uc003uim.1_exon_5_0_chr7_86803909_f;uc003uin.3_exon_6_0_chr7_86803909_f;uc011khb.2_exon_5_0_chr7_86803909_f	0	0	0
+chr7	86808837	86809049	uc003uih.3_exon_7_0_chr7_86808861_f;uc003uii.3_exon_7_0_chr7_86808861_f;uc003uij.3_exon_7_0_chr7_86808861_f;uc003uil.3_exon_9_0_chr7_86808861_f;uc003uim.1_exon_6_0_chr7_86808861_f;uc003uin.3_exon_7_0_chr7_86808861_f;uc011khb.2_exon_6_0_chr7_86808861_f	0	0	0
+chr7	86810597	86810690	uc003uih.3_exon_8_0_chr7_86810625_f;uc003uii.3_exon_8_0_chr7_86810625_f;uc003uij.3_exon_8_0_chr7_86810625_f;uc003uil.3_exon_10_0_chr7_86810625_f;uc003uin.3_exon_8_0_chr7_86810625_f;uc011khb.2_exon_7_0_chr7_86810625_f	0	0	0
+chr7	86811307	86811689	uc003uih.3_exon_9_0_chr7_86811544_f;uc003uii.3_exon_9_0_chr7_86811333_f;uc003uij.3_exon_9_0_chr7_86811372_f;uc003uil.3_exon_11_0_chr7_86811544_f;uc003uin.3_exon_9_0_chr7_86811372_f;uc011khb.2_exon_8_0_chr7_86811544_f	0	0	0
+chr7	86813727	86813975	uc003uih.3_exon_10_0_chr7_86813713_f;uc003uii.3_exon_10_0_chr7_86813713_f;uc003uij.3_exon_10_0_chr7_86813713_f;uc003uil.3_exon_12_0_chr7_86813713_f;uc003uin.3_exon_10_0_chr7_86813713_f;uc011khb.2_exon_9_0_chr7_86813713_f	0	0	0
+chr7	86815122	86815324	uc003uih.3_exon_11_0_chr7_86815145_f;uc003uii.3_exon_11_0_chr7_86815145_f;uc003uij.3_exon_11_0_chr7_86815145_f;uc003uil.3_exon_13_0_chr7_86815145_f;uc003uin.3_exon_11_0_chr7_86815145_f;uc011khb.2_exon_10_0_chr7_86815145_f	0	0	0
+chr7	86817377	86817636	uc003uih.3_exon_12_0_chr7_86817408_f;uc003uii.3_exon_12_0_chr7_86817408_f;uc003uij.3_exon_12_0_chr7_86817408_f;uc003uil.3_exon_14_0_chr7_86817408_f;uc003uin.3_exon_12_0_chr7_86817408_f;uc011khb.2_exon_11_0_chr7_86817408_f	0	0	0
+chr7	86820227	86820372	uc003uih.3_exon_13_0_chr7_86820261_f;uc003uii.3_exon_13_0_chr7_86820261_f;uc003uij.3_exon_13_0_chr7_86820261_f;uc003uil.3_exon_15_0_chr7_86820261_f;uc003uin.3_exon_13_0_chr7_86820261_f;uc011khb.2_exon_12_0_chr7_86820261_f	0	0	0
+chr7	86822492	86822703	uc003uih.3_exon_14_0_chr7_86822514_f;uc003uii.3_exon_14_0_chr7_86822514_f;uc003uij.3_exon_14_0_chr7_86822514_f;uc003uil.3_exon_16_0_chr7_86822514_f;uc003uin.3_exon_14_0_chr7_86822514_f;uc011khb.2_exon_13_0_chr7_86822514_f	0	0	0
+chr7	86823017	86823430	uc003uih.3_exon_15_0_chr7_86823041_f;uc003uii.3_exon_15_0_chr7_86823041_f;uc003uij.3_exon_15_0_chr7_86823041_f;uc003uil.3_exon_17_0_chr7_86823041_f;uc003uin.3_exon_15_0_chr7_86823041_f;uc011khb.2_exon_14_0_chr7_86823041_f	0	0	0
+chr7	86823992	86824167	uc003uih.3_exon_16_0_chr7_86824000_f;uc003uii.3_exon_16_0_chr7_86824000_f;uc003uij.3_exon_16_0_chr7_86824000_f;uc003uil.3_exon_18_0_chr7_86824000_f;uc003uin.3_exon_16_0_chr7_86824000_f;uc011khb.2_exon_15_0_chr7_86824000_f	0	0	0
+chr7	86824322	86825657	uc003uih.3_exon_17_0_chr7_86824347_f;uc003uii.3_exon_17_0_chr7_86824347_f;uc003uij.3_exon_17_0_chr7_86824347_f;uc003uil.3_exon_19_0_chr7_86824347_f;uc003uin.3_exon_17_0_chr7_86824347_f;uc011khb.2_exon_16_0_chr7_86824347_f	0	0	0
+chr7	107405890	107406341	uc003ver.2_exon_0_0_chr7_107405912_r;uc003ves.2_exon_0_0_chr7_107405912_r	0	0	0
+chr7	107407980	107408114	uc003ver.2_exon_1_0_chr7_107408024_r;uc003ves.2_exon_1_0_chr7_107408024_r	0	0	0
+chr7	107408175	107408383	uc003ver.2_exon_2_0_chr7_107408211_r;uc003ves.2_exon_2_0_chr7_107408211_r	0	0	0
+chr7	107412445	107412587	uc003ver.2_exon_3_0_chr7_107412499_r;uc003ves.2_exon_3_0_chr7_107412499_r	0	0	0
+chr7	107414340	107414618	uc003ver.2_exon_4_0_chr7_107414365_r	0	0	0
+chr7	107415195	107415340	uc003ver.2_exon_5_0_chr7_107415222_r;uc003ves.2_exon_4_0_chr7_107415222_r	0	0	0
+chr7	107416870	107417021	uc003ver.2_exon_6_0_chr7_107416897_r;uc003ves.2_exon_5_0_chr7_107416897_r	0	0	0
+chr7	107417040	107417186	uc003ver.2_exon_7_0_chr7_107417082_r;uc003ves.2_exon_6_0_chr7_107417082_r	0	0	0
+chr7	107418595	107418767	uc003ver.2_exon_8_0_chr7_107418620_r;uc003ves.2_exon_7_0_chr7_107418620_r	0	0	0
+chr7	107420085	107420222	uc003ver.2_exon_9_0_chr7_107420113_r;uc003ves.2_exon_8_0_chr7_107420113_r	0	0	0
+chr7	107423200	107423348	uc003ver.2_exon_10_0_chr7_107423242_r;uc003ves.2_exon_9_0_chr7_107423242_r	0	0	0
+chr7	107423390	107423572	uc003ver.2_exon_11_0_chr7_107423425_r;uc003ves.2_exon_10_0_chr7_107423425_r	0	0	0
+chr7	107423620	107423833	uc003ver.2_exon_12_0_chr7_107423650_r;uc003ves.2_exon_11_0_chr7_107423650_r	0	0	0
+chr7	107427240	107427385	uc003ver.2_exon_13_0_chr7_107427272_r;uc003ves.2_exon_12_0_chr7_107427272_r	0	0	0
+chr7	107427770	107427982	uc003ver.2_exon_14_0_chr7_107427802_r;uc003ves.2_exon_13_0_chr7_107427802_r	0	0	0
+chr7	107429945	107430150	uc003ver.2_exon_15_0_chr7_107429969_r;uc003ves.2_exon_14_0_chr7_107429969_r	0	0	0
+chr7	107431460	107431716	uc003ver.2_exon_16_0_chr7_107431493_r;uc003ves.2_exon_15_0_chr7_107431493_r	0	0	0
+chr7	107432250	107432426	uc003ver.2_exon_17_0_chr7_107432275_r;uc003ves.2_exon_16_0_chr7_107432275_r	0	0	0
+chr7	107434165	107434339	uc003ver.2_exon_18_0_chr7_107434187_r;uc003ves.2_exon_17_0_chr7_107434187_r	0	0	0
+chr7	107434795	107435073	uc003ver.2_exon_19_0_chr7_107434824_r;uc003ves.2_exon_18_0_chr7_107434824_r	0	0	0
+chr7	107443530	107443722	uc003ver.2_exon_20_0_chr7_107443556_r;uc003ves.2_exon_19_0_chr7_107443556_r	0	0	0
+chr7	142568932	142569393	uc003wbw.1_exon_0_0_chr7_142568960_r;uc003wbx.2_exon_0_0_chr7_142568960_r;uc010lou.1_exon_0_0_chr7_142568960_r	0	0	0
+chr7	142569397	142569786	uc003wbw.1_exon_0_0_chr7_142568960_r;uc003wbx.2_exon_0_0_chr7_142568960_r;uc010lou.1_exon_0_0_chr7_142568960_r	0	0	0
+chr7	142570097	142570248	uc003wbw.1_exon_1_0_chr7_142570125_r;uc003wbx.2_exon_1_0_chr7_142570125_r;uc010lou.1_exon_1_0_chr7_142570125_r	0	0	0
+chr7	142571177	142571486	uc003wbw.1_exon_2_0_chr7_142571201_r;uc003wbx.2_exon_2_0_chr7_142571201_r;uc010lou.1_exon_2_0_chr7_142571201_r	0	0	0
+chr7	142571777	142571935	uc003wbw.1_exon_3_0_chr7_142571829_r;uc003wbx.2_exon_3_0_chr7_142571829_r;uc010lou.1_exon_3_0_chr7_142571829_r	0	0	0
+chr7	142572212	142572438	uc003wbw.1_exon_4_0_chr7_142572244_r;uc003wbx.2_exon_4_0_chr7_142572244_r;uc010lou.1_exon_4_0_chr7_142572244_r	0	0	0
+chr7	142572622	142572758	uc003wbw.1_exon_5_0_chr7_142572657_r;uc003wbx.2_exon_5_0_chr7_142572657_r;uc010lou.1_exon_5_0_chr7_142572657_r	0	0	0
+chr7	142572792	142572942	uc003wbw.1_exon_6_0_chr7_142572831_r;uc003wbx.2_exon_6_0_chr7_142572831_r;uc010lou.1_exon_6_0_chr7_142572831_r	0	0	0
+chr7	142573197	142573475	uc003wbw.1_exon_7_0_chr7_142573221_r;uc003wbx.2_exon_7_0_chr7_142573221_r;uc010lou.1_exon_7_0_chr7_142573221_r	0	0	0
+chr7	142573487	142573697	uc003wbw.1_exon_8_0_chr7_142573511_r;uc003wbx.2_exon_8_0_chr7_142573511_r;uc010lou.1_exon_8_0_chr7_142573511_r	0	0	0
+chr7	142574127	142574384	uc003wbw.1_exon_9_0_chr7_142574161_r;uc003wbx.2_exon_9_0_chr7_142574161_r;uc010lou.1_exon_9_0_chr7_142574161_r	0	0	0
+chr7	142574467	142574617	uc003wbx.2_exon_10_0_chr7_142574492_r;uc010lou.1_exon_10_0_chr7_142574492_r	0	0	0
+chr7	142574867	142575816	uc003wbx.2_exon_11_0_chr7_142574895_r;uc003wbx.2_exon_12_0_chr7_142575404_r;uc003wbx.2_exon_13_0_chr7_142575682_r;uc010lou.1_exon_11_0_chr7_142574895_r	0	0	0
+chr7	142583107	142583536	uc003wbx.2_exon_14_0_chr7_142583134_r	0	0	0
+chr7	142605622	142606003	uc003wby.1_exon_0_0_chr7_142605648_r	0	0	0
+chr7	142606627	142606808	uc003wby.1_exon_1_0_chr7_142606656_r	0	0	0
+chr7	142609612	142609934	uc003wby.1_exon_2_0_chr7_142609648_r	0	0	0
+chr7	142611762	142611916	uc003wby.1_exon_3_0_chr7_142611810_r	0	0	0
+chr7	142612027	142612242	uc003wby.1_exon_4_0_chr7_142612051_r	0	0	0
+chr7	142612442	142612581	uc003wby.1_exon_5_0_chr7_142612477_r	0	0	0
+chr7	142612612	142612772	uc003wby.1_exon_6_0_chr7_142612652_r	0	0	0
+chr7	142621867	142622850	uc003wby.1_exon_7_0_chr7_142622624_r;uc003wbz.3_exon_0_0_chr7_142621890_r	0	0	0
+chr7	142625147	142625374	uc003wby.1_exon_8_0_chr7_142625183_r;uc003wbz.3_exon_1_0_chr7_142625183_r	0	0	0
+chr7	142625752	142625972	uc003wby.1_exon_9_0_chr7_142625786_r;uc003wbz.3_exon_2_0_chr7_142625786_r	0	0	0
+chr7	142626092	142626236	uc003wby.1_exon_10_0_chr7_142626117_r;uc003wbz.3_exon_3_0_chr7_142626117_r	0	0	0
+chr7	142626487	142626686	uc003wby.1_exon_11_0_chr7_142626523_r;uc003wbz.3_exon_4_0_chr7_142626523_r	0	0	0
+chr7	142627117	142627313	uc003wby.1_exon_12_0_chr7_142627153_r;uc003wbz.3_exon_5_0_chr7_142627153_r	0	0	0
+chr7	142627417	142627551	uc003wby.1_exon_13_0_chr7_142627444_r;uc003wbz.3_exon_6_0_chr7_142627444_r	0	0	0
+chr7	142630402	142630694	uc003wby.1_exon_14_0_chr7_142630429_r;uc003wbz.3_exon_7_0_chr7_142630429_r	0	0	0
+chr7	142630727	142630864	uc003wby.1_exon_14_0_chr7_142630429_r;uc003wbz.3_exon_7_0_chr7_142630429_r	0	0	0
+chr8	38268623	38269612	uc003xlp.3_exon_0_0_chr8_38268656_r;uc010lwf.3_exon_0_0_chr8_38268656_r;uc010lwk.3_exon_0_0_chr8_38268656_r;uc011lbu.2_exon_0_0_chr8_38268656_r;uc011lbv.2_exon_0_0_chr8_38268656_r;uc011lbw.2_exon_0_0_chr8_38268656_r;uc022aua.1_exon_0_0_chr8_38268656_r;uc022aub.1_exon_0_0_chr8_38268656_r;uc022auc.1_exon_0_0_chr8_38268656_r;uc022aud.1_exon_0_0_chr8_38268656_r	0	0	0
+chr8	38269843	38270303	uc003xlp.3_exon_0_0_chr8_38268656_r;uc010lwf.3_exon_0_0_chr8_38268656_r;uc010lwk.3_exon_0_0_chr8_38268656_r;uc011lbu.2_exon_0_0_chr8_38268656_r;uc011lbv.2_exon_0_0_chr8_38268656_r;uc011lbw.2_exon_0_0_chr8_38268656_r;uc022aua.1_exon_0_0_chr8_38268656_r;uc022aub.1_exon_0_0_chr8_38268656_r;uc022auc.1_exon_0_0_chr8_38268656_r;uc022aud.1_exon_0_0_chr8_38268656_r	0	0	0
+chr8	38270373	38270723	uc003xlp.3_exon_0_0_chr8_38268656_r;uc010lwf.3_exon_0_0_chr8_38268656_r;uc010lwk.3_exon_0_0_chr8_38268656_r;uc011lbu.2_exon_0_0_chr8_38268656_r;uc011lbv.2_exon_0_0_chr8_38268656_r;uc011lbw.2_exon_0_0_chr8_38268656_r;uc022aua.1_exon_0_0_chr8_38268656_r;uc022aub.1_exon_0_0_chr8_38268656_r;uc022auc.1_exon_0_0_chr8_38268656_r;uc022aud.1_exon_0_0_chr8_38268656_r	0	0	0
+chr8	38270743	38271350	uc003xlp.3_exon_0_0_chr8_38268656_r;uc010lwf.3_exon_0_0_chr8_38268656_r;uc010lwk.3_exon_0_0_chr8_38268656_r;uc011lbu.2_exon_0_0_chr8_38268656_r;uc011lbv.2_exon_0_0_chr8_38268656_r;uc011lbw.2_exon_0_0_chr8_38268656_r;uc022aua.1_exon_0_0_chr8_38268656_r;uc022aub.1_exon_0_0_chr8_38268656_r;uc022auc.1_exon_0_0_chr8_38268656_r;uc022aud.1_exon_0_0_chr8_38268656_r	0	0	0
+chr8	38271413	38271567	uc003xlp.3_exon_1_0_chr8_38271436_r;uc010lwf.3_exon_1_0_chr8_38271436_r;uc010lwk.3_exon_1_0_chr8_38271436_r;uc011lbu.2_exon_1_0_chr8_38271436_r;uc011lbv.2_exon_1_0_chr8_38271436_r;uc011lbw.2_exon_1_0_chr8_38271436_r;uc022aua.1_exon_1_0_chr8_38271436_r;uc022aub.1_exon_1_0_chr8_38271436_r;uc022auc.1_exon_1_0_chr8_38271436_r;uc022aud.1_exon_1_0_chr8_38271436_r	0	0	0
+chr8	38271638	38271830	uc003xlp.3_exon_2_0_chr8_38271670_r;uc010lwf.3_exon_2_0_chr8_38271670_r;uc010lwk.3_exon_2_0_chr8_38271670_r;uc011lbu.2_exon_2_0_chr8_38271670_r;uc011lbv.2_exon_2_0_chr8_38271670_r;uc011lbw.2_exon_2_0_chr8_38271670_r;uc022aua.1_exon_2_0_chr8_38271670_r;uc022aub.1_exon_2_0_chr8_38271670_r;uc022auc.1_exon_2_0_chr8_38271670_r;uc022aud.1_exon_2_0_chr8_38271670_r	0	0	0
+chr8	38272033	38272174	uc003xlp.3_exon_3_0_chr8_38272077_r;uc010lwf.3_exon_3_0_chr8_38272077_r;uc010lwk.3_exon_3_0_chr8_38272077_r;uc011lbu.2_exon_3_0_chr8_38272077_r;uc011lbv.2_exon_3_0_chr8_38272077_r;uc011lbw.2_exon_3_0_chr8_38272077_r;uc022aua.1_exon_3_0_chr8_38272077_r;uc022aub.1_exon_3_0_chr8_38272077_r;uc022auc.1_exon_3_0_chr8_38272077_r;uc022aud.1_exon_3_0_chr8_38272077_r	0	0	0
+chr8	38272268	38272446	uc003xlp.3_exon_4_0_chr8_38272297_r;uc010lwf.3_exon_4_0_chr8_38272297_r;uc010lwk.3_exon_4_0_chr8_38272297_r;uc011lbu.2_exon_4_0_chr8_38272297_r;uc011lbv.2_exon_4_0_chr8_38272297_r;uc011lbw.2_exon_4_0_chr8_38272297_r;uc022aua.1_exon_4_0_chr8_38272297_r;uc022aub.1_exon_4_0_chr8_38272297_r;uc022auc.1_exon_4_0_chr8_38272297_r;uc022aud.1_exon_4_0_chr8_38272297_r	0	0	0
+chr8	38273338	38273621	uc003xlp.3_exon_5_0_chr8_38273388_r;uc010lwf.3_exon_5_0_chr8_38273363_r;uc010lwk.3_exon_5_0_chr8_38273388_r;uc011lbu.2_exon_5_0_chr8_38273388_r;uc011lbv.2_exon_5_0_chr8_38273388_r;uc011lbw.2_exon_5_0_chr8_38273388_r;uc022aua.1_exon_5_0_chr8_38273388_r;uc022aub.1_exon_5_0_chr8_38273388_r;uc022auc.1_exon_5_0_chr8_38273388_r;uc022aud.1_exon_5_0_chr8_38273388_r	0	0	0
+chr8	38274798	38274969	uc003xlp.3_exon_6_0_chr8_38274824_r;uc010lwf.3_exon_6_0_chr8_38274824_r;uc010lwk.3_exon_6_0_chr8_38274824_r;uc011lbu.2_exon_6_0_chr8_38274824_r;uc011lbv.2_exon_6_0_chr8_38274824_r;uc011lbw.2_exon_6_0_chr8_38274824_r;uc022aua.1_exon_6_0_chr8_38274824_r;uc022aub.1_exon_6_0_chr8_38274824_r;uc022auc.1_exon_6_0_chr8_38274824_r;uc022aud.1_exon_6_0_chr8_38274824_r	0	0	0
+chr8	38275353	38275526	uc003xlp.3_exon_7_0_chr8_38275388_r;uc010lwf.3_exon_7_0_chr8_38275388_r;uc010lwk.3_exon_7_0_chr8_38275388_r;uc011lbu.2_exon_7_0_chr8_38275388_r;uc011lbv.2_exon_7_0_chr8_38275388_r;uc011lbw.2_exon_7_0_chr8_38275388_r;uc022aua.1_exon_7_0_chr8_38275388_r;uc022aub.1_exon_7_0_chr8_38275388_r;uc022auc.1_exon_7_0_chr8_38275388_r;uc022aud.1_exon_7_0_chr8_38275388_r	0	0	0
+chr8	38275718	38275930	uc003xlp.3_exon_8_0_chr8_38275746_r;uc010lwf.3_exon_8_0_chr8_38275746_r;uc010lwk.3_exon_8_0_chr8_38275746_r;uc011lbu.2_exon_8_0_chr8_38275746_r;uc011lbv.2_exon_8_0_chr8_38275746_r;uc011lbw.2_exon_8_0_chr8_38275746_r;uc022aua.1_exon_8_0_chr8_38275746_r;uc022aub.1_exon_8_0_chr8_38275746_r;uc022auc.1_exon_8_0_chr8_38275746_r;uc022aud.1_exon_8_0_chr8_38275746_r	0	0	0
+chr8	38277018	38277278	uc003xlp.3_exon_9_0_chr8_38277057_r;uc010lwk.3_exon_9_0_chr8_38277057_r;uc011lbr.2_exon_0_0_chr8_38277051_r;uc011lbs.2_exon_0_0_chr8_38277051_r;uc011lbt.1_exon_0_0_chr8_38277057_r;uc011lbu.2_exon_9_0_chr8_38277051_r;uc011lbv.2_exon_9_0_chr8_38277051_r;uc011lbw.2_exon_9_0_chr8_38277051_r;uc022aua.1_exon_9_0_chr8_38277051_r;uc022aub.1_exon_9_0_chr8_38277051_r;uc022auc.1_exon_9_0_chr8_38277051_r;uc022aud.1_exon_9_0_chr8_38277051_r	0	0	0
+chr8	38279133	38279489	uc003xlp.3_exon_10_0_chr8_38279315_r;uc010lwk.3_exon_10_0_chr8_38279315_r;uc011lbr.2_exon_1_0_chr8_38279315_r;uc011lbs.2_exon_1_0_chr8_38279315_r;uc011lbu.2_exon_10_0_chr8_38279315_r;uc011lbv.2_exon_10_0_chr8_38279315_r;uc011lbw.2_exon_10_0_chr8_38279315_r;uc011lbx.1_exon_0_0_chr8_38279166_r;uc022aua.1_exon_10_0_chr8_38279315_r;uc022aub.1_exon_10_0_chr8_38279315_r;uc022auc.1_exon_10_0_chr8_38279315_r;uc022aud.1_exon_10_0_chr8_38279315_r	0	0	0
+chr8	38280518	38280723	uc011lbr.2_exon_2_0_chr8_38280543_r	0	0	0
+chr8	38281113	38281181	uc003xlp.3_exon_11_0_chr8_38282027_r;uc003xlu.3_exon_0_0_chr8_38280851_r;uc003xlv.3_exon_0_0_chr8_38280851_r;uc010lwk.3_exon_11_0_chr8_38282027_r;uc011lbr.2_exon_3_0_chr8_38282027_r;uc011lbs.2_exon_2_0_chr8_38282027_r;uc011lbt.1_exon_1_0_chr8_38282027_r;uc011lbu.2_exon_11_0_chr8_38282027_r;uc011lbv.2_exon_11_0_chr8_38282027_r;uc011lbw.2_exon_11_0_chr8_38282027_r;uc011lbx.1_exon_1_0_chr8_38282027_r;uc022aua.1_exon_11_0_chr8_38282027_r;uc022aub.1_exon_11_0_chr8_38282027_r;uc022auc.1_exon_11_0_chr8_38282027_r;uc022aud.1_exon_11_0_chr8_38282027_r	0	0	0
+chr8	38281193	38282237	uc003xlp.3_exon_11_0_chr8_38282027_r;uc003xlu.3_exon_0_0_chr8_38280851_r;uc003xlv.3_exon_0_0_chr8_38280851_r;uc010lwk.3_exon_11_0_chr8_38282027_r;uc011lbr.2_exon_3_0_chr8_38282027_r;uc011lbs.2_exon_2_0_chr8_38282027_r;uc011lbt.1_exon_1_0_chr8_38282027_r;uc011lbu.2_exon_11_0_chr8_38282027_r;uc011lbv.2_exon_11_0_chr8_38282027_r;uc011lbw.2_exon_11_0_chr8_38282027_r;uc011lbx.1_exon_1_0_chr8_38282027_r;uc022aua.1_exon_11_0_chr8_38282027_r;uc022aub.1_exon_11_0_chr8_38282027_r;uc022auc.1_exon_11_0_chr8_38282027_r;uc022aud.1_exon_11_0_chr8_38282027_r	0	0	0
+chr8	38283618	38283800	uc003xlp.3_exon_12_0_chr8_38283640_r;uc003xlu.3_exon_1_0_chr8_38283640_r;uc003xlv.3_exon_1_0_chr8_38283640_r;uc003xlw.1_exon_0_0_chr8_38283640_r;uc010lwk.3_exon_12_0_chr8_38283640_r;uc011lbr.2_exon_4_0_chr8_38283640_r;uc011lbs.2_exon_3_0_chr8_38283640_r;uc011lbt.1_exon_2_0_chr8_38283640_r;uc011lbu.2_exon_12_0_chr8_38283640_r;uc011lbv.2_exon_12_0_chr8_38283640_r;uc011lbw.2_exon_12_0_chr8_38283640_r;uc011lbx.1_exon_2_0_chr8_38283640_r;uc022aua.1_exon_12_0_chr8_38283640_r;uc022aub.1_exon_12_0_chr8_38283640_r;uc022auc.1_exon_12_0_chr8_38283640_r;uc022aud.1_exon_12_0_chr8_38283640_r	0	0	0
+chr8	38285408	38285620	uc003xlp.3_exon_13_0_chr8_38285439_r;uc003xlu.3_exon_2_0_chr8_38285439_r;uc003xlv.3_exon_2_0_chr8_38285439_r;uc003xlw.1_exon_1_0_chr8_38285439_r;uc010lwk.3_exon_13_0_chr8_38285439_r;uc011lbr.2_exon_5_0_chr8_38285439_r;uc011lbs.2_exon_4_0_chr8_38285439_r;uc011lbt.1_exon_3_0_chr8_38285439_r;uc011lbu.2_exon_13_0_chr8_38285439_r;uc011lbv.2_exon_13_0_chr8_38285439_r;uc011lbw.2_exon_13_0_chr8_38285439_r;uc011lbx.1_exon_3_0_chr8_38285439_r;uc022aua.1_exon_13_0_chr8_38285439_r;uc022aub.1_exon_13_0_chr8_38285439_r;uc022auc.1_exon_13_0_chr8_38285439_r;uc022aud.1_exon_13_0_chr8_38285439_r	0	0	0
+chr8	38285828	38285898	uc003xlp.3_exon_14_0_chr8_38285864_r;uc003xlu.3_exon_3_0_chr8_38285870_r;uc003xlv.3_exon_3_0_chr8_38285864_r;uc003xlw.1_exon_2_0_chr8_38285870_r;uc010lwk.3_exon_14_0_chr8_38285864_r;uc011lbr.2_exon_6_0_chr8_38285870_r;uc011lbs.2_exon_5_0_chr8_38285864_r;uc011lbt.1_exon_4_0_chr8_38285870_r;uc011lbu.2_exon_14_0_chr8_38285870_r;uc011lbv.2_exon_14_0_chr8_38285870_r;uc011lbw.2_exon_14_0_chr8_38285864_r;uc011lbx.1_exon_4_0_chr8_38285864_r;uc022aua.1_exon_14_0_chr8_38285864_r;uc022aub.1_exon_14_0_chr8_38285870_r;uc022auc.1_exon_14_0_chr8_38285864_r;uc022aud.1_exon_14_0_chr8_38285870_r	0	0	0
+chr8	38285928	38286001	uc003xlp.3_exon_14_0_chr8_38285864_r;uc003xlu.3_exon_3_0_chr8_38285870_r;uc003xlv.3_exon_3_0_chr8_38285864_r;uc003xlw.1_exon_2_0_chr8_38285870_r;uc010lwk.3_exon_14_0_chr8_38285864_r;uc011lbr.2_exon_6_0_chr8_38285870_r;uc011lbs.2_exon_5_0_chr8_38285864_r;uc011lbt.1_exon_4_0_chr8_38285870_r;uc011lbu.2_exon_14_0_chr8_38285870_r;uc011lbv.2_exon_14_0_chr8_38285870_r;uc011lbw.2_exon_14_0_chr8_38285864_r;uc011lbx.1_exon_4_0_chr8_38285864_r;uc022aua.1_exon_14_0_chr8_38285864_r;uc022aub.1_exon_14_0_chr8_38285870_r;uc022auc.1_exon_14_0_chr8_38285864_r;uc022aud.1_exon_14_0_chr8_38285870_r	0	0	0
+chr8	38286743	38286948	uc003xlw.1_exon_3_0_chr8_38286765_r;uc011lbs.2_exon_6_0_chr8_38286765_r	0	0	0
+chr8	38287178	38287492	uc003xlp.3_exon_15_0_chr8_38287200_r;uc003xlw.1_exon_4_0_chr8_38287200_r;uc010lwk.3_exon_15_0_chr8_38287200_r;uc011lbu.2_exon_15_0_chr8_38287200_r;uc011lbv.2_exon_15_0_chr8_38287200_r;uc022aua.1_exon_15_0_chr8_38287200_r;uc022aub.1_exon_15_0_chr8_38287200_r	0	0	0
+chr8	38297783	38297926	uc010lwk.3_exon_16_0_chr8_38297824_r	0	0	0
+chr8	38314848	38315080	uc003xlp.3_exon_16_0_chr8_38314874_r;uc003xlu.3_exon_4_0_chr8_38314874_r;uc003xlv.3_exon_4_0_chr8_38314874_r;uc003xlw.1_exon_5_0_chr8_38314874_r;uc010lwk.3_exon_17_0_chr8_38314874_r;uc011lbs.2_exon_7_0_chr8_38314874_r;uc011lbt.1_exon_5_0_chr8_38314874_r;uc011lbu.2_exon_16_0_chr8_38314874_r;uc011lbv.2_exon_16_0_chr8_38314874_r;uc011lbw.2_exon_15_0_chr8_38314874_r;uc011lbx.1_exon_5_0_chr8_38314874_r;uc022aua.1_exon_16_0_chr8_38314874_r;uc022aub.1_exon_16_0_chr8_38314874_r;uc022auc.1_exon_15_0_chr8_38314874_r;uc022aud.1_exon_15_0_chr8_38314874_r	0	0	0
+chr8	38318578	38318800	uc011lbu.2_exon_17_0_chr8_38318614_r	0	0	0
+chr8	38325168	38325363	uc011lbu.2_exon_18_0_chr8_38325190_r;uc011lbv.2_exon_17_0_chr8_38325190_r;uc011lbw.2_exon_16_0_chr8_38325190_r	0	0	0
+chr8	38325473	38326391	uc003xlp.3_exon_17_0_chr8_38325499_r;uc003xlu.3_exon_5_0_chr8_38325499_r;uc003xlv.3_exon_5_0_chr8_38325499_r;uc010lwk.3_exon_18_0_chr8_38325499_r;uc022aua.1_exon_17_0_chr8_38325499_r;uc022aub.1_exon_17_0_chr8_38325499_r;uc022auc.1_exon_16_0_chr8_38325499_r;uc022aud.1_exon_16_0_chr8_38325499_r	0	0	0
+chr8	92221702	92221804	uc003yex.3_exon_0_0_chr8_92221722_f;uc003yey.3_exon_0_0_chr8_92221722_f	0	0	0
+chr8	92231092	92231264	uc003yex.3_exon_1_0_chr8_92231118_f;uc003yey.3_exon_1_0_chr8_92231118_f	0	0	0
+chr8	92261482	92261667	uc003yez.3_exon_0_0_chr8_92261516_f;uc003yfa.3_exon_0_0_chr8_92261516_f	0	0	0
+chr8	92261752	92262110	uc003yex.3_exon_2_0_chr8_92261767_f;uc003yey.3_exon_2_0_chr8_92261847_f;uc003yez.3_exon_1_0_chr8_92261767_f;uc003yfa.3_exon_1_0_chr8_92261767_f	0	0	0
+chr8	92301332	92301516	uc003yex.3_exon_3_0_chr8_92301364_f;uc003yey.3_exon_3_0_chr8_92301364_f;uc003yez.3_exon_2_0_chr8_92301364_f;uc003yfa.3_exon_2_0_chr8_92301364_f	0	0	0
+chr8	92307727	92307952	uc003yex.3_exon_4_0_chr8_92307759_f;uc003yey.3_exon_4_0_chr8_92307759_f;uc003yez.3_exon_3_0_chr8_92307759_f;uc003yfa.3_exon_3_0_chr8_92307759_f	0	0	0
+chr8	92330412	92330638	uc003yex.3_exon_5_0_chr8_92330444_f;uc003yey.3_exon_5_0_chr8_92330444_f;uc003yez.3_exon_4_0_chr8_92330444_f;uc003yfa.3_exon_4_0_chr8_92330444_f	0	0	0
+chr8	92346497	92346702	uc003yex.3_exon_6_0_chr8_92346523_f;uc003yey.3_exon_6_0_chr8_92346523_f;uc003yez.3_exon_5_0_chr8_92346523_f;uc003yfa.3_exon_5_0_chr8_92346523_f	0	0	0
+chr8	92350347	92350478	uc003yex.3_exon_7_0_chr8_92350378_f;uc003yez.3_exon_6_0_chr8_92350378_f;uc003yfa.3_exon_6_0_chr8_92350378_f	0	0	0
+chr8	92352597	92352817	uc003yex.3_exon_8_0_chr8_92352632_f;uc003yey.3_exon_7_0_chr8_92352632_f;uc003yez.3_exon_7_0_chr8_92352632_f;uc003yfa.3_exon_7_0_chr8_92352632_f	0	0	0
+chr8	92355557	92355730	uc003yex.3_exon_9_0_chr8_92355581_f;uc003yey.3_exon_8_0_chr8_92355581_f;uc003yez.3_exon_8_0_chr8_92355581_f;uc003yfa.3_exon_8_0_chr8_92355581_f	0	0	0
+chr8	92364002	92364139	uc003yex.3_exon_10_0_chr8_92364038_f;uc003yey.3_exon_9_0_chr8_92364038_f;uc003yez.3_exon_9_0_chr8_92364038_f;uc003yfa.3_exon_9_0_chr8_92364038_f	0	0	0
+chr8	92365097	92365231	uc003yex.3_exon_11_0_chr8_92365129_f;uc003yey.3_exon_10_0_chr8_92365129_f;uc003yez.3_exon_10_0_chr8_92365129_f;uc003yfa.3_exon_10_0_chr8_92365129_f	0	0	0
+chr8	92374557	92374732	uc003yex.3_exon_12_0_chr8_92374581_f;uc003yey.3_exon_11_0_chr8_92374581_f;uc003yez.3_exon_11_0_chr8_92374581_f;uc003yfa.3_exon_11_0_chr8_92374581_f	0	0	0
+chr8	92375652	92375789	uc003yex.3_exon_13_0_chr8_92375700_f;uc003yey.3_exon_12_0_chr8_92375700_f;uc003yez.3_exon_12_0_chr8_92375700_f;uc003yfa.3_exon_12_0_chr8_92375700_f	0	0	0
+chr8	92378782	92378963	uc003yex.3_exon_14_0_chr8_92378808_f;uc003yey.3_exon_13_0_chr8_92378808_f;uc003yez.3_exon_13_0_chr8_92378808_f;uc003yfa.3_exon_13_0_chr8_92378808_f	0	0	0
+chr8	92381992	92382088	uc003yex.3_exon_15_0_chr8_92382013_f;uc003yey.3_exon_14_0_chr8_92382013_f;uc003yez.3_exon_14_0_chr8_92382013_f;uc003yfa.3_exon_14_0_chr8_92382013_f	0	0	0
+chr8	92401542	92401682	uc003yex.3_exon_16_0_chr8_92401566_f;uc003yey.3_exon_15_0_chr8_92401566_f;uc003yez.3_exon_15_0_chr8_92401566_f;uc003yfa.3_exon_15_0_chr8_92401566_f	0	0	0
+chr8	92405972	92406117	uc003yex.3_exon_17_0_chr8_92406025_f;uc003yey.3_exon_16_0_chr8_92406025_f;uc003yez.3_exon_16_0_chr8_92406025_f;uc003yfa.3_exon_16_0_chr8_92406025_f	0	0	0
+chr8	92406142	92406285	uc003yex.3_exon_18_0_chr8_92406164_f;uc003yey.3_exon_17_0_chr8_92406164_f;uc003yez.3_exon_17_0_chr8_92406164_f;uc003yfa.3_exon_17_0_chr8_92406164_f	0	0	0
+chr8	92406422	92406981	uc003yez.3_exon_18_0_chr8_92406446_f	0	0	0
+chr8	92407267	92407581	uc003yex.3_exon_19_0_chr8_92407290_f;uc003yey.3_exon_18_0_chr8_92407290_f;uc003yfa.3_exon_18_0_chr8_92407290_f	0	0	0
+chr8	92407592	92408291	uc003yex.3_exon_19_0_chr8_92407290_f;uc003yey.3_exon_18_0_chr8_92407290_f;uc003yfa.3_exon_18_0_chr8_92407290_f	0	0	0
+chr8	92408302	92410263	uc003yex.3_exon_19_0_chr8_92407290_f;uc003yey.3_exon_18_0_chr8_92407290_f;uc003yfa.3_exon_18_0_chr8_92407290_f	0	0	0
+chr8	92410272	92410417	uc003yex.3_exon_19_0_chr8_92407290_f;uc003yey.3_exon_18_0_chr8_92407290_f;uc003yfa.3_exon_18_0_chr8_92407290_f	0	0	0
+chr9	37422649	37422860	uc003zzt.1_exon_0_0_chr9_37422681_f;uc003zzu.1_exon_0_0_chr9_37422707_f;uc010mlu.4_exon_0_0_chr9_37422681_f;uc010mlv.1_exon_0_0_chr9_37422681_f	0	0	0
+chr9	37424809	37425003	uc003zzt.1_exon_1_0_chr9_37424842_f;uc003zzu.1_exon_1_0_chr9_37424842_f;uc010mlu.4_exon_1_0_chr9_37424842_f;uc010mlv.1_exon_1_0_chr9_37424842_f	0	0	0
+chr9	37425874	37426027	uc003zzt.1_exon_2_0_chr9_37425919_f;uc003zzu.1_exon_2_0_chr9_37425919_f;uc010mlu.4_exon_2_0_chr9_37425919_f;uc010mlv.1_exon_2_0_chr9_37425919_f	0	0	0
+chr9	37426509	37426676	uc003zzt.1_exon_3_0_chr9_37426535_f;uc003zzu.1_exon_3_0_chr9_37426535_f;uc010mlu.4_exon_3_0_chr9_37426535_f;uc010mlv.1_exon_3_0_chr9_37426535_f	0	0	0
+chr9	37428459	37429867	uc003zzt.1_exon_4_0_chr9_37428481_f;uc003zzt.1_exon_5_0_chr9_37429729_f;uc003zzu.1_exon_4_0_chr9_37428481_f;uc003zzu.1_exon_5_0_chr9_37429729_f;uc003zzv.1_exon_0_0_chr9_37428535_f;uc003zzw.1_exon_0_0_chr9_37428535_f;uc010mlu.4_exon_4_0_chr9_37428481_f;uc010mlv.1_exon_4_0_chr9_37428481_f;uc010mlv.1_exon_5_0_chr9_37429729_f	0	0	0
+chr9	37430484	37431184	uc003zzt.1_exon_6_0_chr9_37430508_f;uc003zzu.1_exon_6_0_chr9_37430508_f;uc003zzv.1_exon_1_0_chr9_37430508_f;uc003zzw.1_exon_1_0_chr9_37430508_f;uc010mlv.1_exon_6_0_chr9_37430508_f	0	0	0
+chr9	37431974	37432160	uc003zzt.1_exon_7_0_chr9_37432005_f;uc003zzu.1_exon_7_0_chr9_37432005_f;uc003zzw.1_exon_2_0_chr9_37432005_f	0	0	0
+chr9	37436649	37437004	uc003zzt.1_exon_8_0_chr9_37436658_f;uc003zzu.1_exon_8_0_chr9_37436658_f;uc003zzw.1_exon_3_0_chr9_37436658_f	0	0	0
+chr9	137208918	137209374	uc004cfa.1_exon_0_0_chr9_137208944_f	0	0	0
+chr9	137211223	137211385	uc004cfa.1_exon_1_0_chr9_137211284_f	0	0	0
+chr9	137218283	137218534	uc004cfb.2_exon_0_0_chr9_137218316_f	0	0	0
+chr9	137293443	137297948	uc004cfa.1_exon_2_0_chr9_137293478_f;uc004cfb.2_exon_1_0_chr9_137293478_f	0	0	0
+chr9	137298403	137299381	uc004cfc.1_exon_0_0_chr9_137298428_f	0	0	0
+chr9	137299963	137300182	uc004cfb.2_exon_2_0_chr9_137299995_f;uc004cfc.1_exon_1_0_chr9_137299995_f	0	0	0
+chr9	137300763	137301001	uc004cfb.2_exon_3_0_chr9_137300786_f;uc004cfc.1_exon_2_0_chr9_137300786_f	0	0	0
+chr9	137308978	137309183	uc004cfb.2_exon_4_0_chr9_137309004_f;uc004cfc.1_exon_3_0_chr9_137309004_f;uc004cfd.1_exon_0_0_chr9_137309004_f	0	0	0
+chr9	137313493	137313977	uc004cfb.2_exon_5_0_chr9_137313522_f;uc004cfc.1_exon_4_0_chr9_137313522_f;uc004cfd.1_exon_1_0_chr9_137313522_f	0	0	0
+chr9	137314013	137317216	uc004cfb.2_exon_5_0_chr9_137313522_f;uc004cfc.1_exon_4_0_chr9_137313522_f;uc004cfd.1_exon_1_0_chr9_137313522_f	0	0	0
+chr9	137317218	137317456	uc004cfb.2_exon_5_0_chr9_137313522_f;uc004cfc.1_exon_4_0_chr9_137313522_f;uc004cfd.1_exon_1_0_chr9_137313522_f	0	0	0
+chr9	137317458	137319007	uc004cfb.2_exon_5_0_chr9_137313522_f;uc004cfc.1_exon_4_0_chr9_137313522_f;uc004cfd.1_exon_1_0_chr9_137313522_f	0	0	0
+chr9	137320928	137321096	uc004cfb.2_exon_6_0_chr9_137320954_f;uc004cfc.1_exon_5_0_chr9_137320954_f	0	0	0
+chr9	137323713	137323863	uc004cfb.2_exon_7_0_chr9_137323751_f;uc004cfc.1_exon_6_0_chr9_137323751_f	0	0	0
+chr9	137325923	137326090	uc004cfb.2_exon_8_0_chr9_137325948_f;uc004cfc.1_exon_7_0_chr9_137325948_f	0	0	0
+chr9	137328288	137329580	uc004cfb.2_exon_9_0_chr9_137328313_f;uc004cfc.1_exon_8_0_chr9_137328313_f	0	0	0
+chr9	137329588	137330702	uc004cfb.2_exon_9_0_chr9_137328313_f;uc004cfc.1_exon_8_0_chr9_137328313_f	0	0	0
+chr9	137330703	137330977	uc004cfb.2_exon_9_0_chr9_137328313_f;uc004cfc.1_exon_8_0_chr9_137328313_f	0	0	0
+chr9	137330983	137331926	uc004cfb.2_exon_9_0_chr9_137328313_f;uc004cfc.1_exon_8_0_chr9_137328313_f	0	0	0
+chr9	137331953	137332440	uc004cfb.2_exon_9_0_chr9_137328313_f;uc004cfc.1_exon_8_0_chr9_137328313_f	0	0	0
+chr9	140123368	140124601	uc004cmc.1_exon_0_0_chr9_140123400_f	0	0	0
+chr9	140125178	140125563	uc004cmf.1_exon_0_0_chr9_140125385_f;uc011met.2_exon_0_0_chr9_140125209_f;uc022bqf.1_exon_0_0_chr9_140125209_f	0	0	0
+chr9	140126083	140126259	uc004cmc.1_exon_1_0_chr9_140126116_f;uc004cmf.1_exon_1_0_chr9_140126116_f;uc011met.2_exon_1_0_chr9_140126113_f;uc022bqf.1_exon_1_0_chr9_140126116_f	0	0	0
+chr9	140126483	140126632	uc004cmc.1_exon_2_0_chr9_140126524_f;uc004cmf.1_exon_2_0_chr9_140126524_f;uc011met.2_exon_2_0_chr9_140126524_f;uc022bqf.1_exon_2_0_chr9_140126524_f	0	0	0
+chr9	140127003	140127179	uc004cmc.1_exon_3_0_chr9_140127027_f;uc004cmf.1_exon_3_0_chr9_140127027_f;uc011met.2_exon_3_0_chr9_140127027_f;uc022bqf.1_exon_3_0_chr9_140127027_f	0	0	0
+chr9	140127183	140127397	uc004cmc.1_exon_4_0_chr9_140127208_f;uc004cmf.1_exon_4_0_chr9_140127236_f;uc011met.2_exon_4_0_chr9_140127236_f;uc022bqf.1_exon_4_0_chr9_140127236_f	0	0	0
+chr9	140127428	140127597	uc004cmc.1_exon_5_0_chr9_140127453_f;uc004cmf.1_exon_5_0_chr9_140127456_f;uc011met.2_exon_5_0_chr9_140127456_f;uc022bqf.1_exon_5_0_chr9_140127456_f	0	0	0
+chr9	140127633	140127880	uc004cmc.1_exon_6_0_chr9_140127661_f;uc004cmf.1_exon_6_0_chr9_140127661_f;uc011met.2_exon_6_0_chr9_140127661_f;uc022bqf.1_exon_6_0_chr9_140127661_f	0	0	0
+chr9	140128053	140128205	uc004cmc.1_exon_7_0_chr9_140128085_f;uc004cmf.1_exon_7_0_chr9_140128085_f;uc011met.2_exon_7_0_chr9_140128085_f;uc022bqf.1_exon_7_0_chr9_140128085_f	0	0	0
+chr9	140128293	140128751	uc004cmc.1_exon_8_0_chr9_140128315_f;uc004cmf.1_exon_8_0_chr9_140128315_f;uc004cmf.1_exon_9_0_chr9_140128561_f;uc011met.2_exon_8_0_chr9_140128315_f;uc011met.2_exon_9_0_chr9_140128561_f;uc022bqf.1_exon_8_0_chr9_140128315_f;uc022bqf.1_exon_9_0_chr9_140128561_f	0	0	0
+chr9	140128843	140129017	uc004cmf.1_exon_10_0_chr9_140128868_f;uc011met.2_exon_10_0_chr9_140128868_f;uc022bqf.1_exon_10_0_chr9_140128868_f	0	0	0
+chr9	140129023	140129221	uc004cmf.1_exon_11_0_chr9_140129059_f;uc011met.2_exon_11_0_chr9_140129059_f;uc022bqf.1_exon_11_0_chr9_140129059_f	0	0	0
+chr9	140130378	140131034	uc004cmf.1_exon_12_0_chr9_140130404_f;uc011met.2_exon_12_0_chr9_140130404_f;uc022bqf.1_exon_12_0_chr9_140130404_f	0	0	0
+chr10	75670838	75671015	uc001jwa.3_exon_0_0_chr10_75670862_f;uc001jwb.3_exon_0_0_chr10_75670918_f;uc001jwc.3_exon_0_0_chr10_75670918_f;uc010qkw.2_exon_0_0_chr10_75670862_f;uc010qkx.2_exon_0_0_chr10_75670862_f	0	0	0
+chr10	75671248	75671707	uc001jwa.3_exon_1_0_chr10_75671283_f;uc001jwb.3_exon_1_0_chr10_75671283_f;uc001jwc.3_exon_1_0_chr10_75671283_f;uc009xrq.1_exon_0_0_chr10_75671283_f;uc010qkw.2_exon_1_0_chr10_75671283_f;uc010qkx.2_exon_1_0_chr10_75671283_f	0	0	0
+chr10	75671728	75671881	uc001jwa.3_exon_2_0_chr10_75671799_f;uc001jwb.3_exon_2_0_chr10_75671799_f;uc001jwc.3_exon_2_0_chr10_75671799_f;uc009xrq.1_exon_1_0_chr10_75671799_f	0	0	0
+chr10	75671948	75672118	uc001jwa.3_exon_3_0_chr10_75671973_f;uc001jwb.3_exon_3_0_chr10_75671973_f;uc001jwc.3_exon_3_0_chr10_75671973_f;uc010qkw.2_exon_2_0_chr10_75671973_f;uc010qkx.2_exon_2_0_chr10_75671973_f	0	0	0
+chr10	75672658	75672867	uc001jwa.3_exon_4_0_chr10_75672682_f;uc001jwb.3_exon_4_0_chr10_75672682_f;uc001jwc.3_exon_4_0_chr10_75672682_f;uc009xrq.1_exon_2_0_chr10_75672682_f;uc010qkw.2_exon_3_0_chr10_75672682_f;uc010qkx.2_exon_3_0_chr10_75672682_f	0	0	0
+chr10	75673008	75673171	uc001jwa.3_exon_5_0_chr10_75673048_f;uc001jwb.3_exon_5_0_chr10_75673048_f;uc001jwc.3_exon_5_0_chr10_75673048_f;uc009xrq.1_exon_3_0_chr10_75673048_f;uc010qkw.2_exon_4_0_chr10_75673048_f;uc010qkx.2_exon_4_0_chr10_75673048_f	0	0	0
+chr10	75673263	75673554	uc001jwa.3_exon_6_0_chr10_75673297_f;uc001jwb.3_exon_6_0_chr10_75673297_f;uc001jwc.3_exon_6_0_chr10_75673297_f;uc009xrq.1_exon_4_0_chr10_75673297_f;uc010qkw.2_exon_5_0_chr10_75673297_f;uc010qkx.2_exon_5_0_chr10_75673297_f	0	0	0
+chr10	75673703	75673919	uc001jwa.3_exon_7_0_chr10_75673738_f;uc001jwb.3_exon_7_0_chr10_75673738_f;uc001jwc.3_exon_7_0_chr10_75673738_f;uc009xrq.1_exon_5_0_chr10_75673738_f;uc010qkw.2_exon_6_0_chr10_75673738_f;uc010qkx.2_exon_6_0_chr10_75673738_f	0	0	0
+chr10	75674498	75674716	uc001jwa.3_exon_8_0_chr10_75674534_f;uc001jwb.3_exon_8_0_chr10_75674534_f;uc001jwc.3_exon_8_0_chr10_75674534_f;uc009xrq.1_exon_6_0_chr10_75674534_f;uc010qkw.2_exon_7_0_chr10_75674534_f;uc010qkx.2_exon_7_0_chr10_75674534_f	0	0	0
+chr10	75674973	75675200	uc001jwa.3_exon_9_0_chr10_75675009_f;uc001jwb.3_exon_9_0_chr10_75675009_f;uc001jwc.3_exon_9_0_chr10_75675009_f;uc009xrq.1_exon_7_0_chr10_75675009_f;uc010qkw.2_exon_8_0_chr10_75675009_f;uc010qkx.2_exon_8_0_chr10_75675009_f	0	0	0
+chr10	75676123	75676833	uc001jwa.3_exon_10_0_chr10_75676147_f;uc001jwb.3_exon_10_0_chr10_75676147_f;uc001jwb.3_exon_11_0_chr10_75676763_f;uc001jwc.3_exon_10_0_chr10_75676147_f;uc009xrq.1_exon_8_0_chr10_75676147_f;uc010qkw.2_exon_9_0_chr10_75676147_f;uc010qkx.2_exon_9_0_chr10_75676147_f	0	0	0
+chr10	75676848	75677193	uc001jwa.3_exon_10_0_chr10_75676147_f;uc001jwb.3_exon_10_0_chr10_75676147_f;uc001jwb.3_exon_11_0_chr10_75676763_f;uc001jwc.3_exon_10_0_chr10_75676147_f;uc009xrq.1_exon_8_0_chr10_75676147_f;uc010qkw.2_exon_9_0_chr10_75676147_f;uc010qkx.2_exon_9_0_chr10_75676147_f	0	0	0
+chr10	75677208	75677282	uc001jwa.3_exon_10_0_chr10_75676147_f;uc001jwb.3_exon_10_0_chr10_75676147_f;uc001jwb.3_exon_11_0_chr10_75676763_f;uc001jwc.3_exon_10_0_chr10_75676147_f;uc009xrq.1_exon_8_0_chr10_75676147_f;uc010qkw.2_exon_9_0_chr10_75676147_f;uc010qkx.2_exon_9_0_chr10_75676147_f	0	0	0
+chr10	97471501	97471576	uc001kle.1_exon_0_0_chr10_97471536_f;uc001kli.4_exon_0_0_chr10_97471536_f	0	0	0
+chr10	97471631	97471740	uc001kle.1_exon_0_0_chr10_97471536_f;uc001kli.4_exon_0_0_chr10_97471536_f	0	0	0
+chr10	97515386	97515548	uc010qoj.2_exon_0_0_chr10_97515409_f;uc010qok.2_exon_0_0_chr10_97515409_f;uc010qol.2_exon_0_0_chr10_97515409_f	0	0	0
+chr10	97515691	97516048	uc001klh.4_exon_0_0_chr10_97515673_f;uc009xva.3_exon_0_0_chr10_97515673_f;uc010qom.2_exon_0_0_chr10_97515673_f;uc010qon.2_exon_0_0_chr10_97515673_f	0	0	0
+chr10	97570366	97570574	uc010qol.2_exon_1_0_chr10_97570390_f	0	0	0
+chr10	97582971	97583139	uc001kle.1_exon_1_0_chr10_97582994_f;uc001klh.4_exon_1_0_chr10_97582994_f;uc001kli.4_exon_1_0_chr10_97582994_f;uc009xva.3_exon_1_0_chr10_97582994_f;uc010qoj.2_exon_1_0_chr10_97582994_f;uc010qom.2_exon_1_0_chr10_97582994_f;uc010qon.2_exon_1_0_chr10_97582994_f	0	0	0
+chr10	97599426	97599596	uc001kle.1_exon_2_0_chr10_97599448_f;uc001klh.4_exon_2_0_chr10_97599448_f;uc001kli.4_exon_2_0_chr10_97599448_f;uc010qoj.2_exon_2_0_chr10_97599448_f;uc010qok.2_exon_1_0_chr10_97599448_f;uc010qol.2_exon_2_0_chr10_97599448_f;uc010qom.2_exon_2_0_chr10_97599448_f;uc010qon.2_exon_2_0_chr10_97599448_f	0	0	0
+chr10	97602076	97602288	uc001kle.1_exon_3_0_chr10_97602101_f;uc001klh.4_exon_3_0_chr10_97602101_f;uc001kli.4_exon_3_0_chr10_97602101_f;uc010qoj.2_exon_3_0_chr10_97602101_f;uc010qok.2_exon_2_0_chr10_97602101_f;uc010qol.2_exon_3_0_chr10_97602101_f;uc010qom.2_exon_3_0_chr10_97602101_f	0	0	0
+chr10	97604201	97604432	uc001kle.1_exon_4_0_chr10_97604233_f;uc001klh.4_exon_4_0_chr10_97604233_f;uc001kli.4_exon_4_0_chr10_97604233_f;uc009xva.3_exon_2_0_chr10_97604233_f;uc010qoj.2_exon_4_0_chr10_97604233_f;uc010qok.2_exon_3_0_chr10_97604233_f;uc010qol.2_exon_4_0_chr10_97604233_f;uc010qom.2_exon_4_0_chr10_97604233_f;uc010qon.2_exon_3_0_chr10_97604233_f	0	0	0
+chr10	97605086	97605752	uc001kle.1_exon_5_0_chr10_97605114_f;uc001klh.4_exon_5_0_chr10_97605114_f;uc001kli.4_exon_5_0_chr10_97605114_f;uc009xva.3_exon_3_0_chr10_97605114_f;uc010qoj.2_exon_5_0_chr10_97605114_f;uc010qok.2_exon_4_0_chr10_97605114_f;uc010qol.2_exon_5_0_chr10_97605114_f;uc010qom.2_exon_5_0_chr10_97605114_f;uc010qon.2_exon_4_0_chr10_97605114_f	0	0	0
+chr10	97605766	97605869	uc001kle.1_exon_5_0_chr10_97605114_f;uc001klh.4_exon_5_0_chr10_97605114_f;uc001kli.4_exon_5_0_chr10_97605114_f;uc009xva.3_exon_3_0_chr10_97605114_f;uc010qoj.2_exon_5_0_chr10_97605114_f;uc010qok.2_exon_4_0_chr10_97605114_f;uc010qol.2_exon_5_0_chr10_97605114_f;uc010qom.2_exon_5_0_chr10_97605114_f;uc010qon.2_exon_4_0_chr10_97605114_f	0	0	0
+chr10	97607181	97607497	uc001klh.4_exon_6_0_chr10_97607203_f;uc001kli.4_exon_6_0_chr10_97607203_f;uc009xva.3_exon_4_0_chr10_97607203_f;uc010qoj.2_exon_6_0_chr10_97607203_f;uc010qok.2_exon_5_0_chr10_97607203_f;uc010qol.2_exon_6_0_chr10_97607203_f;uc010qom.2_exon_6_0_chr10_97607326_f;uc010qon.2_exon_5_0_chr10_97607203_f	0	0	0
+chr10	97620191	97620384	uc001klh.4_exon_7_0_chr10_97620226_f;uc001kli.4_exon_7_0_chr10_97620226_f;uc009xva.3_exon_5_0_chr10_97620226_f;uc010qoj.2_exon_7_0_chr10_97620226_f;uc010qok.2_exon_6_0_chr10_97620226_f;uc010qol.2_exon_7_0_chr10_97620226_f;uc010qom.2_exon_7_0_chr10_97620226_f;uc010qon.2_exon_6_0_chr10_97620226_f	0	0	0
+chr10	97624446	97624629	uc001klh.4_exon_8_0_chr10_97624481_f;uc001kli.4_exon_8_0_chr10_97624481_f;uc009xva.3_exon_6_0_chr10_97624481_f;uc010qoj.2_exon_8_0_chr10_97624481_f;uc010qok.2_exon_7_0_chr10_97624481_f;uc010qol.2_exon_8_0_chr10_97624481_f;uc010qom.2_exon_8_0_chr10_97624481_f;uc010qon.2_exon_7_0_chr10_97624481_f	0	0	0
+chr10	97625901	97626957	uc001klh.4_exon_9_0_chr10_97625934_f;uc001kli.4_exon_9_0_chr10_97625934_f;uc009xva.3_exon_7_0_chr10_97625934_f;uc010qoj.2_exon_9_0_chr10_97625934_f;uc010qok.2_exon_8_0_chr10_97625934_f;uc010qol.2_exon_9_0_chr10_97625934_f;uc010qom.2_exon_9_0_chr10_97625934_f;uc010qon.2_exon_8_0_chr10_97625934_f	0	0	0
+chr10	97626971	97628607	uc001klh.4_exon_9_0_chr10_97625934_f;uc001kli.4_exon_9_0_chr10_97625934_f;uc009xva.3_exon_7_0_chr10_97625934_f;uc010qoj.2_exon_9_0_chr10_97625934_f;uc010qok.2_exon_8_0_chr10_97625934_f;uc010qol.2_exon_9_0_chr10_97625934_f;uc010qom.2_exon_9_0_chr10_97625934_f;uc010qon.2_exon_8_0_chr10_97625934_f	0	0	0
+chr10	97628626	97629002	uc001klh.4_exon_9_0_chr10_97625934_f;uc001kli.4_exon_9_0_chr10_97625934_f;uc009xva.3_exon_7_0_chr10_97625934_f;uc010qoj.2_exon_9_0_chr10_97625934_f;uc010qok.2_exon_8_0_chr10_97625934_f;uc010qol.2_exon_9_0_chr10_97625934_f;uc010qom.2_exon_9_0_chr10_97625934_f;uc010qon.2_exon_8_0_chr10_97625934_f	0	0	0
+chr10	97629296	97629372	uc001klh.4_exon_9_0_chr10_97625934_f;uc001kli.4_exon_9_0_chr10_97625934_f;uc009xva.3_exon_7_0_chr10_97625934_f;uc010qoj.2_exon_9_0_chr10_97625934_f;uc010qok.2_exon_8_0_chr10_97625934_f;uc010qol.2_exon_9_0_chr10_97625934_f;uc010qom.2_exon_9_0_chr10_97625934_f;uc010qon.2_exon_8_0_chr10_97625934_f	0	0	0
+chr10	97629376	97630057	uc001klh.4_exon_9_0_chr10_97625934_f;uc001kli.4_exon_9_0_chr10_97625934_f;uc009xva.3_exon_7_0_chr10_97625934_f;uc010qoj.2_exon_9_0_chr10_97625934_f;uc010qok.2_exon_8_0_chr10_97625934_f;uc010qol.2_exon_9_0_chr10_97625934_f;uc010qom.2_exon_9_0_chr10_97625934_f;uc010qon.2_exon_8_0_chr10_97625934_f	0	0	0
+chr10	97630326	97631839	uc001klh.4_exon_9_0_chr10_97625934_f;uc001kli.4_exon_9_0_chr10_97625934_f;uc009xva.3_exon_7_0_chr10_97625934_f;uc010qoj.2_exon_9_0_chr10_97625934_f;uc010qok.2_exon_8_0_chr10_97625934_f;uc010qol.2_exon_9_0_chr10_97625934_f;uc010qom.2_exon_9_0_chr10_97625934_f;uc010qon.2_exon_8_0_chr10_97625934_f	0	0	0
+chr10	97631846	97632817	uc001klh.4_exon_9_0_chr10_97625934_f;uc001kli.4_exon_9_0_chr10_97625934_f;uc009xva.3_exon_7_0_chr10_97625934_f;uc010qoj.2_exon_9_0_chr10_97625934_f;uc010qok.2_exon_8_0_chr10_97625934_f;uc010qol.2_exon_9_0_chr10_97625934_f;uc010qom.2_exon_9_0_chr10_97625934_f;uc010qon.2_exon_8_0_chr10_97625934_f	0	0	0
+chr10	97632821	97633478	uc001klh.4_exon_9_0_chr10_97625934_f;uc001kli.4_exon_9_0_chr10_97625934_f;uc009xva.3_exon_7_0_chr10_97625934_f;uc010qoj.2_exon_9_0_chr10_97625934_f;uc010qok.2_exon_8_0_chr10_97625934_f;uc010qol.2_exon_9_0_chr10_97625934_f;uc010qom.2_exon_9_0_chr10_97625934_f;uc010qon.2_exon_8_0_chr10_97625934_f	0	0	0
+chr10	97633551	97633697	uc001klh.4_exon_9_0_chr10_97625934_f;uc001kli.4_exon_9_0_chr10_97625934_f;uc009xva.3_exon_7_0_chr10_97625934_f;uc010qoj.2_exon_9_0_chr10_97625934_f;uc010qok.2_exon_8_0_chr10_97625934_f;uc010qol.2_exon_9_0_chr10_97625934_f;uc010qom.2_exon_9_0_chr10_97625934_f;uc010qon.2_exon_8_0_chr10_97625934_f	0	0	0
+chr10	97635711	97637043	uc001klh.4_exon_9_0_chr10_97625934_f;uc001kli.4_exon_9_0_chr10_97625934_f;uc009xva.3_exon_7_0_chr10_97625934_f;uc010qoj.2_exon_9_0_chr10_97625934_f;uc010qok.2_exon_8_0_chr10_97625934_f;uc010qol.2_exon_9_0_chr10_97625934_f;uc010qom.2_exon_9_0_chr10_97625934_f;uc010qon.2_exon_8_0_chr10_97625934_f	0	0	0
+chr10	99344066	99344697	uc001knx.2_exon_0_0_chr10_99344102_f;uc001kny.3_exon_0_0_chr10_99344102_f;uc001knz.3_exon_0_0_chr10_99344102_f	0	0	0
+chr10	99358496	99358683	uc001knx.2_exon_1_0_chr10_99358532_f;uc001kny.3_exon_1_0_chr10_99358532_f	0	0	0
+chr10	99358816	99360710	uc001knx.2_exon_2_0_chr10_99358846_f;uc001kny.3_exon_2_0_chr10_99358846_f;uc001kny.3_exon_3_0_chr10_99359437_f;uc001kny.3_exon_4_0_chr10_99359824_f	0	0	0
+chr10	99361581	99361766	uc001kny.3_exon_5_0_chr10_99361614_f;uc001knz.3_exon_1_0_chr10_99361614_f	0	0	0
+chr10	99371231	99371758	uc001kny.3_exon_6_0_chr10_99371267_f;uc001knz.3_exon_2_0_chr10_99371267_f	0	0	0
+chr10	99372051	99372579	uc001kny.3_exon_6_0_chr10_99371267_f;uc001knz.3_exon_2_0_chr10_99371267_f	0	0	0
+chr11	18415904	18416193	uc001mok.3_exon_0_0_chr11_18415936_f;uc001mol.3_exon_0_0_chr11_18415936_f;uc009yho.2_exon_0_0_chr11_18415936_f;uc010rdc.1_exon_0_0_chr11_18415936_f;uc021qep.1_exon_0_0_chr11_18415936_f	0	0	0
+chr11	18417789	18418174	uc010rdd.2_exon_0_0_chr11_18417813_f	0	0	0
+chr11	18418339	18418411	uc001mok.3_exon_1_0_chr11_18418366_f;uc001mol.3_exon_1_0_chr11_18418366_f;uc009yho.2_exon_1_0_chr11_18418366_f;uc010rdc.1_exon_1_0_chr11_18418366_f;uc010rdd.2_exon_1_0_chr11_18418366_f;uc021qep.1_exon_1_0_chr11_18418366_f	0	0	0
+chr11	18418479	18418557	uc001mok.3_exon_1_0_chr11_18418366_f;uc001mol.3_exon_1_0_chr11_18418366_f;uc009yho.2_exon_1_0_chr11_18418366_f;uc010rdc.1_exon_1_0_chr11_18418366_f;uc010rdd.2_exon_1_0_chr11_18418366_f;uc021qep.1_exon_1_0_chr11_18418366_f	0	0	0
+chr11	18420954	18421031	uc001mok.3_exon_2_0_chr11_18420978_f;uc001mol.3_exon_2_0_chr11_18420978_f;uc010rdc.1_exon_2_0_chr11_18420978_f;uc010rdd.2_exon_2_0_chr11_18420978_f;uc021qep.1_exon_2_0_chr11_18420978_f	0	0	0
+chr11	18421049	18421122	uc001mok.3_exon_2_0_chr11_18420978_f;uc001mol.3_exon_2_0_chr11_18420978_f;uc010rdc.1_exon_2_0_chr11_18420978_f;uc010rdd.2_exon_2_0_chr11_18420978_f;uc021qep.1_exon_2_0_chr11_18420978_f	0	0	0
+chr11	18422394	18422469	uc001mok.3_exon_3_0_chr11_18422384_f;uc001mol.3_exon_3_0_chr11_18422384_f;uc009yho.2_exon_2_0_chr11_18422384_f;uc010rdd.2_exon_3_0_chr11_18422384_f;uc021qep.1_exon_3_0_chr11_18422384_f	0	0	0
+chr11	18424439	18424510	uc001mok.3_exon_4_0_chr11_18424387_f;uc001mol.3_exon_4_0_chr11_18424387_f;uc009yho.2_exon_3_0_chr11_18424387_f;uc010rdc.1_exon_3_0_chr11_18424387_f;uc010rdd.2_exon_4_0_chr11_18424387_f;uc021qep.1_exon_4_0_chr11_18424387_f	0	0	0
+chr11	18425209	18425286	uc001mok.3_exon_5_0_chr11_18425241_f;uc001mol.3_exon_5_0_chr11_18425241_f;uc009yho.2_exon_4_0_chr11_18425241_f;uc010rdc.1_exon_4_0_chr11_18425241_f;uc010rdd.2_exon_5_0_chr11_18425241_f;uc021qep.1_exon_5_0_chr11_18425241_f	0	0	0
+chr11	18427079	18427156	uc001mok.3_exon_6_0_chr11_18426996_f;uc009yho.2_exon_5_0_chr11_18426996_f;uc010rdc.1_exon_5_0_chr11_18426996_f;uc010rdd.2_exon_6_0_chr11_18426996_f	0	0	0
+chr11	18428744	18428821	uc001mok.3_exon_7_0_chr11_18428664_f;uc001mol.3_exon_6_0_chr11_18428664_f;uc009yho.2_exon_6_0_chr11_18428664_f;uc010rdc.1_exon_6_0_chr11_18428664_f;uc010rdd.2_exon_7_0_chr11_18428664_f;uc021qep.1_exon_6_0_chr11_18428786_f	0	0	0
+chr11	18428909	18428983	uc001mok.3_exon_7_0_chr11_18428664_f;uc001mol.3_exon_6_0_chr11_18428664_f;uc009yho.2_exon_6_0_chr11_18428664_f;uc010rdc.1_exon_6_0_chr11_18428664_f;uc010rdd.2_exon_7_0_chr11_18428664_f;uc021qep.1_exon_6_0_chr11_18428786_f	0	0	0
+chr11	18428994	18429138	uc001mok.3_exon_7_0_chr11_18428664_f;uc001mol.3_exon_6_0_chr11_18428664_f;uc009yho.2_exon_6_0_chr11_18428664_f;uc010rdc.1_exon_6_0_chr11_18428664_f;uc010rdd.2_exon_7_0_chr11_18428664_f;uc021qep.1_exon_6_0_chr11_18428786_f	0	0	0
+chr11	18429279	18429355	uc001mok.3_exon_7_0_chr11_18428664_f;uc001mol.3_exon_6_0_chr11_18428664_f;uc009yho.2_exon_6_0_chr11_18428664_f;uc010rdc.1_exon_6_0_chr11_18428664_f;uc010rdd.2_exon_7_0_chr11_18428664_f;uc021qep.1_exon_6_0_chr11_18428786_f	0	0	0
+chr11	18429374	18429754	uc001mok.3_exon_7_0_chr11_18428664_f;uc001mol.3_exon_6_0_chr11_18428664_f;uc009yho.2_exon_6_0_chr11_18428664_f;uc010rdc.1_exon_6_0_chr11_18428664_f;uc010rdd.2_exon_7_0_chr11_18428664_f;uc021qep.1_exon_6_0_chr11_18428786_f	0	0	0
+chr11	35160383	35160956	uc001mvu.3_exon_0_0_chr11_35160417_f;uc001mvv.3_exon_0_0_chr11_35160417_f;uc001mvw.3_exon_0_0_chr11_35160417_f;uc001mvx.3_exon_0_0_chr11_35160417_f;uc001mvy.3_exon_0_0_chr11_35160417_f;uc001mwc.4_exon_0_0_chr11_35160417_f;uc009ykh.3_exon_0_0_chr11_35160417_f;uc010rer.2_exon_0_0_chr11_35160417_f;uc021qfw.1_exon_0_0_chr11_35160417_f	0	0	0
+chr11	35198093	35198307	uc001mvu.3_exon_1_0_chr11_35198122_f;uc001mvv.3_exon_1_0_chr11_35198122_f;uc001mvw.3_exon_1_0_chr11_35198122_f;uc001mvx.3_exon_1_0_chr11_35198122_f;uc001mvy.3_exon_1_0_chr11_35198122_f;uc001mwc.4_exon_1_0_chr11_35198122_f;uc009ykh.3_exon_1_0_chr11_35198122_f;uc010rer.2_exon_1_0_chr11_35198122_f;uc021qfw.1_exon_1_0_chr11_35198122_f	0	0	0
+chr11	35201788	35201977	uc001mvu.3_exon_2_0_chr11_35201821_f;uc001mvv.3_exon_2_0_chr11_35201821_f;uc001mvw.3_exon_2_0_chr11_35201821_f;uc001mvx.3_exon_2_0_chr11_35201821_f;uc001mwc.4_exon_2_0_chr11_35201821_f;uc010rer.2_exon_2_0_chr11_35201821_f;uc021qfw.1_exon_2_0_chr11_35201821_f	0	0	0
+chr11	35208338	35208475	uc001mvu.3_exon_3_0_chr11_35208379_f;uc001mvv.3_exon_3_0_chr11_35208379_f;uc001mvw.3_exon_3_0_chr11_35208379_f;uc001mvx.3_exon_3_0_chr11_35208379_f;uc001mwc.4_exon_3_0_chr11_35208379_f;uc009ykh.3_exon_2_0_chr11_35208379_f;uc010rer.2_exon_3_0_chr11_35208379_f;uc021qfw.1_exon_3_0_chr11_35208379_f	0	0	0
+chr11	35211353	35211648	uc001mvu.3_exon_4_0_chr11_35211382_f;uc001mvv.3_exon_4_0_chr11_35211382_f;uc001mvw.3_exon_4_0_chr11_35211382_f;uc001mvx.3_exon_4_0_chr11_35211382_f;uc001mwc.4_exon_4_0_chr11_35211382_f;uc009ykh.3_exon_3_0_chr11_35211382_f;uc010rer.2_exon_4_0_chr11_35211382_f;uc010res.2_exon_0_0_chr11_35211382_f;uc010ret.2_exon_0_0_chr11_35211382_f;uc010reu.2_exon_0_0_chr11_35211382_f;uc021qfw.1_exon_4_0_chr11_35211382_f	0	0	0
+chr11	35218258	35218448	uc001mvu.3_exon_5_0_chr11_35218293_f	0	0	0
+chr11	35219633	35219833	uc001mvu.3_exon_6_0_chr11_35219668_f;uc001mvv.3_exon_5_0_chr11_35219668_f;uc010reu.2_exon_1_0_chr11_35219668_f	0	0	0
+chr11	35222603	35222773	uc001mvu.3_exon_7_0_chr11_35222629_f;uc001mvv.3_exon_6_0_chr11_35222629_f	0	0	0
+chr11	35223183	35223374	uc001mvu.3_exon_8_0_chr11_35223218_f;uc001mvv.3_exon_7_0_chr11_35223218_f	0	0	0
+chr11	35226028	35226210	uc001mvu.3_exon_9_0_chr11_35226059_f;uc001mvv.3_exon_8_0_chr11_35226059_f	0	0	0
+chr11	35227623	35227812	uc001mvu.3_exon_10_0_chr11_35227659_f;uc001mvv.3_exon_9_0_chr11_35227659_f;uc010res.2_exon_1_0_chr11_35227659_f	0	0	0
+chr11	35229628	35229772	uc001mvu.3_exon_11_0_chr11_35229652_f;uc001mvv.3_exon_10_0_chr11_35229652_f;uc001mvw.3_exon_5_0_chr11_35229652_f;uc010res.2_exon_2_0_chr11_35229652_f;uc010reu.2_exon_2_0_chr11_35229652_f	0	0	0
+chr11	35231483	35231618	uc001mvu.3_exon_12_0_chr11_35231512_f;uc001mvv.3_exon_11_0_chr11_35231512_f;uc001mvw.3_exon_6_0_chr11_35231512_f;uc010res.2_exon_3_0_chr11_35231512_f;uc010ret.2_exon_1_0_chr11_35231512_f;uc010reu.2_exon_3_0_chr11_35231512_f	0	0	0
+chr11	35232758	35233007	uc001mvu.3_exon_13_0_chr11_35232793_f;uc001mvv.3_exon_12_0_chr11_35232793_f;uc001mvw.3_exon_7_0_chr11_35232793_f;uc001mwc.4_exon_5_0_chr11_35232793_f;uc010res.2_exon_4_0_chr11_35232793_f;uc010ret.2_exon_2_0_chr11_35232793_f;uc010reu.2_exon_4_0_chr11_35232793_f	0	0	0
+chr11	35236348	35236508	uc001mvu.3_exon_14_0_chr11_35236399_f;uc001mvv.3_exon_13_0_chr11_35236399_f;uc001mvw.3_exon_8_0_chr11_35236399_f;uc001mvx.3_exon_5_0_chr11_35236399_f;uc001mwc.4_exon_6_0_chr11_35236399_f;uc009ykh.3_exon_4_0_chr11_35236399_f;uc010res.2_exon_5_0_chr11_35236399_f;uc010ret.2_exon_3_0_chr11_35236399_f;uc010reu.2_exon_5_0_chr11_35236399_f;uc021qfw.1_exon_5_0_chr11_35236399_f	0	0	0
+chr11	35240823	35240952	uc001mvu.3_exon_15_0_chr11_35240863_f;uc001mvv.3_exon_14_0_chr11_35240863_f;uc001mvw.3_exon_9_0_chr11_35240863_f;uc001mvx.3_exon_6_0_chr11_35240863_f;uc001mwc.4_exon_7_0_chr11_35240863_f;uc009ykh.3_exon_5_0_chr11_35240863_f;uc010rer.2_exon_5_0_chr11_35240863_f;uc021qfw.1_exon_6_0_chr11_35240863_f	0	0	0
+chr11	35243163	35243313	uc001mvu.3_exon_16_0_chr11_35243201_f;uc001mvv.3_exon_15_0_chr11_35243201_f;uc001mvw.3_exon_10_0_chr11_35243201_f;uc001mvx.3_exon_7_0_chr11_35243201_f;uc001mvy.3_exon_2_0_chr11_35243252_f;uc001mwc.4_exon_8_0_chr11_35243201_f;uc009ykh.3_exon_6_0_chr11_35243201_f;uc010rer.2_exon_6_0_chr11_35243201_f;uc021qfw.1_exon_7_0_chr11_35243201_f	0	0	0
+chr11	35243898	35244134	uc021qfw.1_exon_8_0_chr11_35243922_f	0	0	0
+chr11	35244163	35244902	uc021qfw.1_exon_8_0_chr11_35243922_f	0	0	0
+chr11	35250653	35251757	uc001mvu.3_exon_17_0_chr11_35250676_f;uc001mvv.3_exon_16_0_chr11_35250676_f;uc001mvw.3_exon_11_0_chr11_35250676_f;uc001mvx.3_exon_8_0_chr11_35250676_f;uc001mvy.3_exon_3_0_chr11_35250676_f;uc001mwc.4_exon_9_0_chr11_35250676_f;uc009ykh.3_exon_7_0_chr11_35250676_f;uc010rer.2_exon_7_0_chr11_35250676_f	0	0	0
+chr11	35251778	35252616	uc001mvu.3_exon_17_0_chr11_35250676_f;uc001mvv.3_exon_16_0_chr11_35250676_f;uc001mvw.3_exon_11_0_chr11_35250676_f;uc001mvx.3_exon_8_0_chr11_35250676_f;uc001mvy.3_exon_3_0_chr11_35250676_f;uc001mwc.4_exon_9_0_chr11_35250676_f;uc009ykh.3_exon_7_0_chr11_35250676_f;uc010rer.2_exon_7_0_chr11_35250676_f	0	0	0
+chr11	35252628	35252726	uc001mvu.3_exon_17_0_chr11_35250676_f;uc001mvv.3_exon_16_0_chr11_35250676_f;uc001mvw.3_exon_11_0_chr11_35250676_f;uc001mvx.3_exon_8_0_chr11_35250676_f;uc001mvy.3_exon_3_0_chr11_35250676_f;uc001mwc.4_exon_9_0_chr11_35250676_f;uc009ykh.3_exon_7_0_chr11_35250676_f;uc010rer.2_exon_7_0_chr11_35250676_f	0	0	0
+chr11	35252728	35253001	uc001mvu.3_exon_17_0_chr11_35250676_f;uc001mvv.3_exon_16_0_chr11_35250676_f;uc001mvw.3_exon_11_0_chr11_35250676_f;uc001mvx.3_exon_8_0_chr11_35250676_f;uc001mvy.3_exon_3_0_chr11_35250676_f;uc001mwc.4_exon_9_0_chr11_35250676_f;uc009ykh.3_exon_7_0_chr11_35250676_f;uc010rer.2_exon_7_0_chr11_35250676_f	0	0	0
+chr11	35253008	35253465	uc001mvu.3_exon_17_0_chr11_35250676_f;uc001mvv.3_exon_16_0_chr11_35250676_f;uc001mvw.3_exon_11_0_chr11_35250676_f;uc001mvx.3_exon_8_0_chr11_35250676_f;uc001mvy.3_exon_3_0_chr11_35250676_f;uc001mwc.4_exon_9_0_chr11_35250676_f;uc009ykh.3_exon_7_0_chr11_35250676_f;uc010rer.2_exon_7_0_chr11_35250676_f	0	0	0
+chr11	35253468	35253980	uc001mvu.3_exon_17_0_chr11_35250676_f;uc001mvv.3_exon_16_0_chr11_35250676_f;uc001mvw.3_exon_11_0_chr11_35250676_f;uc001mvx.3_exon_8_0_chr11_35250676_f;uc001mvy.3_exon_3_0_chr11_35250676_f;uc001mwc.4_exon_9_0_chr11_35250676_f;uc009ykh.3_exon_7_0_chr11_35250676_f;uc010rer.2_exon_7_0_chr11_35250676_f	0	0	0
+chr11	46740711	46740904	uc001ndf.4_exon_0_0_chr11_46740743_f	0	0	0
+chr11	46741221	46741433	uc001ndf.4_exon_1_0_chr11_46741252_f	0	0	0
+chr11	46742006	46742142	uc001ndf.4_exon_2_0_chr11_46742073_f	0	0	0
+chr11	46742291	46742430	uc001ndf.4_exon_3_0_chr11_46742340_f	0	0	0
+chr11	46744706	46744849	uc001ndf.4_exon_4_0_chr11_46744730_f	0	0	0
+chr11	46744906	46745077	uc001ndf.4_exon_5_0_chr11_46744932_f	0	0	0
+chr11	46747386	46747733	uc001ndf.4_exon_6_0_chr11_46747409_f	0	0	0
+chr11	46748021	46748194	uc001ndf.4_exon_7_0_chr11_46748048_f	0	0	0
+chr11	46748236	46748414	uc001ndf.4_exon_8_0_chr11_46748261_f	0	0	0
+chr11	46749511	46749729	uc001ndf.4_exon_9_0_chr11_46749546_f	0	0	0
+chr11	46750191	46750411	uc001ndf.4_exon_10_0_chr11_46750214_f	0	0	0
+chr11	46750896	46751152	uc001ndf.4_exon_11_0_chr11_46750930_f	0	0	0
+chr11	46760561	46760704	uc001ndf.4_exon_12_0_chr11_46760598_f	0	0	0
+chr11	46760781	46761075	uc001ndf.4_exon_13_0_chr11_46760815_f	0	0	0
+chr12	4477368	4477626	uc001qmq.1_exon_0_0_chr12_4477393_r	0	0	0
+chr12	4477638	4477703	uc001qmq.1_exon_0_0_chr12_4477393_r	0	0	0
+chr12	4477723	4479137	uc001qmq.1_exon_0_0_chr12_4477393_r	0	0	0
+chr12	4479158	4479954	uc001qmq.1_exon_0_0_chr12_4477393_r	0	0	0
+chr12	4481738	4481891	uc001qmq.1_exon_1_0_chr12_4481760_r	0	0	0
+chr12	4488513	4488931	uc001qmq.1_exon_2_0_chr12_4488538_r	0	0	0
+chr12	15034222	15034479	uc001rcn.2_exon_0_0_chr12_15034115_r;uc021qvr.1_exon_0_0_chr12_15034115_r	0	0	0
+chr12	15034482	15035252	uc001rcn.2_exon_0_0_chr12_15034115_r;uc021qvr.1_exon_0_0_chr12_15034115_r	0	0	0
+chr12	15035862	15036015	uc001rcn.2_exon_1_0_chr12_15035906_r;uc021qvr.1_exon_1_0_chr12_15035906_r	0	0	0
+chr12	15037092	15037191	uc001rcn.2_exon_2_0_chr12_15037147_r;uc021qvr.1_exon_2_0_chr12_15037147_r	0	0	0
+chr12	15037712	15037847	uc021qvr.1_exon_3_0_chr12_15037747_r	0	0	0
+chr12	15038642	15038879	uc001rcn.2_exon_3_0_chr12_15038665_r;uc021qvr.1_exon_4_0_chr12_15038665_r	0	0	0
+chr12	48235286	48236272	uc001rql.3_exon_0_0_chr12_48235320_r;uc001rqm.3_exon_0_0_chr12_48235320_r;uc001rqn.3_exon_0_0_chr12_48235320_r;uc010slq.2_exon_0_0_chr12_48235320_r	0	0	0
+chr12	48236541	48238813	uc001rql.3_exon_0_0_chr12_48235320_r;uc001rqm.3_exon_0_0_chr12_48235320_r;uc001rqn.3_exon_0_0_chr12_48235320_r;uc010slq.2_exon_0_0_chr12_48235320_r	0	0	0
+chr12	48240096	48240276	uc001rql.3_exon_1_0_chr12_48240118_r;uc001rqm.3_exon_1_0_chr12_48240118_r;uc001rqn.3_exon_1_0_chr12_48240118_r;uc010slq.2_exon_1_0_chr12_48240118_r	0	0	0
+chr12	48240416	48240597	uc001rql.3_exon_2_0_chr12_48240440_r;uc001rqm.3_exon_2_0_chr12_48240440_r;uc001rqn.3_exon_2_0_chr12_48240440_r;uc010slq.2_exon_2_0_chr12_48240440_r	0	0	0
+chr12	48249391	48249604	uc001rql.3_exon_3_0_chr12_48249413_r;uc001rqm.3_exon_3_0_chr12_48249413_r;uc001rqn.3_exon_3_0_chr12_48249413_r;uc010slq.2_exon_3_0_chr12_48249413_r	0	0	0
+chr12	48250876	48251066	uc001rql.3_exon_4_0_chr12_48250912_r;uc001rqm.3_exon_4_0_chr12_48250912_r;uc001rqn.3_exon_4_0_chr12_48250912_r;uc010slq.2_exon_4_0_chr12_48250912_r	0	0	0
+chr12	48251261	48251505	uc001rql.3_exon_5_0_chr12_48251287_r;uc001rqm.3_exon_5_0_chr12_48251287_r;uc001rqn.3_exon_5_0_chr12_48251287_r;uc010slq.2_exon_5_0_chr12_48251287_r	0	0	0
+chr12	48258801	48258981	uc001rql.3_exon_6_0_chr12_48258830_r;uc001rqm.3_exon_6_0_chr12_48258830_r;uc001rqn.3_exon_6_0_chr12_48258830_r;uc010slq.2_exon_6_0_chr12_48258830_r	0	0	0
+chr12	48272576	48272924	uc001rql.3_exon_7_0_chr12_48272751_r;uc001rqm.3_exon_7_0_chr12_48272751_r;uc001rqn.3_exon_7_0_chr12_48272751_r;uc010slq.2_exon_7_0_chr12_48272599_r	0	0	0
+chr12	48276436	48276584	uc001rql.3_exon_8_0_chr12_48276477_r;uc001rqm.3_exon_8_0_chr12_48276477_r;uc001rqn.3_exon_8_0_chr12_48276477_r	0	0	0
+chr12	48293586	48293768	uc001rqm.3_exon_9_0_chr12_48293620_r	0	0	0
+chr12	48298321	48298849	uc001rql.3_exon_9_0_chr12_48298347_r;uc001rqm.3_exon_10_0_chr12_48298738_r;uc001rqn.3_exon_9_0_chr12_48298738_r;uc010slq.2_exon_8_0_chr12_48298738_r	0	0	0
+chr12	58156082	58157045	uc001spz.1_exon_0_0_chr12_58156117_r;uc001sqa.1_exon_0_0_chr12_58156117_r	0	0	0
+chr12	58157367	58157623	uc001spz.1_exon_1_0_chr12_58157394_r;uc001sqa.1_exon_1_0_chr12_58157394_r	0	0	0
+chr12	58157837	58157981	uc001spz.1_exon_2_0_chr12_58157881_r;uc001sqa.1_exon_2_0_chr12_58157881_r	0	0	0
+chr12	58158127	58158744	uc001spz.1_exon_3_0_chr12_58158161_r;uc001spz.1_exon_4_0_chr12_58158537_r;uc001sqa.1_exon_3_0_chr12_58158161_r;uc001sqa.1_exon_4_0_chr12_58158537_r;uc001sqb.1_exon_0_0_chr12_58158161_r;uc001sqb.1_exon_1_0_chr12_58158537_r;uc001sqc.1_exon_0_0_chr12_58158161_r	0	0	0
+chr12	58158767	58159498	uc001spz.1_exon_5_0_chr12_58158794_r;uc001spz.1_exon_6_0_chr12_58159080_r;uc001sqa.1_exon_5_0_chr12_58158794_r;uc001sqb.1_exon_2_0_chr12_58158794_r;uc001sqb.1_exon_3_0_chr12_58159080_r;uc001sqc.1_exon_1_0_chr12_58158794_r;uc001sqc.1_exon_2_0_chr12_58159080_r;uc021qzp.1_exon_0_0_chr12_58159069_r	0	0	0
+chr12	58159767	58160017	uc001spz.1_exon_7_0_chr12_58159790_r;uc001sqa.1_exon_6_0_chr12_58159790_r	0	0	0
+chr12	58160602	58160997	uc001spz.1_exon_8_0_chr12_58160630_r;uc001sqa.1_exon_7_0_chr12_58160630_r	0	0	0
+chr13	33590172	33590484	uc001uur.1_exon_0_0_chr13_33590201_f	0	0	0
+chr13	33590542	33591426	uc001uus.3_exon_0_0_chr13_33590571_f	0	0	0
+chr13	33627877	33628442	uc001uur.1_exon_1_0_chr13_33627904_f;uc001uus.3_exon_1_0_chr13_33627904_f	0	0	0
+chr13	33629152	33629547	uc001uur.1_exon_2_0_chr13_33629184_f;uc001uus.3_exon_2_0_chr13_33629184_f	0	0	0
+chr13	33634782	33635954	uc001uur.1_exon_3_0_chr13_33634816_f;uc001uus.3_exon_3_0_chr13_33634816_f	0	0	0
+chr13	33637957	33639809	uc001uus.3_exon_4_0_chr13_33637986_f	0	0	0
+chr13	33639827	33639898	uc001uus.3_exon_4_0_chr13_33637986_f	0	0	0
+chr13	33639907	33640289	uc001uus.3_exon_4_0_chr13_33637986_f	0	0	0
+chr13	42614133	42614289	uc010tfh.2_exon_0_0_chr13_42614172_f	0	0	0
+chr13	42622818	42623125	uc001uyl.2_exon_0_0_chr13_42622843_f;uc001uym.2_exon_0_0_chr13_42622843_f;uc010tfh.2_exon_1_0_chr13_42622898_f	0	0	0
+chr13	42701568	42701739	uc001uyl.2_exon_1_0_chr13_42701599_f;uc001uym.2_exon_1_0_chr13_42701599_f;uc010tfh.2_exon_2_0_chr13_42701599_f	0	0	0
+chr13	42703653	42703793	uc001uyl.2_exon_2_0_chr13_42703688_f;uc001uym.2_exon_2_0_chr13_42703688_f;uc010tfh.2_exon_3_0_chr13_42703688_f	0	0	0
+chr13	42712148	42712328	uc001uyn.2_exon_0_0_chr13_42712178_f;uc001uyo.2_exon_0_0_chr13_42712178_f;uc001uyp.3_exon_0_0_chr13_42712178_f;uc010tfi.2_exon_0_0_chr13_42712178_f;uc010tfj.2_exon_0_0_chr13_42712178_f	0	0	0
+chr13	42714498	42714993	uc001uyp.3_exon_1_0_chr13_42714533_f	0	0	0
+chr13	42727863	42728077	uc001uyp.3_exon_2_0_chr13_42727886_f	0	0	0
+chr13	42729403	42729550	uc001uyl.2_exon_3_0_chr13_42729427_f;uc001uym.2_exon_3_0_chr13_42729427_f;uc001uyn.2_exon_1_0_chr13_42729427_f;uc001uyo.2_exon_1_0_chr13_42729427_f;uc001uyp.3_exon_3_0_chr13_42729427_f;uc010tfh.2_exon_4_0_chr13_42729427_f;uc010tfi.2_exon_1_0_chr13_42729427_f;uc010tfj.2_exon_1_0_chr13_42729427_f	0	0	0
+chr13	42729773	42729953	uc001uyl.2_exon_4_0_chr13_42729803_f;uc001uym.2_exon_4_0_chr13_42729803_f;uc001uyn.2_exon_2_0_chr13_42729803_f;uc001uyo.2_exon_2_0_chr13_42729803_f;uc001uyp.3_exon_4_0_chr13_42729803_f;uc010tfh.2_exon_5_0_chr13_42729803_f;uc010tfi.2_exon_2_0_chr13_42729803_f;uc010tfj.2_exon_2_0_chr13_42729803_f	0	0	0
+chr13	42733393	42733535	uc001uyl.2_exon_5_0_chr13_42733402_f;uc001uym.2_exon_5_0_chr13_42733402_f;uc001uyn.2_exon_3_0_chr13_42733402_f;uc001uyo.2_exon_3_0_chr13_42733402_f;uc001uyp.3_exon_5_0_chr13_42733402_f;uc010tfh.2_exon_6_0_chr13_42733402_f;uc010tfj.2_exon_3_0_chr13_42733402_f	0	0	0
+chr13	42734123	42734297	uc001uyl.2_exon_6_0_chr13_42734147_f;uc001uym.2_exon_6_0_chr13_42734147_f;uc001uyn.2_exon_4_0_chr13_42734147_f;uc001uyo.2_exon_4_0_chr13_42734147_f;uc001uyp.3_exon_6_0_chr13_42734147_f;uc010tfh.2_exon_7_0_chr13_42734147_f;uc010tfj.2_exon_4_0_chr13_42734147_f	0	0	0
+chr13	42739443	42739582	uc001uyl.2_exon_7_0_chr13_42739467_f;uc001uym.2_exon_7_0_chr13_42739467_f;uc001uyn.2_exon_5_0_chr13_42739467_f;uc001uyo.2_exon_5_0_chr13_42739467_f;uc001uyp.3_exon_7_0_chr13_42739467_f;uc010tfh.2_exon_8_0_chr13_42739467_f;uc010tfi.2_exon_3_0_chr13_42739467_f;uc010tfj.2_exon_5_0_chr13_42739467_f	0	0	0
+chr13	42740623	42740832	uc001uyl.2_exon_8_0_chr13_42740651_f;uc001uym.2_exon_8_0_chr13_42740651_f;uc001uyn.2_exon_6_0_chr13_42740651_f;uc001uyo.2_exon_6_0_chr13_42740651_f;uc001uyp.3_exon_8_0_chr13_42740651_f;uc010tfh.2_exon_9_0_chr13_42740651_f;uc010tfi.2_exon_4_0_chr13_42740651_f;uc010tfj.2_exon_6_0_chr13_42740651_f	0	0	0
+chr13	42742553	42742727	uc001uyl.2_exon_9_0_chr13_42742576_f;uc001uym.2_exon_9_0_chr13_42742576_f;uc001uyn.2_exon_7_0_chr13_42742576_f;uc001uyo.2_exon_7_0_chr13_42742576_f;uc001uyp.3_exon_9_0_chr13_42742576_f;uc010tfh.2_exon_10_0_chr13_42742576_f;uc010tfi.2_exon_5_0_chr13_42742576_f;uc010tfj.2_exon_7_0_chr13_42742576_f	0	0	0
+chr13	42742793	42742960	uc001uyl.2_exon_10_0_chr13_42742815_f;uc001uym.2_exon_10_0_chr13_42742815_f;uc001uyn.2_exon_8_0_chr13_42742815_f;uc001uyo.2_exon_8_0_chr13_42742815_f;uc001uyp.3_exon_10_0_chr13_42742815_f;uc010tfh.2_exon_11_0_chr13_42742815_f;uc010tfi.2_exon_6_0_chr13_42742815_f;uc010tfj.2_exon_8_0_chr13_42742815_f	0	0	0
+chr13	42748158	42748294	uc001uyl.2_exon_11_0_chr13_42748196_f;uc001uym.2_exon_11_0_chr13_42748196_f;uc001uyn.2_exon_9_0_chr13_42748196_f;uc001uyo.2_exon_9_0_chr13_42748196_f;uc001uyp.3_exon_11_0_chr13_42748196_f;uc010tfh.2_exon_12_0_chr13_42748196_f;uc010tfi.2_exon_7_0_chr13_42748196_f;uc010tfj.2_exon_9_0_chr13_42748196_f	0	0	0
+chr13	42752228	42752377	uc001uyl.2_exon_12_0_chr13_42752271_f;uc001uym.2_exon_12_0_chr13_42752271_f;uc001uyn.2_exon_10_0_chr13_42752271_f;uc001uyo.2_exon_10_0_chr13_42752271_f;uc001uyp.3_exon_12_0_chr13_42752271_f;uc010tfh.2_exon_13_0_chr13_42752271_f;uc010tfi.2_exon_8_0_chr13_42752271_f;uc010tfj.2_exon_10_0_chr13_42752271_f	0	0	0
+chr13	42761163	42761293	uc001uyl.2_exon_13_0_chr13_42761185_f;uc001uym.2_exon_13_0_chr13_42761185_f;uc001uyn.2_exon_11_0_chr13_42761185_f;uc001uyo.2_exon_11_0_chr13_42761185_f;uc001uyp.3_exon_13_0_chr13_42761185_f;uc010tfh.2_exon_14_0_chr13_42761185_f;uc010tfi.2_exon_9_0_chr13_42761185_f;uc010tfj.2_exon_11_0_chr13_42761185_f	0	0	0
+chr13	42763143	42763456	uc001uyl.2_exon_14_0_chr13_42763172_f;uc001uym.2_exon_14_0_chr13_42763172_f;uc001uyn.2_exon_12_0_chr13_42763172_f;uc001uyo.2_exon_12_0_chr13_42763172_f;uc001uyp.3_exon_14_0_chr13_42763172_f;uc010tfh.2_exon_15_0_chr13_42763172_f;uc010tfi.2_exon_10_0_chr13_42763172_f;uc010tfj.2_exon_12_0_chr13_42763172_f	0	0	0
+chr13	42764513	42764681	uc001uyl.2_exon_15_0_chr13_42764539_f;uc001uym.2_exon_15_0_chr13_42764539_f;uc001uyn.2_exon_13_0_chr13_42764539_f;uc001uyo.2_exon_13_0_chr13_42764539_f;uc001uyp.3_exon_15_0_chr13_42764539_f;uc010tfh.2_exon_16_0_chr13_42764539_f;uc010tfi.2_exon_11_0_chr13_42764539_f;uc010tfj.2_exon_13_0_chr13_42764539_f	0	0	0
+chr13	42768993	42769180	uc001uyl.2_exon_16_0_chr13_42769021_f;uc001uym.2_exon_16_0_chr13_42769021_f;uc001uyn.2_exon_14_0_chr13_42769021_f;uc001uyo.2_exon_14_0_chr13_42769021_f;uc001uyp.3_exon_16_0_chr13_42769021_f;uc010tfh.2_exon_17_0_chr13_42769021_f;uc010tfi.2_exon_12_0_chr13_42769021_f;uc010tfj.2_exon_14_0_chr13_42769021_f	0	0	0
+chr13	42769863	42770042	uc001uyp.3_exon_17_0_chr13_42769899_f	0	0	0
+chr13	42772588	42772755	uc001uyl.2_exon_17_0_chr13_42772614_f;uc001uym.2_exon_17_0_chr13_42772614_f;uc001uyn.2_exon_15_0_chr13_42772614_f;uc001uyo.2_exon_15_0_chr13_42772614_f;uc001uyp.3_exon_18_0_chr13_42772614_f;uc010tfh.2_exon_18_0_chr13_42772614_f;uc010tfi.2_exon_13_0_chr13_42772614_f;uc010tfj.2_exon_15_0_chr13_42772614_f	0	0	0
+chr13	42773678	42773842	uc001uyl.2_exon_18_0_chr13_42773702_f;uc001uym.2_exon_18_0_chr13_42773702_f;uc001uyn.2_exon_16_0_chr13_42773702_f;uc001uyo.2_exon_16_0_chr13_42773702_f;uc001uyp.3_exon_19_0_chr13_42773702_f;uc010tfh.2_exon_19_0_chr13_42773702_f;uc010tfi.2_exon_14_0_chr13_42773702_f;uc010tfj.2_exon_16_0_chr13_42773702_f	0	0	0
+chr13	42773923	42774050	uc001uyl.2_exon_19_0_chr13_42773949_f;uc001uym.2_exon_19_0_chr13_42773949_f;uc001uyn.2_exon_17_0_chr13_42773949_f;uc001uyo.2_exon_17_0_chr13_42773949_f;uc001uyp.3_exon_20_0_chr13_42773949_f;uc010tfh.2_exon_20_0_chr13_42773949_f;uc010tfi.2_exon_15_0_chr13_42773949_f;uc010tfj.2_exon_17_0_chr13_42773949_f	0	0	0
+chr13	42780163	42780305	uc001uyl.2_exon_20_0_chr13_42780175_f;uc001uym.2_exon_20_0_chr13_42780175_f;uc001uyn.2_exon_18_0_chr13_42780175_f;uc001uyo.2_exon_18_0_chr13_42780175_f;uc001uyp.3_exon_21_0_chr13_42780175_f;uc010tfh.2_exon_21_0_chr13_42780175_f;uc010tfi.2_exon_16_0_chr13_42780175_f;uc010tfj.2_exon_18_0_chr13_42780175_f	0	0	0
+chr13	42783063	42783245	uc001uyl.2_exon_21_0_chr13_42783095_f;uc001uym.2_exon_21_0_chr13_42783095_f;uc001uyn.2_exon_19_0_chr13_42783095_f;uc001uyo.2_exon_19_0_chr13_42783095_f;uc001uyp.3_exon_22_0_chr13_42783095_f;uc010tfh.2_exon_22_0_chr13_42783095_f;uc010tfi.2_exon_17_0_chr13_42783095_f;uc010tfj.2_exon_19_0_chr13_42783095_f	0	0	0
+chr13	42783443	42783614	uc001uyl.2_exon_22_0_chr13_42783467_f;uc001uym.2_exon_22_0_chr13_42783467_f;uc001uyn.2_exon_20_0_chr13_42783467_f;uc001uyo.2_exon_20_0_chr13_42783467_f;uc001uyp.3_exon_23_0_chr13_42783467_f;uc010tfh.2_exon_23_0_chr13_42783467_f;uc010tfi.2_exon_18_0_chr13_42783467_f;uc010tfj.2_exon_20_0_chr13_42783467_f	0	0	0
+chr13	42784713	42784928	uc001uyl.2_exon_23_0_chr13_42784738_f;uc001uym.2_exon_23_0_chr13_42784738_f;uc001uyn.2_exon_21_0_chr13_42784738_f;uc001uyo.2_exon_21_0_chr13_42784738_f;uc001uyp.3_exon_24_0_chr13_42784738_f;uc010tfh.2_exon_24_0_chr13_42784738_f;uc010tfi.2_exon_19_0_chr13_42784738_f;uc010tfj.2_exon_21_0_chr13_42784738_f	0	0	0
+chr13	42788618	42788786	uc001uyl.2_exon_24_0_chr13_42788643_f;uc001uym.2_exon_24_0_chr13_42788643_f;uc001uyn.2_exon_22_0_chr13_42788643_f;uc001uyo.2_exon_22_0_chr13_42788643_f;uc001uyp.3_exon_25_0_chr13_42788643_f;uc010tfh.2_exon_25_0_chr13_42788643_f;uc010tfi.2_exon_20_0_chr13_42788643_f;uc010tfj.2_exon_22_0_chr13_42788643_f	0	0	0
+chr13	42789678	42789822	uc001uyl.2_exon_25_0_chr13_42789711_f;uc001uym.2_exon_25_0_chr13_42789711_f;uc001uyn.2_exon_23_0_chr13_42789711_f;uc001uyo.2_exon_23_0_chr13_42789711_f;uc001uyp.3_exon_26_0_chr13_42789711_f;uc010tfh.2_exon_26_0_chr13_42789711_f;uc010tfi.2_exon_21_0_chr13_42789711_f;uc010tfj.2_exon_23_0_chr13_42789711_f	0	0	0
+chr13	42793338	42793514	uc001uyl.2_exon_26_0_chr13_42793366_f;uc001uym.2_exon_26_0_chr13_42793366_f;uc001uyn.2_exon_24_0_chr13_42793366_f;uc001uyo.2_exon_24_0_chr13_42793366_f;uc001uyp.3_exon_27_0_chr13_42793366_f;uc010tfh.2_exon_27_0_chr13_42793366_f;uc010tfi.2_exon_22_0_chr13_42793366_f;uc010tfj.2_exon_24_0_chr13_42793366_f	0	0	0
+chr13	42793798	42793966	uc001uyl.2_exon_27_0_chr13_42793822_f;uc001uym.2_exon_27_0_chr13_42793822_f;uc001uyn.2_exon_25_0_chr13_42793822_f;uc001uyo.2_exon_25_0_chr13_42793822_f;uc001uyp.3_exon_28_0_chr13_42793822_f;uc010tfh.2_exon_28_0_chr13_42793822_f;uc010tfi.2_exon_23_0_chr13_42793822_f;uc010tfj.2_exon_25_0_chr13_42793822_f	0	0	0
+chr13	42795268	42795556	uc001uyl.2_exon_28_0_chr13_42795400_f;uc001uyn.2_exon_26_0_chr13_42795298_f;uc001uyo.2_exon_26_0_chr13_42795400_f;uc010tfj.2_exon_26_0_chr13_42795400_f	0	0	0
+chr13	42799368	42799501	uc001uyo.2_exon_27_0_chr13_42799426_f	0	0	0
+chr13	42803213	42803914	uc001uyl.2_exon_29_0_chr13_42803235_f;uc001uym.2_exon_28_0_chr13_42803235_f;uc001uyn.2_exon_27_0_chr13_42803235_f;uc001uyo.2_exon_28_0_chr13_42803235_f;uc001uyp.3_exon_29_0_chr13_42803235_f;uc010tfh.2_exon_29_0_chr13_42803235_f;uc010tfi.2_exon_24_0_chr13_42803235_f;uc010tfj.2_exon_27_0_chr13_42803235_f	0	0	0
+chr13	42826508	42826650	uc001uyp.3_exon_30_0_chr13_42826545_f	0	0	0
+chr13	42830398	42830701	uc001uyp.3_exon_31_0_chr13_42830420_f	0	0	0
+chr16	14916256	14916961	uc002dcu.2_exon_0_0_chr16_14916289_r	0	0	0
+chr16	14918441	14918591	uc002dcu.2_exon_1_0_chr16_14918491_r	0	0	0
+chr16	16243413	16244116	uc002den.4_exon_0_0_chr16_16243422_r;uc010bvo.3_exon_0_0_chr16_16243422_r	0	0	0
+chr16	16244403	16244653	uc002den.4_exon_1_0_chr16_16244435_r;uc010bvo.3_exon_1_0_chr16_16244435_r	0	0	0
+chr16	16248453	16248677	uc002den.4_exon_2_0_chr16_16248485_r;uc010bvo.3_exon_2_0_chr16_16248485_r	0	0	0
+chr16	16248698	16248910	uc002den.4_exon_3_0_chr16_16248730_r;uc010bvo.3_exon_3_0_chr16_16248730_r	0	0	0
+chr16	16251488	16251708	uc002den.4_exon_4_0_chr16_16251520_r;uc010bvo.3_exon_4_0_chr16_16251520_r	0	0	0
+chr16	16253313	16253453	uc002den.4_exon_5_0_chr16_16253339_r;uc010bvo.3_exon_5_0_chr16_16253339_r	0	0	0
+chr16	16255263	16255455	uc002den.4_exon_6_0_chr16_16255295_r;uc010bvo.3_exon_6_0_chr16_16255295_r	0	0	0
+chr16	16256828	16257078	uc002den.4_exon_7_0_chr16_16256850_r	0	0	0
+chr16	16259448	16259803	uc002den.4_exon_8_0_chr16_16259480_r;uc010bvo.3_exon_7_0_chr16_16259480_r	0	0	0
+chr16	16263478	16263722	uc002den.4_exon_9_0_chr16_16263503_r;uc010bvo.3_exon_8_0_chr16_16263503_r	0	0	0
+chr16	16267118	16267297	uc002den.4_exon_10_0_chr16_16267141_r;uc010bvo.3_exon_9_0_chr16_16267141_r	0	0	0
+chr16	16269723	16269875	uc002den.4_exon_11_0_chr16_16269768_r;uc010bvo.3_exon_10_0_chr16_16269768_r	0	0	0
+chr16	16271278	16271496	uc002den.4_exon_12_0_chr16_16271309_r	0	0	0
+chr16	16272623	16272851	uc002den.4_exon_13_0_chr16_16272655_r;uc010bvo.3_exon_11_0_chr16_16272655_r	0	0	0
+chr16	16276243	16276482	uc002den.4_exon_14_0_chr16_16276269_r;uc010bvo.3_exon_12_0_chr16_16276269_r	0	0	0
+chr16	16276628	16276819	uc002den.4_exon_15_0_chr16_16276661_r;uc010bvo.3_exon_13_0_chr16_16276661_r	0	0	0
+chr16	16278768	16278923	uc002den.4_exon_16_0_chr16_16278816_r;uc010bvo.3_exon_14_0_chr16_16278816_r;uc010uzz.1_exon_0_0_chr16_16278816_r	0	0	0
+chr16	16280953	16281081	uc002den.4_exon_17_0_chr16_16280981_r;uc010bvo.3_exon_15_0_chr16_16280981_r;uc010uzz.1_exon_1_0_chr16_16280981_r	0	0	0
+chr16	16282663	16282866	uc002den.4_exon_18_0_chr16_16282688_r;uc010bvo.3_exon_16_0_chr16_16282688_r;uc010uzz.1_exon_2_0_chr16_16282688_r	0	0	0
+chr16	16283998	16284245	uc002den.4_exon_19_0_chr16_16284021_r;uc010bvo.3_exon_17_0_chr16_16284021_r;uc010uzz.1_exon_3_0_chr16_16284021_r	0	0	0
+chr16	16286648	16286793	uc002den.4_exon_20_0_chr16_16286687_r;uc010bvo.3_exon_18_0_chr16_16286687_r;uc010uzz.1_exon_4_0_chr16_16286687_r	0	0	0
+chr16	16291843	16292061	uc002den.4_exon_21_0_chr16_16291878_r;uc010bvo.3_exon_19_0_chr16_16291878_r;uc010uzz.1_exon_5_0_chr16_16291878_r	0	0	0
+chr16	16295828	16296071	uc002den.4_exon_22_0_chr16_16295858_r;uc010bvo.3_exon_20_0_chr16_16295858_r;uc010uzz.1_exon_6_0_chr16_16295858_r	0	0	0
+chr16	16297233	16297482	uc002den.4_exon_23_0_chr16_16297267_r;uc010bvo.3_exon_21_0_chr16_16297267_r;uc010uzz.1_exon_7_0_chr16_16297267_r	0	0	0
+chr16	16302563	16302741	uc002den.4_exon_24_0_chr16_16302585_r;uc010bvo.3_exon_22_0_chr16_16302585_r;uc010uzz.1_exon_8_0_chr16_16302585_r	0	0	0
+chr16	16305988	16306134	uc002den.4_exon_25_0_chr16_16306042_r;uc010bvo.3_exon_23_0_chr16_16306042_r;uc010uzz.1_exon_9_0_chr16_16306042_r	0	0	0
+chr16	16308148	16308335	uc002den.4_exon_26_0_chr16_16308181_r;uc010bvo.3_exon_24_0_chr16_16308181_r;uc010uzz.1_exon_10_0_chr16_16308181_r	0	0	0
+chr16	16313383	16313557	uc002den.4_exon_27_0_chr16_16313411_r;uc010bvo.3_exon_25_0_chr16_16313411_r;uc010uzz.1_exon_11_0_chr16_16313411_r	0	0	0
+chr16	16313643	16313828	uc002den.4_exon_28_0_chr16_16313679_r;uc010bvo.3_exon_26_0_chr16_16313679_r;uc010uzz.1_exon_12_0_chr16_16313679_r	0	0	0
+chr16	16315008	16315722	uc002den.4_exon_29_0_chr16_16315506_r;uc002deo.4_exon_0_0_chr16_16315044_r;uc010bvo.3_exon_27_0_chr16_16315506_r;uc010uzz.1_exon_13_0_chr16_16315470_r	0	0	0
+chr16	16317208	16317369	uc002den.4_exon_30_0_chr16_16317256_r;uc002deo.4_exon_1_0_chr16_16317256_r;uc010bvo.3_exon_28_0_chr16_16317256_r;uc010uzz.1_exon_14_0_chr16_16317256_r	0	0	0
+chr16	20344342	20344741	uc002dgz.3_exon_0_0_chr16_20344373_r;uc002dha.3_exon_0_0_chr16_20344373_r;uc002dhb.3_exon_0_0_chr16_20344373_r	0	0	0
+chr16	20346752	20346888	uc002dgz.3_exon_1_0_chr16_20346804_r;uc002dha.3_exon_1_0_chr16_20346804_r;uc002dhb.3_exon_1_0_chr16_20346804_r	0	0	0
+chr16	20347937	20348073	uc002dgz.3_exon_2_0_chr16_20347968_r;uc002dha.3_exon_2_0_chr16_20347968_r;uc002dhb.3_exon_2_0_chr16_20347968_r	0	0	0
+chr16	20348587	20348804	uc002dgz.3_exon_3_0_chr16_20348613_r;uc002dha.3_exon_3_0_chr16_20348613_r;uc002dhb.3_exon_3_0_chr16_20348613_r	0	0	0
+chr16	20352382	20352696	uc002dgz.3_exon_4_0_chr16_20352413_r;uc002dha.3_exon_4_0_chr16_20352413_r;uc002dhb.3_exon_4_0_chr16_20352413_r	0	0	0
+chr16	20355317	20355523	uc002dgz.3_exon_5_0_chr16_20355346_r;uc002dha.3_exon_5_0_chr16_20355346_r;uc002dhb.3_exon_5_0_chr16_20355346_r	0	0	0
+chr16	20357412	20357671	uc002dgz.3_exon_6_0_chr16_20357448_r;uc002dha.3_exon_6_0_chr16_20357448_r;uc002dhb.3_exon_6_0_chr16_20357448_r	0	0	0
+chr16	20359522	20359695	uc002dgz.3_exon_7_0_chr16_20359545_r;uc002dha.3_exon_7_0_chr16_20359545_r;uc002dhb.3_exon_7_0_chr16_20359545_r	0	0	0
+chr16	20359732	20360574	uc002dgz.3_exon_8_0_chr16_20359758_r;uc002dha.3_exon_8_0_chr16_20359758_r;uc002dhb.3_exon_8_0_chr16_20359758_r	0	0	0
+chr16	20361067	20361208	uc002dhb.3_exon_9_0_chr16_20361093_r	0	0	0
+chr16	20361937	20362204	uc002dgz.3_exon_9_0_chr16_20361972_r;uc002dha.3_exon_9_0_chr16_20361972_r;uc002dhb.3_exon_10_0_chr16_20361972_r	0	0	0
+chr16	20363947	20364103	uc002dgz.3_exon_10_0_chr16_20364011_r;uc002dha.3_exon_10_0_chr16_20364011_r;uc002dhb.3_exon_11_0_chr16_20364011_r	0	0	0
+chr19	3094375	3094805	uc002lxd.3_exon_0_0_chr19_3094408_f	16	0	0
+chr19	3110125	3110366	uc002lxd.3_exon_1_0_chr19_3110147_f	309	0	0
+chr19	3113305	3113513	uc002lxd.3_exon_2_0_chr19_3113328_f	163	0	0
+chr19	3114915	3115090	uc002lxd.3_exon_3_0_chr19_3114942_f	37	0	0
+chr19	3118900	3119070	uc002lxd.3_exon_4_0_chr19_3118922_f	390	0	0
+chr19	3119175	3119384	uc002lxd.3_exon_5_0_chr19_3119204_f	957	0	0
+chr19	3120965	3121304	uc002lxd.3_exon_6_0_chr19_3120987_f	1112	0	0
+chr19	3121310	3121447	uc002lxd.3_exon_6_0_chr19_3120987_f	1461	0	0
+chr19	47341397	47341813	uc002pft.1_exon_0_0_chr19_47341423_r;uc002pfu.1_exon_0_0_chr19_47341423_r	1325	0	0
+chr19	47341952	47342086	uc002pft.1_exon_1_0_chr19_47341997_r;uc002pfu.1_exon_1_0_chr19_47341997_r	1462	0	0
+chr19	47342697	47342876	uc002pft.1_exon_2_0_chr19_47342722_r	1655	0	0
+chr19	47349227	47349441	uc002pft.1_exon_3_0_chr19_47349250_r;uc002pfu.1_exon_2_0_chr19_47349250_r	1173	0	0
+chr19	47353997	47354239	uc002pft.1_exon_4_0_chr19_47354021_r;uc002pfu.1_exon_3_0_chr19_47354021_r	1571	0	0
+chr20	52769992	52770580	uc002xwu.1_exon_0_0_chr20_52769988_r;uc002xwv.2_exon_0_0_chr20_52769988_r;uc002xww.2_exon_0_0_chr20_52769988_r	0	6777	0
+chr20	52770622	52770705	uc002xwu.1_exon_0_0_chr20_52769988_r;uc002xwv.2_exon_0_0_chr20_52769988_r;uc002xww.2_exon_0_0_chr20_52769988_r	0	2069	0
+chr20	52770707	52771336	uc002xwu.1_exon_0_0_chr20_52769988_r;uc002xwv.2_exon_0_0_chr20_52769988_r;uc002xww.2_exon_0_0_chr20_52769988_r	0	8386	0
+chr20	52773678	52773860	uc002xwu.1_exon_1_0_chr20_52773708_r;uc002xwv.2_exon_1_0_chr20_52773708_r;uc002xww.2_exon_1_0_chr20_52773708_r	0	3269	0
+chr20	52773898	52774150	uc002xwu.1_exon_2_0_chr20_52773927_r;uc002xwv.2_exon_2_0_chr20_52773927_r	0	4042	0
+chr20	52774593	52774726	uc002xwu.1_exon_3_0_chr20_52774625_r;uc002xwv.2_exon_3_0_chr20_52774625_r;uc002xww.2_exon_2_0_chr20_52774625_r	0	2012	0
+chr20	52775473	52775682	uc002xwu.1_exon_4_0_chr20_52775496_r;uc002xwv.2_exon_4_0_chr20_52775496_r;uc002xww.2_exon_3_0_chr20_52775496_r	0	3586	0
+chr20	52779223	52779439	uc002xwu.1_exon_5_0_chr20_52779256_r;uc002xwv.2_exon_5_0_chr20_52779256_r;uc002xww.2_exon_4_0_chr20_52779256_r	0	3229	0
+chr20	52780968	52781144	uc002xwu.1_exon_6_0_chr20_52780991_r;uc002xwv.2_exon_6_0_chr20_52780991_r;uc002xww.2_exon_5_0_chr20_52780991_r	0	2534	0
+chr20	52782253	52782397	uc002xwu.1_exon_7_0_chr20_52782281_r;uc002xwv.2_exon_7_0_chr20_52782281_r;uc002xww.2_exon_6_0_chr20_52782281_r	0	2232	0
+chr20	52786108	52786244	uc002xwu.1_exon_8_0_chr20_52786131_r;uc002xwv.2_exon_8_0_chr20_52786131_r;uc002xww.2_exon_7_0_chr20_52786131_r	0	2378	0
+chr20	52788093	52788504	uc002xwu.1_exon_9_0_chr20_52788116_r;uc002xwv.2_exon_9_0_chr20_52788116_r;uc002xww.2_exon_8_0_chr20_52788116_r	0	5400	0
+chr20	52789423	52789663	uc002xwv.2_exon_10_0_chr20_52789448_r;uc002xww.2_exon_9_0_chr20_52789448_r	0	517	0
+chr20	52789828	52790550	uc002xwv.2_exon_11_0_chr20_52789861_r;uc002xww.2_exon_10_0_chr20_52789861_r	0	1557	0
+chr21	37832893	37833027	uc002yvk.2_exon_0_0_chr21_37832920_r;uc002yvl.1_exon_0_0_chr21_37832920_r;uc002yvm.1_exon_0_0_chr21_37832920_r;uc002yvn.2_exon_0_0_chr21_37832920_r;uc002yvo.1_exon_0_0_chr21_37832920_r;uc021wja.1_exon_0_0_chr21_37833274_r	0	0	2296
+chr21	37833063	37834107	uc002yvk.2_exon_0_0_chr21_37832920_r;uc002yvl.1_exon_0_0_chr21_37832920_r;uc002yvm.1_exon_0_0_chr21_37832920_r;uc002yvn.2_exon_0_0_chr21_37832920_r;uc002yvo.1_exon_0_0_chr21_37832920_r;uc021wja.1_exon_0_0_chr21_37833274_r	0	0	2903
+chr21	37849648	37849906	uc002yvl.1_exon_1_0_chr21_37849672_r	0	0	3388
+chr21	37851763	37852430	uc002yvl.1_exon_2_0_chr21_37851793_r;uc002yvm.1_exon_1_0_chr21_37851793_r	0	0	5073
+chr21	37882628	37882821	uc002yvn.2_exon_1_0_chr21_37882661_r;uc002yvo.1_exon_1_0_chr21_37882661_r	0	0	3018
+chr21	37914828	37915151	uc002yvn.2_exon_2_0_chr21_37914863_r	0	0	323
+chr21	37948678	37948900	uc002yvo.1_exon_2_0_chr21_37948709_r	0	0	1946
+chrX	22050889	22051274	uc004dah.3_exon_0_0_chrX_22050921_f;uc011mjr.2_exon_0_0_chrX_22050921_f	0	0	0
+chrX	22056139	22056214	uc004dah.3_exon_1_0_chrX_22056587_f;uc011mjr.2_exon_1_0_chrX_22056587_f;uc011mjs.2_exon_0_0_chrX_22056171_f	0	0	0
+chrX	22056229	22056691	uc004dah.3_exon_1_0_chrX_22056587_f;uc011mjr.2_exon_1_0_chrX_22056587_f;uc011mjs.2_exon_0_0_chrX_22056171_f	0	0	0
+chrX	22065134	22065345	uc004dah.3_exon_2_0_chrX_22065168_f;uc011mjr.2_exon_2_0_chrX_22065168_f;uc011mjs.2_exon_1_0_chrX_22065168_f	0	0	0
+chrX	22094469	22094612	uc004dah.3_exon_3_0_chrX_22094506_f;uc011mjr.2_exon_3_0_chrX_22094506_f;uc011mjs.2_exon_2_0_chrX_22094506_f	0	0	0
+chrX	22095569	22095856	uc004dah.3_exon_4_0_chrX_22095594_f;uc011mjr.2_exon_4_0_chrX_22095594_f;uc011mjs.2_exon_3_0_chrX_22095594_f	0	0	0
+chrX	22108534	22108637	uc004dah.3_exon_5_0_chrX_22108547_f;uc011mjr.2_exon_5_0_chrX_22108547_f;uc011mjs.2_exon_4_0_chrX_22108547_f	0	0	0
+chrX	22112069	22112252	uc004dah.3_exon_6_0_chrX_22112101_f;uc011mjr.2_exon_6_0_chrX_22112101_f;uc011mjs.2_exon_5_0_chrX_22112101_f	0	0	0
+chrX	22115039	22115176	uc004dah.3_exon_7_0_chrX_22115073_f;uc011mjr.2_exon_7_0_chrX_22115073_f;uc011mjs.2_exon_6_0_chrX_22115073_f	0	0	0
+chrX	22117094	22117305	uc004dah.3_exon_8_0_chrX_22117124_f;uc011mjr.2_exon_8_0_chrX_22117124_f;uc011mjs.2_exon_7_0_chrX_22117124_f	0	0	0
+chrX	22129559	22129704	uc004dah.3_exon_9_0_chrX_22129585_f;uc011mjr.2_exon_9_0_chrX_22129585_f;uc011mjs.2_exon_8_0_chrX_22129585_f	0	0	0
+chrX	22132549	22132728	uc004dah.3_exon_10_0_chrX_22132576_f;uc011mjr.2_exon_10_0_chrX_22132576_f;uc011mjs.2_exon_9_0_chrX_22132576_f	0	0	0
+chrX	22151614	22151751	uc004dah.3_exon_11_0_chrX_22151640_f;uc011mjr.2_exon_11_0_chrX_22151640_f;uc011mjs.2_exon_10_0_chrX_22151640_f	0	0	0
+chrX	22186409	22186541	uc004dah.3_exon_12_0_chrX_22186429_f;uc011mjr.2_exon_12_0_chrX_22186429_f;uc011mjs.2_exon_11_0_chrX_22186429_f	0	0	0
+chrX	22196364	22196497	uc004dah.3_exon_13_0_chrX_22196390_f;uc011mjr.2_exon_13_0_chrX_22196390_f;uc011mjs.2_exon_12_0_chrX_22196390_f	0	0	0
+chrX	22208509	22208660	uc004dah.3_exon_14_0_chrX_22208561_f;uc011mjr.2_exon_14_0_chrX_22208561_f;uc011mjs.2_exon_13_0_chrX_22208561_f	0	0	0
+chrX	22231004	22231107	uc004dah.3_exon_15_0_chrX_22231021_f;uc011mjr.2_exon_15_0_chrX_22231021_f;uc011mjs.2_exon_14_0_chrX_22231021_f	0	0	0
+chrX	22237114	22237248	uc004dah.3_exon_16_0_chrX_22237153_f;uc011mjr.2_exon_16_0_chrX_22237153_f;uc011mjs.2_exon_15_0_chrX_22237153_f	0	0	0
+chrX	22239704	22239881	uc004dah.3_exon_17_0_chrX_22239730_f;uc011mjr.2_exon_17_0_chrX_22239730_f;uc011mjs.2_exon_16_0_chrX_22239730_f	0	0	0
+chrX	22244544	22244657	uc004dah.3_exon_18_0_chrX_22244560_f;uc011mjr.2_exon_18_0_chrX_22244560_f;uc011mjs.2_exon_17_0_chrX_22244560_f	0	0	0
+chrX	22245599	22245742	uc004dah.3_exon_19_0_chrX_22245624_f;uc011mjr.2_exon_19_0_chrX_22245624_f;uc011mjs.2_exon_18_0_chrX_22245624_f	0	0	0
+chrX	22263404	22263554	uc004dah.3_exon_20_0_chrX_22263450_f;uc011mjs.2_exon_19_0_chrX_22263450_f	0	0	0
+chrX	22265934	22266512	uc004dah.3_exon_21_0_chrX_22265968_f;uc011mjr.2_exon_20_0_chrX_22265968_f;uc011mjs.2_exon_20_0_chrX_22265968_f	0	0	0
+chrX	49687202	49687435	uc004doq.1_exon_0_0_chrX_49687225_f;uc004dor.1_exon_0_0_chrX_49687225_f;uc031tjn.1_exon_0_0_chrX_49687225_f	0	0	0
+chrX	49687982	49688374	uc004doq.1_exon_1_0_chrX_49688016_f;uc004dor.1_exon_1_0_chrX_49688016_f;uc031tjn.1_exon_1_0_chrX_49688016_f	0	0	0
+chrX	49689757	49689961	uc004doq.1_exon_2_0_chrX_49689781_f;uc004dor.1_exon_2_0_chrX_49689781_f;uc031tjn.1_exon_2_0_chrX_49689781_f	0	0	0
+chrX	49806902	49807107	uc004doq.1_exon_3_0_chrX_49806925_f;uc004dor.1_exon_3_0_chrX_49806925_f;uc031tjn.1_exon_3_0_chrX_49806925_f	0	0	0
+chrX	49832192	49832429	uc004dos.1_exon_0_0_chrX_49832215_f	0	0	0
+chrX	49834127	49834722	uc004doq.1_exon_4_0_chrX_49834534_f;uc004dor.1_exon_4_0_chrX_49834534_f;uc004dos.1_exon_1_0_chrX_49834534_f;uc004dot.1_exon_0_0_chrX_49834165_f;uc031tjo.1_exon_0_0_chrX_49834156_f;uc031tjo.1_exon_1_0_chrX_49834534_f	0	0	0
+chrX	49837122	49837257	uc004doq.1_exon_5_0_chrX_49837144_f;uc004dor.1_exon_5_0_chrX_49837144_f;uc004dos.1_exon_2_0_chrX_49837144_f;uc004dot.1_exon_1_0_chrX_49837144_f;uc031tjo.1_exon_2_0_chrX_49837144_f	0	0	0
+chrX	49840427	49840673	uc004doq.1_exon_6_0_chrX_49840450_f;uc004dor.1_exon_6_0_chrX_49840450_f;uc004dos.1_exon_3_0_chrX_49840450_f;uc004dot.1_exon_2_0_chrX_49840450_f;uc031tjo.1_exon_3_0_chrX_49840450_f	0	0	0
+chrX	49845222	49845398	uc004doq.1_exon_7_0_chrX_49845251_f;uc004dor.1_exon_7_0_chrX_49845251_f;uc004dos.1_exon_4_0_chrX_49845251_f;uc004dot.1_exon_3_0_chrX_49845251_f;uc031tjo.1_exon_4_0_chrX_49845251_f	0	0	0
+chrX	49846272	49846526	uc004doq.1_exon_8_0_chrX_49846298_f;uc004dor.1_exon_8_0_chrX_49846298_f;uc004dos.1_exon_5_0_chrX_49846298_f;uc004dot.1_exon_4_0_chrX_49846298_f;uc031tjo.1_exon_5_0_chrX_49846298_f	0	0	0
+chrX	49850597	49850751	uc004doq.1_exon_9_0_chrX_49850637_f;uc004dor.1_exon_9_0_chrX_49850637_f;uc004dos.1_exon_6_0_chrX_49850637_f;uc004dot.1_exon_5_0_chrX_49850637_f;uc031tjo.1_exon_6_0_chrX_49850637_f	0	0	0
+chrX	49850962	49851562	uc004doq.1_exon_10_0_chrX_49850985_f;uc004dor.1_exon_10_0_chrX_49850985_f;uc004dos.1_exon_7_0_chrX_49850985_f;uc004dot.1_exon_6_0_chrX_49850985_f;uc031tjo.1_exon_7_0_chrX_49850985_f	0	0	0
+chrX	49853322	49853578	uc004doq.1_exon_11_0_chrX_49853355_f;uc004dor.1_exon_11_0_chrX_49853355_f;uc004dos.1_exon_8_0_chrX_49853355_f;uc004dot.1_exon_7_0_chrX_49853355_f;uc031tjo.1_exon_8_0_chrX_49853355_f	0	0	0
+chrX	49854742	49855205	uc004doq.1_exon_12_0_chrX_49854773_f;uc004dor.1_exon_12_0_chrX_49854773_f;uc004dos.1_exon_9_0_chrX_49854773_f;uc004dot.1_exon_8_0_chrX_49854773_f;uc031tjo.1_exon_9_0_chrX_49854773_f	0	0	0
+chrX	49855302	49855576	uc004doq.1_exon_13_0_chrX_49855327_f;uc004dor.1_exon_13_0_chrX_49855327_f;uc004dos.1_exon_10_0_chrX_49855327_f;uc004dot.1_exon_9_0_chrX_49855327_f;uc031tjo.1_exon_10_0_chrX_49855327_f	0	0	0
+chrX	49856762	49858222	uc004doq.1_exon_14_0_chrX_49856786_f;uc004dor.1_exon_14_0_chrX_49856786_f;uc004dos.1_exon_11_0_chrX_49856786_f;uc004dot.1_exon_10_0_chrX_49856786_f;uc031tjo.1_exon_11_0_chrX_49856786_f	0	0	0
+chrX	49858237	49858820	uc004doq.1_exon_14_0_chrX_49856786_f;uc004dor.1_exon_14_0_chrX_49856786_f;uc004dos.1_exon_11_0_chrX_49856786_f;uc004dot.1_exon_10_0_chrX_49856786_f;uc031tjo.1_exon_11_0_chrX_49856786_f	0	0	0
+chrX	49858827	49858903	uc004doq.1_exon_14_0_chrX_49856786_f;uc004dor.1_exon_14_0_chrX_49856786_f;uc004dos.1_exon_11_0_chrX_49856786_f;uc004dot.1_exon_10_0_chrX_49856786_f;uc031tjo.1_exon_11_0_chrX_49856786_f	0	0	0
+chrX	49858907	49860583	uc004doq.1_exon_14_0_chrX_49856786_f;uc004dor.1_exon_14_0_chrX_49856786_f;uc004dos.1_exon_11_0_chrX_49856786_f;uc004dot.1_exon_10_0_chrX_49856786_f;uc031tjo.1_exon_11_0_chrX_49856786_f	0	0	0
+chrX	49860597	49860902	uc004doq.1_exon_14_0_chrX_49856786_f;uc004dor.1_exon_14_0_chrX_49856786_f;uc004dos.1_exon_11_0_chrX_49856786_f;uc004dot.1_exon_10_0_chrX_49856786_f;uc031tjo.1_exon_11_0_chrX_49856786_f	0	0	0
+chrX	49860907	49860973	uc004doq.1_exon_14_0_chrX_49856786_f;uc004dor.1_exon_14_0_chrX_49856786_f;uc004dos.1_exon_11_0_chrX_49856786_f;uc004dot.1_exon_10_0_chrX_49856786_f;uc031tjo.1_exon_11_0_chrX_49856786_f	0	0	0
+chrX	49861267	49861657	uc004doq.1_exon_14_0_chrX_49856786_f;uc004dor.1_exon_14_0_chrX_49856786_f;uc004dos.1_exon_11_0_chrX_49856786_f;uc004dot.1_exon_10_0_chrX_49856786_f;uc031tjo.1_exon_11_0_chrX_49856786_f	0	0	0
+chrX	49861667	49862218	uc004doq.1_exon_14_0_chrX_49856786_f;uc004dor.1_exon_14_0_chrX_49856786_f;uc004dos.1_exon_11_0_chrX_49856786_f;uc004dot.1_exon_10_0_chrX_49856786_f;uc031tjo.1_exon_11_0_chrX_49856786_f	0	0	0
+chrX	49862222	49863932	uc004doq.1_exon_14_0_chrX_49856786_f;uc004dor.1_exon_14_0_chrX_49856786_f;uc004dos.1_exon_11_0_chrX_49856786_f;uc004dot.1_exon_10_0_chrX_49856786_f;uc031tjo.1_exon_11_0_chrX_49856786_f	0	0	0
+chrX	128674224	128674478	uc004euq.3_exon_0_0_chrX_128674252_f;uc004eur.3_exon_0_0_chrX_128674252_f	0	0	0
+chrX	128674679	128674822	uc004euq.3_exon_1_0_chrX_128674721_f;uc004eur.3_exon_1_0_chrX_128674721_f	0	0	0
+chrX	128678889	128679038	uc004euq.3_exon_2_0_chrX_128678935_f;uc004eur.3_exon_2_0_chrX_128678935_f	0	0	0
+chrX	128682479	128682621	uc004euq.3_exon_3_0_chrX_128682540_f;uc004eur.3_exon_3_0_chrX_128682540_f	0	0	0
+chrX	128691279	128691450	uc004euq.3_exon_4_0_chrX_128691302_f;uc004eur.3_exon_4_0_chrX_128691302_f	0	0	0
+chrX	128691809	128691945	uc004euq.3_exon_5_0_chrX_128691838_f;uc004eur.3_exon_5_0_chrX_128691838_f	0	0	0
+chrX	128692584	128692748	uc004euq.3_exon_6_0_chrX_128692610_f;uc004eur.3_exon_6_0_chrX_128692610_f	0	0	0
+chrX	128692794	128693002	uc004euq.3_exon_7_0_chrX_128692817_f;uc004eur.3_exon_7_0_chrX_128692817_f	0	0	0
+chrX	128694504	128694640	uc004euq.3_exon_8_0_chrX_128694527_f;uc004eur.3_exon_8_0_chrX_128694527_f	0	0	0
+chrX	128695129	128695300	uc004euq.3_exon_9_0_chrX_128695156_f;uc004eur.3_exon_9_0_chrX_128695156_f	0	0	0
+chrX	128696329	128696513	uc004euq.3_exon_10_0_chrX_128696361_f;uc004eur.3_exon_10_0_chrX_128696361_f	0	0	0
+chrX	128696554	128696799	uc004euq.3_exon_11_0_chrX_128696576_f;uc004eur.3_exon_11_0_chrX_128696576_f	0	0	0
+chrX	128699724	128699891	uc004euq.3_exon_12_0_chrX_128699749_f;uc004eur.3_exon_12_0_chrX_128699749_f	0	0	0
+chrX	128701204	128701373	uc004euq.3_exon_13_0_chrX_128701231_f;uc004eur.3_exon_13_0_chrX_128701231_f	0	0	0
+chrX	128703209	128703395	uc004euq.3_exon_14_0_chrX_128703241_f;uc004eur.3_exon_14_0_chrX_128703241_f	0	0	0
+chrX	128709089	128709193	uc004euq.3_exon_15_0_chrX_128709117_f;uc004eur.3_exon_15_0_chrX_128709117_f	0	0	0
+chrX	128709839	128710056	uc004euq.3_exon_16_0_chrX_128709874_f;uc004eur.3_exon_16_0_chrX_128709874_f	0	0	0
+chrX	128710269	128710542	uc004euq.3_exon_17_0_chrX_128710294_f;uc004eur.3_exon_17_0_chrX_128710294_f	0	0	0
+chrX	128718259	128718394	uc004euq.3_exon_18_0_chrX_128718321_f	0	0	0
+chrX	128720954	128721127	uc004euq.3_exon_19_0_chrX_128720979_f;uc004eur.3_exon_18_0_chrX_128720979_f	0	0	0
+chrX	128722114	128722271	uc004euq.3_exon_20_0_chrX_128722156_f;uc004eur.3_exon_19_0_chrX_128722156_f	0	0	0
+chrX	128722829	128723018	uc004euq.3_exon_21_0_chrX_128722863_f;uc004eur.3_exon_20_0_chrX_128722863_f;uc010nrb.3_exon_0_0_chrX_128722863_f	0	0	0
+chrX	128723789	128723974	uc004euq.3_exon_22_0_chrX_128723822_f;uc004eur.3_exon_21_0_chrX_128723822_f	0	0	0
+chrX	128724099	128725469	uc004euq.3_exon_23_0_chrX_128724123_f;uc004eur.3_exon_22_0_chrX_128724123_f;uc010nrb.3_exon_1_0_chrX_128724123_f	0	0	0
+chrX	128725474	128726564	uc004euq.3_exon_23_0_chrX_128724123_f;uc004eur.3_exon_22_0_chrX_128724123_f;uc010nrb.3_exon_1_0_chrX_128724123_f	0	0	0
Binary file test-data/graph.pdf has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/probes.bed	Sat Sep 23 05:11:49 2017 -0400
@@ -0,0 +1,781 @@
+chr1	21835833	21836044	uc001bet.3_exon_0_0_chr1_21835858_f;uc010odn.2_exon_0_0_chr1_21835858_f;uc010odo.2_exon_0_0_chr1_21835858_f;uc010odp.2_exon_0_0_chr1_21835858_f
+chr1	21877748	21877951	uc001beu.4_exon_0_0_chr1_21877772_f
+chr1	21880448	21880653	uc001bet.3_exon_1_0_chr1_21880471_f;uc001beu.4_exon_1_0_chr1_21880471_f;uc010odn.2_exon_1_0_chr1_21880471_f
+chr1	21887093	21887264	uc001bet.3_exon_2_0_chr1_21887119_f;uc001beu.4_exon_2_0_chr1_21887119_f;uc010odn.2_exon_2_0_chr1_21887119_f;uc010odo.2_exon_1_0_chr1_21887119_f;uc010odp.2_exon_1_0_chr1_21887119_f
+chr1	21887563	21887740	uc001bet.3_exon_3_0_chr1_21887590_f;uc001beu.4_exon_3_0_chr1_21887590_f;uc010odn.2_exon_3_0_chr1_21887631_f;uc010odo.2_exon_2_0_chr1_21887590_f
+chr1	21889573	21889781	uc001bet.3_exon_4_0_chr1_21889603_f;uc001beu.4_exon_4_0_chr1_21889603_f;uc010odn.2_exon_4_0_chr1_21889603_f;uc010odo.2_exon_3_0_chr1_21889603_f;uc010odp.2_exon_2_0_chr1_21889603_f
+chr1	21890498	21890751	uc001bet.3_exon_5_0_chr1_21890534_f;uc001beu.4_exon_5_0_chr1_21890534_f;uc010odn.2_exon_5_0_chr1_21890534_f;uc010odo.2_exon_4_0_chr1_21890534_f;uc010odp.2_exon_3_0_chr1_21890534_f
+chr1	21894568	21894783	uc001bet.3_exon_6_0_chr1_21894597_f;uc001beu.4_exon_6_0_chr1_21894597_f;uc010odn.2_exon_6_0_chr1_21894597_f;uc010odo.2_exon_5_0_chr1_21894597_f;uc010odp.2_exon_4_0_chr1_21894597_f
+chr1	21896758	21896886	uc001bet.3_exon_7_0_chr1_21896798_f;uc001beu.4_exon_7_0_chr1_21896798_f;uc010odn.2_exon_7_0_chr1_21896798_f;uc010odo.2_exon_6_0_chr1_21896798_f;uc010odp.2_exon_5_0_chr1_21896798_f
+chr1	21900133	21900300	uc001bet.3_exon_8_0_chr1_21900158_f;uc001beu.4_exon_8_0_chr1_21900158_f;uc010odn.2_exon_8_0_chr1_21900158_f;uc010odo.2_exon_7_0_chr1_21900158_f;uc010odp.2_exon_6_0_chr1_21900158_f
+chr1	21902193	21902437	uc001bet.3_exon_9_0_chr1_21902226_f;uc001beu.4_exon_9_0_chr1_21902226_f;uc010odn.2_exon_9_0_chr1_21902226_f;uc010odo.2_exon_8_0_chr1_21902226_f;uc010odp.2_exon_7_0_chr1_21902226_f
+chr1	21902993	21903162	uc001bet.3_exon_10_0_chr1_21903015_f;uc001beu.4_exon_10_0_chr1_21903015_f;uc010odn.2_exon_10_0_chr1_21903015_f;uc010odo.2_exon_9_0_chr1_21903015_f;uc010odp.2_exon_8_0_chr1_21903015_f
+chr1	21903853	21904830	uc001bet.3_exon_11_0_chr1_21903876_f;uc001beu.4_exon_11_0_chr1_21903876_f;uc010odn.2_exon_11_0_chr1_21903876_f;uc010odo.2_exon_10_0_chr1_21903876_f;uc010odp.2_exon_9_0_chr1_21903876_f
+chr1	21904843	21904938	uc001bet.3_exon_11_0_chr1_21903876_f;uc001beu.4_exon_11_0_chr1_21903876_f;uc010odn.2_exon_11_0_chr1_21903876_f;uc010odo.2_exon_10_0_chr1_21903876_f;uc010odp.2_exon_9_0_chr1_21903876_f
+chr1	43199039	43201740	uc001cht.1_exon_0_0_chr1_43198764_r;uc001cht.1_exon_1_0_chr1_43201549_r;uc001chu.2_exon_0_0_chr1_43198764_r;uc010ojv.1_exon_0_0_chr1_43198764_r
+chr1	43203864	43204005	uc001cht.1_exon_2_0_chr1_43203900_r;uc001chu.2_exon_1_0_chr1_43203900_r
+chr1	43204059	43204281	uc001cht.1_exon_3_0_chr1_43204092_r;uc001chu.2_exon_2_0_chr1_43204092_r;uc010ojv.1_exon_1_0_chr1_43204092_r
+chr1	43205484	43205942	uc001cht.1_exon_4_0_chr1_43205512_r;uc001chu.2_exon_3_0_chr1_43205512_r;uc010ojv.1_exon_2_0_chr1_43205512_r
+chr1	156211919	156212103	uc001fnt.3_exon_0_0_chr1_156211951_f
+chr1	156212284	156212426	uc001fnt.3_exon_1_0_chr1_156212344_f
+chr1	156212514	156212654	uc001fnt.3_exon_2_0_chr1_156212553_f
+chr1	156212799	156213150	uc001fnt.3_exon_3_0_chr1_156212824_f
+chr1	165370129	165370662	uc001gda.3_exon_0_0_chr1_165370159_r;uc021pea.1_exon_0_0_chr1_165370159_r;uc031prc.1_exon_0_0_chr1_165370159_r
+chr1	165376014	165376193	uc001gda.3_exon_1_0_chr1_165376049_r;uc021pea.1_exon_1_0_chr1_165376049_r;uc031prc.1_exon_1_0_chr1_165376049_r
+chr1	165377434	165377569	uc001gda.3_exon_2_0_chr1_165377464_r;uc021pea.1_exon_2_0_chr1_165377464_r;uc031prc.1_exon_2_0_chr1_165377464_r
+chr1	165378759	165378943	uc001gda.3_exon_3_0_chr1_165378795_r;uc021pea.1_exon_3_0_chr1_165378795_r;uc031prc.1_exon_3_0_chr1_165378795_r
+chr1	165379914	165380085	uc001gda.3_exon_4_0_chr1_165379939_r;uc021pea.1_exon_4_0_chr1_165379939_r;uc031prc.1_exon_4_0_chr1_165379939_r
+chr1	165380164	165380393	uc001gda.3_exon_5_0_chr1_165380186_r;uc021pea.1_exon_5_0_chr1_165380186_r;uc031prc.1_exon_5_0_chr1_165380186_r
+chr1	165386249	165386492	uc001gda.3_exon_6_0_chr1_165386278_r;uc021pea.1_exon_6_0_chr1_165386278_r;uc031prc.1_exon_6_0_chr1_165386278_r
+chr1	165389074	165389294	uc001gda.3_exon_7_0_chr1_165389107_r;uc021pea.1_exon_7_0_chr1_165389107_r;uc031prc.1_exon_7_0_chr1_165389107_r
+chr1	165393964	165394253	uc021pea.1_exon_8_0_chr1_165393988_r;uc031prc.1_exon_8_0_chr1_165393988_r
+chr1	165397934	165398226	uc001gda.3_exon_8_0_chr1_165397956_r;uc021pea.1_exon_9_0_chr1_165397956_r
+chr1	165406129	165406450	uc001gdb.2_exon_0_0_chr1_165406165_r
+chr1	165414059	165414385	uc001gda.3_exon_9_0_chr1_165414082_r;uc001gdb.2_exon_1_0_chr1_165414082_r;uc021pea.1_exon_10_0_chr1_165414082_r
+chr1	165414399	165414604	uc001gda.3_exon_9_0_chr1_165414082_r;uc001gdb.2_exon_1_0_chr1_165414082_r;uc021pea.1_exon_10_0_chr1_165414082_r
+chr2	241808127	241808485	uc002waa.4_exon_0_0_chr2_241808162_f;uc010zoi.1_exon_0_0_chr2_241808162_f
+chr2	241808557	241808800	uc002waa.4_exon_1_0_chr2_241808587_f;uc010zoi.1_exon_1_0_chr2_241808587_f
+chr2	241810012	241810150	uc002waa.4_exon_2_0_chr2_241810061_f;uc010zoi.1_exon_2_0_chr2_241810061_f
+chr2	241810732	241810877	uc002waa.4_exon_3_0_chr2_241810766_f;uc010zoi.1_exon_3_0_chr2_241810766_f
+chr2	241812372	241813047	uc002waa.4_exon_4_0_chr2_241812396_f;uc010zoi.1_exon_4_0_chr2_241812396_f
+chr2	241813352	241813497	uc002waa.4_exon_5_0_chr2_241813395_f
+chr2	241814502	241814641	uc002waa.4_exon_6_0_chr2_241814526_f
+chr2	241815307	241815458	uc002waa.4_exon_7_0_chr2_241815352_f
+chr2	241816307	241817077	uc002waa.4_exon_8_0_chr2_241816954_f;uc002wab.4_exon_0_0_chr2_241816330_f
+chr2	241817417	241817587	uc002waa.4_exon_9_0_chr2_241817439_f;uc002wab.4_exon_1_0_chr2_241817439_f
+chr2	241818102	241818560	uc002waa.4_exon_10_0_chr2_241818131_f;uc002wab.4_exon_2_0_chr2_241818131_f
+chr3	48663133	48663451	uc003cug.3_exon_0_0_chr3_48663156_r;uc003cuh.3_exon_0_0_chr3_48663156_r;uc003cui.3_exon_0_0_chr3_48663156_r;uc003cuj.3_exon_0_0_chr3_48663156_r;uc003cuk.3_exon_0_0_chr3_48663156_r;uc010hke.3_exon_0_0_chr3_48663156_r;uc011bbp.2_exon_0_0_chr3_48663156_r
+chr3	48663618	48663806	uc003cug.3_exon_1_0_chr3_48663651_r;uc003cuh.3_exon_1_0_chr3_48663651_r;uc003cui.3_exon_1_0_chr3_48663651_r;uc003cuj.3_exon_1_0_chr3_48663651_r;uc003cuk.3_exon_1_0_chr3_48663651_r;uc010hke.3_exon_1_0_chr3_48663651_r;uc011bbp.2_exon_1_0_chr3_48663651_r
+chr3	48664008	48664151	uc003cug.3_exon_2_0_chr3_48664064_r;uc003cuh.3_exon_2_0_chr3_48664064_r;uc003cui.3_exon_2_0_chr3_48664064_r;uc003cuj.3_exon_2_0_chr3_48664064_r;uc003cuk.3_exon_2_0_chr3_48664064_r;uc010hke.3_exon_2_0_chr3_48664064_r;uc011bbp.2_exon_2_0_chr3_48664064_r
+chr3	48664283	48664537	uc003cug.3_exon_3_0_chr3_48664309_r;uc003cuh.3_exon_3_0_chr3_48664309_r;uc003cui.3_exon_3_0_chr3_48664309_r;uc003cuj.3_exon_3_0_chr3_48664309_r;uc003cuk.3_exon_3_0_chr3_48664309_r;uc010hke.3_exon_3_0_chr3_48664309_r;uc011bbp.2_exon_3_0_chr3_48664309_r
+chr3	48665353	48665488	uc003cug.3_exon_4_0_chr3_48665379_r;uc003cuh.3_exon_4_0_chr3_48665379_r;uc003cui.3_exon_4_0_chr3_48665379_r;uc003cuk.3_exon_4_0_chr3_48665379_r;uc011bbp.2_exon_4_0_chr3_48665379_r
+chr3	48665823	48666001	uc003cug.3_exon_5_0_chr3_48665867_r;uc003cuh.3_exon_5_0_chr3_48665867_r;uc003cui.3_exon_5_0_chr3_48665867_r;uc003cuj.3_exon_4_0_chr3_48665848_r;uc003cuk.3_exon_5_0_chr3_48665867_r;uc010hke.3_exon_4_0_chr3_48665848_r;uc011bbp.2_exon_5_0_chr3_48665867_r
+chr3	48666023	48666157	uc003cug.3_exon_6_0_chr3_48666055_r;uc003cuh.3_exon_6_0_chr3_48666055_r;uc003cui.3_exon_6_0_chr3_48666055_r;uc003cuj.3_exon_5_0_chr3_48666055_r;uc003cuk.3_exon_6_0_chr3_48666055_r;uc010hke.3_exon_5_0_chr3_48666055_r;uc011bbp.2_exon_6_0_chr3_48666055_r
+chr3	48667038	48667175	uc003cug.3_exon_7_0_chr3_48667075_r;uc003cuh.3_exon_7_0_chr3_48667075_r;uc003cui.3_exon_7_0_chr3_48667075_r;uc003cuj.3_exon_6_0_chr3_48667075_r;uc003cuk.3_exon_7_0_chr3_48667075_r;uc010hke.3_exon_6_0_chr3_48667075_r;uc011bbp.2_exon_7_0_chr3_48667075_r
+chr3	48667283	48667420	uc003cug.3_exon_8_0_chr3_48667305_r;uc003cuh.3_exon_8_0_chr3_48667305_r;uc003cui.3_exon_8_0_chr3_48667305_r;uc003cuj.3_exon_7_0_chr3_48667305_r;uc003cuk.3_exon_8_0_chr3_48667305_r;uc010hke.3_exon_7_0_chr3_48667305_r;uc011bbp.2_exon_8_0_chr3_48667305_r
+chr3	48667468	48667613	uc003cug.3_exon_9_0_chr3_48667495_r;uc003cuh.3_exon_9_0_chr3_48667495_r;uc003cui.3_exon_9_0_chr3_48667495_r;uc003cuj.3_exon_8_0_chr3_48667495_r;uc003cuk.3_exon_9_0_chr3_48667495_r;uc010hke.3_exon_8_0_chr3_48667495_r;uc011bbp.2_exon_9_0_chr3_48667495_r
+chr3	48667838	48667973	uc003cug.3_exon_10_0_chr3_48667871_r;uc003cuh.3_exon_10_0_chr3_48667871_r;uc003cui.3_exon_10_0_chr3_48667871_r;uc003cuj.3_exon_9_0_chr3_48667871_r;uc003cuk.3_exon_10_0_chr3_48667871_r;uc010hke.3_exon_9_0_chr3_48667871_r;uc011bbp.2_exon_10_0_chr3_48667871_r
+chr3	48668018	48668185	uc003cug.3_exon_11_0_chr3_48668040_r;uc003cuh.3_exon_11_0_chr3_48668040_r;uc003cui.3_exon_11_0_chr3_48668040_r;uc003cuj.3_exon_10_0_chr3_48668040_r;uc003cuk.3_exon_11_0_chr3_48668040_r;uc010hke.3_exon_10_0_chr3_48668040_r;uc011bbp.2_exon_11_0_chr3_48668040_r
+chr3	48668398	48668610	uc003cug.3_exon_12_0_chr3_48668426_r;uc003cuh.3_exon_12_0_chr3_48668426_r;uc003cui.3_exon_12_0_chr3_48668426_r;uc003cuj.3_exon_11_0_chr3_48668426_r;uc003cuk.3_exon_12_0_chr3_48668426_r;uc010hke.3_exon_11_0_chr3_48668426_r;uc011bbp.2_exon_12_0_chr3_48668426_r
+chr3	48668623	48668764	uc003cug.3_exon_13_0_chr3_48668657_r;uc003cuh.3_exon_13_0_chr3_48668657_r;uc003cui.3_exon_13_0_chr3_48668657_r;uc003cuj.3_exon_12_0_chr3_48668657_r;uc003cuk.3_exon_13_0_chr3_48668657_r;uc010hke.3_exon_12_0_chr3_48668657_r;uc011bbp.2_exon_13_0_chr3_48668657_r
+chr3	48669058	48669274	uc003cug.3_exon_14_0_chr3_48669082_r;uc003cuh.3_exon_14_0_chr3_48669082_r;uc003cui.3_exon_14_0_chr3_48669082_r;uc003cuj.3_exon_13_0_chr3_48669082_r;uc003cuk.3_exon_14_0_chr3_48669082_r;uc010hke.3_exon_13_0_chr3_48669082_r;uc011bbp.2_exon_14_0_chr3_48669082_r
+chr3	48669288	48669561	uc003cug.3_exon_15_0_chr3_48669313_r;uc003cuh.3_exon_15_0_chr3_48669313_r;uc003cui.3_exon_15_0_chr3_48669313_r;uc003cuj.3_exon_14_0_chr3_48669313_r;uc010hke.3_exon_14_0_chr3_48669313_r;uc011bbp.2_exon_15_0_chr3_48669313_r
+chr3	48669653	48669863	uc003cug.3_exon_16_0_chr3_48669678_r;uc003cuh.3_exon_16_0_chr3_48669678_r;uc003cui.3_exon_16_0_chr3_48669678_r;uc003cuj.3_exon_15_0_chr3_48669678_r;uc010hke.3_exon_15_0_chr3_48669678_r
+chr3	48670378	48670601	uc003cug.3_exon_17_0_chr3_48670407_r;uc003cuh.3_exon_17_0_chr3_48670407_r;uc003cui.3_exon_17_0_chr3_48670407_r;uc003cuj.3_exon_16_0_chr3_48670407_r;uc003cuk.3_exon_15_0_chr3_48670407_r;uc010hke.3_exon_16_0_chr3_48670407_r;uc011bbp.2_exon_16_0_chr3_48670407_r
+chr3	48670648	48670835	uc003cug.3_exon_18_0_chr3_48670684_r;uc003cuh.3_exon_18_0_chr3_48670684_r;uc003cui.3_exon_18_0_chr3_48670684_r;uc003cuj.3_exon_17_0_chr3_48670684_r;uc003cuk.3_exon_16_0_chr3_48670684_r;uc010hke.3_exon_17_0_chr3_48670684_r;uc011bbp.2_exon_17_0_chr3_48670684_r
+chr3	48670878	48671298	uc003cug.3_exon_19_0_chr3_48670910_r;uc003cuh.3_exon_19_0_chr3_48670910_r;uc003cui.3_exon_19_0_chr3_48670910_r;uc003cuj.3_exon_18_0_chr3_48670910_r;uc003cuk.3_exon_17_0_chr3_48670910_r;uc010hke.3_exon_18_0_chr3_48670910_r;uc011bbp.2_exon_18_0_chr3_48670910_r
+chr3	48672778	48672946	uc003cuh.3_exon_20_0_chr3_48672804_r;uc003cui.3_exon_20_0_chr3_48672804_r;uc003cuj.3_exon_19_0_chr3_48672804_r;uc003cuk.3_exon_18_0_chr3_48672804_r;uc010hke.3_exon_19_0_chr3_48672804_r;uc011bbp.2_exon_19_0_chr3_48672804_r
+chr3	121902505	121902687	uc003eev.4_exon_0_0_chr3_121902530_f
+chr3	121903155	121903400	uc003eew.4_exon_0_0_chr3_121903181_f
+chr3	121972785	121973247	uc003eev.4_exon_1_0_chr3_121972795_f;uc003eew.4_exon_1_0_chr3_121972795_f
+chr3	121975905	121976257	uc003eev.4_exon_2_0_chr3_121975928_f;uc003eew.4_exon_2_0_chr3_121975928_f
+chr3	121980350	121981297	uc003eev.4_exon_3_0_chr3_121980375_f;uc003eew.4_exon_3_0_chr3_121980375_f
+chr3	121994630	121994910	uc003eev.4_exon_4_0_chr3_121994659_f;uc003eew.4_exon_4_0_chr3_121994659_f
+chr3	122000895	122001113	uc003eev.4_exon_5_0_chr3_122000960_f;uc003eew.4_exon_5_0_chr3_122000930_f
+chr3	122002500	122004214	uc003eev.4_exon_6_0_chr3_122002534_f;uc003eew.4_exon_6_0_chr3_122002534_f
+chr3	122004215	122005329	uc003eev.4_exon_6_0_chr3_122002534_f;uc003eew.4_exon_6_0_chr3_122002534_f
+chr3	186330818	186331175	uc003fqj.3_exon_0_0_chr3_186330850_f;uc003fqk.4_exon_0_0_chr3_186330850_f
+chr3	186333448	186333631	uc003fqj.3_exon_1_0_chr3_186333474_f;uc003fqk.4_exon_1_0_chr3_186333474_f
+chr3	186334203	186334338	uc003fqj.3_exon_2_0_chr3_186334232_f;uc003fqk.4_exon_2_0_chr3_186334232_f
+chr3	186334948	186335521	uc003fqj.3_exon_3_0_chr3_186334976_f;uc003fqk.4_exon_3_0_chr3_186334976_f
+chr3	186336303	186336444	uc003fqk.4_exon_4_0_chr3_186336325_f
+chr3	186337613	186337688	uc003fqk.4_exon_5_0_chr3_186337646_f
+chr3	186337693	186337772	uc003fqk.4_exon_5_0_chr3_186337646_f
+chr3	186338343	186339128	uc003fqk.4_exon_6_0_chr3_186338375_f
+chr3	190105627	190106278	uc003fsi.3_exon_0_0_chr3_190105661_f;uc010hze.3_exon_0_0_chr3_190105661_f
+chr3	190120092	190120254	uc003fsi.3_exon_1_0_chr3_190120126_f
+chr3	190122517	190122739	uc003fsi.3_exon_2_0_chr3_190122551_f
+chr3	190126072	190126313	uc003fsi.3_exon_3_0_chr3_190126103_f
+chr3	190127667	190128781	uc003fsi.3_exon_4_0_chr3_190127692_f;uc010hze.3_exon_1_0_chr3_190127692_f
+chr3	190129077	190129349	uc003fsi.3_exon_4_0_chr3_190127692_f;uc010hze.3_exon_1_0_chr3_190127692_f
+chr3	190129352	190129588	uc003fsi.3_exon_4_0_chr3_190127692_f;uc010hze.3_exon_1_0_chr3_190127692_f
+chr3	190129652	190129945	uc003fsi.3_exon_4_0_chr3_190127692_f;uc010hze.3_exon_1_0_chr3_190127692_f
+chr4	972840	973323	uc003gbx.3_exon_0_0_chr4_972863_r
+chr4	981420	984181	uc003gcb.3_exon_0_0_chr4_981445_r;uc003gcc.3_exon_0_0_chr4_981445_r
+chr4	984890	985551	uc003gbx.3_exon_1_0_chr4_984916_r;uc003gcb.3_exon_1_0_chr4_984916_r;uc003gcc.3_exon_1_0_chr4_984916_r
+chr4	986485	986765	uc003gcb.3_exon_2_0_chr4_986509_r
+chr4	987055	987248	uc003gbx.3_exon_2_0_chr4_987089_r;uc003gcb.3_exon_3_0_chr4_987089_r;uc003gcc.3_exon_2_0_chr4_987089_r
+chr4	88571410	88571547	uc003hqv.3_exon_0_0_chr4_88571454_f;uc003hqw.3_exon_0_0_chr4_88571454_f
+chr4	88577585	88577727	uc003hqv.3_exon_1_0_chr4_88577624_f;uc003hqw.3_exon_1_0_chr4_88577624_f
+chr4	88578130	88578267	uc003hqv.3_exon_2_0_chr4_88578184_f;uc003hqw.3_exon_2_0_chr4_88578184_f
+chr4	88580355	88580457	uc003hqv.3_exon_3_0_chr4_88580372_f;uc003hqw.3_exon_3_0_chr4_88580372_f
+chr4	88580535	88580666	uc003hqv.3_exon_4_0_chr4_88580583_f
+chr4	88583080	88585217	uc003hqv.3_exon_5_0_chr4_88583114_f;uc003hqw.3_exon_4_0_chr4_88583114_f
+chr4	88585230	88585546	uc003hqv.3_exon_5_0_chr4_88583114_f;uc003hqw.3_exon_4_0_chr4_88583114_f
+chr4	88896775	88896994	uc003hra.3_exon_0_0_chr4_88896802_f;uc003hrb.3_exon_0_0_chr4_88896802_f;uc003hrc.3_exon_0_0_chr4_88896802_f;uc003hrd.3_exon_0_0_chr4_88896802_f;uc011cde.2_exon_0_0_chr4_88896802_f
+chr4	88897995	88898136	uc003hra.3_exon_1_0_chr4_88898034_f;uc003hrb.3_exon_1_0_chr4_88898034_f;uc003hrc.3_exon_1_0_chr4_88898034_f;uc003hrd.3_exon_1_0_chr4_88898034_f;uc011cde.2_exon_1_0_chr4_88898034_f
+chr4	88898150	88898288	uc003hra.3_exon_2_0_chr4_88898211_f;uc003hrb.3_exon_2_0_chr4_88898211_f;uc003hrc.3_exon_2_0_chr4_88898211_f;uc003hrd.3_exon_2_0_chr4_88898211_f;uc011cde.2_exon_2_0_chr4_88898211_f
+chr4	88898790	88899034	uc011cde.2_exon_3_0_chr4_88898814_f
+chr4	88901165	88901299	uc003hra.3_exon_3_0_chr4_88901198_f;uc003hrc.3_exon_3_0_chr4_88901198_f;uc011cde.2_exon_4_0_chr4_88901198_f
+chr4	88901485	88901626	uc003hra.3_exon_4_0_chr4_88901545_f;uc003hrb.3_exon_3_0_chr4_88901545_f;uc011cde.2_exon_5_0_chr4_88901545_f
+chr4	88902600	88902990	uc003hra.3_exon_5_0_chr4_88902627_f;uc003hrb.3_exon_4_0_chr4_88902627_f;uc003hrc.3_exon_4_0_chr4_88902627_f;uc003hrd.3_exon_3_0_chr4_88902627_f;uc011cde.2_exon_6_0_chr4_88902627_f
+chr4	88903615	88904585	uc003hra.3_exon_6_0_chr4_88903644_f;uc003hrb.3_exon_5_0_chr4_88903644_f;uc003hrc.3_exon_5_0_chr4_88903644_f;uc003hrd.3_exon_4_0_chr4_88903644_f;uc011cde.2_exon_7_0_chr4_88903644_f
+chr5	14704887	14705160	uc003jfm.4_exon_0_0_chr5_14704909_r
+chr5	14705262	14705400	uc003jfm.4_exon_0_0_chr5_14704909_r
+chr5	14705402	14707399	uc003jfm.4_exon_0_0_chr5_14704909_r
+chr5	14707407	14709009	uc003jfm.4_exon_0_0_chr5_14704909_r
+chr5	14709292	14710006	uc003jfm.4_exon_0_0_chr5_14704909_r
+chr5	14710032	14710099	uc003jfm.4_exon_0_0_chr5_14704909_r
+chr5	14710102	14711444	uc003jfm.4_exon_0_0_chr5_14704909_r
+chr5	14712957	14713094	uc003jfm.4_exon_1_0_chr5_14712983_r
+chr5	14713627	14713799	uc003jfm.4_exon_2_0_chr5_14713653_r
+chr5	14716792	14716964	uc003jfm.4_exon_3_0_chr5_14716815_r
+chr5	14741912	14742048	uc003jfm.4_exon_4_0_chr5_14741936_r
+chr5	14745942	14746094	uc003jfm.4_exon_5_0_chr5_14745979_r
+chr5	14749257	14749434	uc003jfm.4_exon_6_0_chr5_14749281_r
+chr5	14751152	14751358	uc003jfm.4_exon_7_0_chr5_14751178_r
+chr5	14755937	14756072	uc003jfm.4_exon_8_0_chr5_14755970_r
+chr5	14758557	14758741	uc003jfm.4_exon_9_0_chr5_14758589_r
+chr5	14769052	14769334	uc003jfm.4_exon_10_0_chr5_14769084_r
+chr5	14871427	14871826	uc003jfm.4_exon_11_0_chr5_14871461_r
+chr5	14871847	14871923	uc003jfm.4_exon_11_0_chr5_14871461_r
+chr5	149340268	149340553	uc003lrh.3_exon_0_0_chr5_149340300_f
+chr5	149357163	149357937	uc003lrh.3_exon_1_0_chr5_149357191_f
+chr5	149359833	149362583	uc003lrh.3_exon_2_0_chr5_149359856_f
+chr5	149362593	149363149	uc003lrh.3_exon_2_0_chr5_149359856_f
+chr5	149363428	149363952	uc003lrh.3_exon_2_0_chr5_149359856_f
+chr5	149364233	149364859	uc003lrh.3_exon_2_0_chr5_149359856_f
+chr5	149364873	149365754	uc003lrh.3_exon_2_0_chr5_149359856_f
+chr5	149365803	149366984	uc003lrh.3_exon_2_0_chr5_149359856_f
+chr5	176811379	176811535	uc003mgk.4_exon_0_0_chr5_176811432_f;uc021yis.1_exon_0_0_chr5_176811432_f
+chr5	176812674	176812883	uc003mgk.4_exon_1_0_chr5_176812696_f;uc021yis.1_exon_1_0_chr5_176812696_f
+chr5	176812954	176813173	uc003mgk.4_exon_2_0_chr5_176812988_f;uc021yis.1_exon_2_0_chr5_176812988_f
+chr5	176813194	176813371	uc003mgk.4_exon_3_0_chr5_176813222_f;uc021yis.1_exon_3_0_chr5_176813222_f
+chr5	176813394	176813609	uc003mgk.4_exon_4_0_chr5_176813424_f;uc021yis.1_exon_4_0_chr5_176813424_f
+chr5	176814729	176814909	uc003mgk.4_exon_5_0_chr5_176814763_f;uc021yis.1_exon_5_0_chr5_176814763_f
+chr5	176814969	176815220	uc003mgk.4_exon_6_0_chr5_176814995_f;uc021yis.1_exon_6_0_chr5_176814995_f
+chr5	176815254	176815391	uc003mgk.4_exon_7_0_chr5_176815278_f;uc021yis.1_exon_7_0_chr5_176815278_f
+chr5	176816614	176817547	uc021yis.1_exon_8_0_chr5_176816640_f
+chr5	176820654	176820803	uc003mgk.4_exon_8_0_chr5_176820695_f
+chr5	176820994	176821219	uc003mgk.4_exon_9_0_chr5_176821029_f
+chr5	176823709	176823878	uc003mgk.4_exon_10_0_chr5_176823734_f
+chr5	176823929	176824102	uc003mgk.4_exon_11_0_chr5_176823951_f
+chr5	176824759	176825439	uc003mgk.4_exon_12_0_chr5_176824784_f
+chr5	176825449	176825857	uc003mgk.4_exon_12_0_chr5_176824784_f
+chr6	33161331	33161866	uc003odb.4_exon_0_0_chr6_33161362_r;uc003odc.4_exon_0_0_chr6_33161362_r;uc011dqr.3_exon_0_0_chr6_33161362_r
+chr6	33161886	33162617	uc003odb.4_exon_0_0_chr6_33161362_r;uc003odc.4_exon_0_0_chr6_33161362_r;uc011dqr.3_exon_0_0_chr6_33161362_r
+chr6	33162696	33162866	uc003odb.4_exon_1_0_chr6_33162722_r;uc003odc.4_exon_1_0_chr6_33162722_r;uc011dqr.3_exon_1_0_chr6_33162722_r
+chr6	33163111	33163264	uc003odb.4_exon_2_0_chr6_33163140_r;uc003odc.4_exon_2_0_chr6_33163140_r;uc011dqr.3_exon_2_0_chr6_33163140_r
+chr6	33163311	33163475	uc003odb.4_exon_3_0_chr6_33163347_r;uc003odb.4_exon_4_0_chr6_33163684_r;uc003odb.4_exon_5_0_chr6_33164211_r;uc003odc.4_exon_3_0_chr6_33163347_r;uc003odc.4_exon_4_0_chr6_33163684_r;uc003odc.4_exon_5_0_chr6_33164211_r;uc003ode.1_exon_0_0_chr6_33163562_r;uc011dqr.3_exon_3_0_chr6_33163347_r;uc011dqr.3_exon_4_0_chr6_33163684_r;uc011dqr.3_exon_5_0_chr6_33164211_r;uc011dqs.2_exon_0_0_chr6_33163388_r;uc011dqs.2_exon_1_0_chr6_33164211_r;uc011dqt.2_exon_0_0_chr6_33163562_r;uc011dqu.2_exon_0_0_chr6_33163562_r
+chr6	33163486	33164285	uc003odb.4_exon_3_0_chr6_33163347_r;uc003odb.4_exon_4_0_chr6_33163684_r;uc003odb.4_exon_5_0_chr6_33164211_r;uc003odc.4_exon_3_0_chr6_33163347_r;uc003odc.4_exon_4_0_chr6_33163684_r;uc003odc.4_exon_5_0_chr6_33164211_r;uc003ode.1_exon_0_0_chr6_33163562_r;uc011dqr.3_exon_3_0_chr6_33163347_r;uc011dqr.3_exon_4_0_chr6_33163684_r;uc011dqr.3_exon_5_0_chr6_33164211_r;uc011dqs.2_exon_0_0_chr6_33163388_r;uc011dqs.2_exon_1_0_chr6_33164211_r;uc011dqt.2_exon_0_0_chr6_33163562_r;uc011dqu.2_exon_0_0_chr6_33163562_r
+chr6	33164286	33164415	uc003odb.4_exon_3_0_chr6_33163347_r;uc003odb.4_exon_4_0_chr6_33163684_r;uc003odb.4_exon_5_0_chr6_33164211_r;uc003odc.4_exon_3_0_chr6_33163347_r;uc003odc.4_exon_4_0_chr6_33163684_r;uc003odc.4_exon_5_0_chr6_33164211_r;uc003ode.1_exon_0_0_chr6_33163562_r;uc011dqr.3_exon_3_0_chr6_33163347_r;uc011dqr.3_exon_4_0_chr6_33163684_r;uc011dqr.3_exon_5_0_chr6_33164211_r;uc011dqs.2_exon_0_0_chr6_33163388_r;uc011dqs.2_exon_1_0_chr6_33164211_r;uc011dqt.2_exon_0_0_chr6_33163562_r;uc011dqu.2_exon_0_0_chr6_33163562_r
+chr6	33165506	33165750	uc003odb.4_exon_6_0_chr6_33165539_r;uc003odc.4_exon_6_0_chr6_33165539_r;uc003ode.1_exon_1_0_chr6_33165539_r;uc011dqr.3_exon_6_0_chr6_33165539_r;uc011dqs.2_exon_2_0_chr6_33165539_r;uc011dqt.2_exon_1_0_chr6_33165539_r;uc011dqu.2_exon_1_0_chr6_33165539_r
+chr6	33166051	33166388	uc003odb.4_exon_7_0_chr6_33166085_r;uc003odc.4_exon_7_0_chr6_33166085_r;uc003ode.1_exon_2_0_chr6_33166085_r;uc011dqr.3_exon_7_0_chr6_33166085_r;uc011dqs.2_exon_3_0_chr6_33166085_r;uc011dqt.2_exon_2_0_chr6_33166085_r;uc011dqu.2_exon_2_0_chr6_33166085_r
+chr6	33166911	33167063	uc003odb.4_exon_8_0_chr6_33166946_r;uc003odc.4_exon_8_0_chr6_33166946_r;uc011dqt.2_exon_3_0_chr6_33166946_r
+chr6	33167071	33167209	uc003odb.4_exon_8_0_chr6_33166946_r;uc003odc.4_exon_8_0_chr6_33166946_r;uc011dqt.2_exon_3_0_chr6_33166946_r
+chr6	33167986	33168096	uc003odb.4_exon_9_0_chr6_33168019_r;uc003odc.4_exon_9_0_chr6_33168019_r;uc011dqs.2_exon_4_0_chr6_33168019_r;uc011dqt.2_exon_4_0_chr6_33168019_r;uc011dqu.2_exon_3_0_chr6_33168019_r
+chr6	33168111	33168490	uc003odb.4_exon_9_0_chr6_33168019_r;uc003odc.4_exon_9_0_chr6_33168019_r;uc011dqs.2_exon_4_0_chr6_33168019_r;uc011dqt.2_exon_4_0_chr6_33168019_r;uc011dqu.2_exon_3_0_chr6_33168019_r
+chr6	33168506	33168646	uc011dqr.3_exon_8_0_chr6_33168544_r
+chr6	86159268	86160229	uc003pkn.3_exon_0_0_chr6_86159302_f;uc003pko.4_exon_0_0_chr6_86159302_f;uc010kbr.3_exon_0_0_chr6_86159302_f
+chr6	86176753	86177029	uc003pkn.3_exon_1_0_chr6_86176778_f;uc003pko.4_exon_1_0_chr6_86176778_f;uc010kbr.3_exon_1_0_chr6_86176778_f
+chr6	86180933	86181355	uc003pkn.3_exon_2_0_chr6_86180955_f;uc003pko.4_exon_2_0_chr6_86180955_f;uc010kbr.3_exon_2_0_chr6_86180955_f
+chr6	86194928	86195167	uc003pko.4_exon_3_0_chr6_86194953_f;uc010kbr.3_exon_3_0_chr6_86194953_f
+chr6	86197043	86197236	uc003pko.4_exon_4_0_chr6_86197053_f;uc010kbr.3_exon_4_0_chr6_86197053_f
+chr6	86199188	86199325	uc003pko.4_exon_5_0_chr6_86199212_f;uc010kbr.3_exon_5_0_chr6_86199212_f
+chr6	86200203	86200412	uc003pko.4_exon_6_0_chr6_86200226_f
+chr6	86201663	86201917	uc003pko.4_exon_7_0_chr6_86201695_f;uc010kbr.3_exon_6_0_chr6_86201695_f
+chr6	86203533	86204574	uc003pko.4_exon_8_0_chr6_86203559_f;uc010kbr.3_exon_7_0_chr6_86203559_f
+chr6	86204578	86205520	uc003pko.4_exon_8_0_chr6_86203559_f;uc010kbr.3_exon_7_0_chr6_86203559_f
+chr6	132129126	132129444	uc011ecf.2_exon_0_0_chr6_132129156_f
+chr6	132168881	132168980	uc011ecf.2_exon_1_0_chr6_132168916_f
+chr6	132171101	132171284	uc011ecf.2_exon_2_0_chr6_132171130_f
+chr6	132172256	132172437	uc011ecf.2_exon_3_0_chr6_132172282_f
+chr6	132173271	132173338	uc011ecf.2_exon_4_0_chr6_132173315_f
+chr6	132176056	132176198	uc011ecf.2_exon_5_0_chr6_132176066_f
+chr6	132179776	132179909	uc011ecf.2_exon_6_0_chr6_132179808_f
+chr6	132181491	132181662	uc011ecf.2_exon_7_0_chr6_132181527_f
+chr6	132182711	132182877	uc003qcy.3_exon_0_0_chr6_132182735_f;uc011ecf.2_exon_8_0_chr6_132182735_f
+chr6	132185606	132185746	uc003qcy.3_exon_1_0_chr6_132185646_f;uc011ecf.2_exon_9_0_chr6_132185646_f
+chr6	132185961	132186108	uc003qcy.3_exon_2_0_chr6_132186032_f;uc011ecf.2_exon_10_0_chr6_132186006_f
+chr6	132189126	132189311	uc003qcy.3_exon_3_0_chr6_132189158_f;uc011ecf.2_exon_11_0_chr6_132189158_f
+chr6	132190486	132190668	uc003qcy.3_exon_4_0_chr6_132190498_f;uc011ecf.2_exon_12_0_chr6_132190498_f
+chr6	132193151	132193281	uc003qcy.3_exon_5_0_chr6_132193210_f;uc011ecf.2_exon_13_0_chr6_132193210_f
+chr6	132194041	132194215	uc003qcy.3_exon_6_0_chr6_132194063_f;uc011ecf.2_exon_14_0_chr6_132194063_f
+chr6	132195371	132195508	uc003qcy.3_exon_7_0_chr6_132195408_f;uc011ecf.2_exon_15_0_chr6_132195408_f
+chr6	132196881	132197023	uc003qcy.3_exon_8_0_chr6_132196916_f;uc011ecf.2_exon_16_0_chr6_132196916_f
+chr6	132198106	132198847	uc003qcy.3_exon_9_0_chr6_132198132_f;uc011ecf.2_exon_17_0_chr6_132198132_f
+chr6	132199636	132199778	uc011ecf.2_exon_18_0_chr6_132199682_f
+chr6	132200996	132201207	uc011ecf.2_exon_19_0_chr6_132201020_f
+chr6	132203456	132203624	uc011ecf.2_exon_20_0_chr6_132203485_f
+chr6	132204801	132204935	uc011ecf.2_exon_21_0_chr6_132204834_f
+chr6	132206041	132206219	uc011ecf.2_exon_22_0_chr6_132206071_f
+chr6	132207676	132207883	uc011ecf.2_exon_23_0_chr6_132207702_f
+chr6	132211456	132212142	uc011ecf.2_exon_24_0_chr6_132211481_f
+chr6	132212151	132212332	uc011ecf.2_exon_24_0_chr6_132211481_f
+chr6	132212351	132212894	uc011ecf.2_exon_24_0_chr6_132211481_f
+chr6	132212906	132214201	uc011ecf.2_exon_24_0_chr6_132211481_f
+chr6	132214206	132214862	uc011ecf.2_exon_24_0_chr6_132211481_f
+chr6	132214896	132215094	uc011ecf.2_exon_24_0_chr6_132211481_f
+chr6	132215361	132215438	uc011ecf.2_exon_24_0_chr6_132211481_f
+chr6	132215691	132216320	uc011ecf.2_exon_24_0_chr6_132211481_f
+chr6_cox_hap2	4605164	4605706	uc011fpt.3_exon_0_0_chr6_cox_hap2_4605198_r;uc011fpu.3_exon_0_0_chr6_cox_hap2_4605198_r;uc011fpw.3_exon_0_0_chr6_cox_hap2_4605198_r
+chr6_cox_hap2	4605724	4606454	uc011fpt.3_exon_0_0_chr6_cox_hap2_4605198_r;uc011fpu.3_exon_0_0_chr6_cox_hap2_4605198_r;uc011fpw.3_exon_0_0_chr6_cox_hap2_4605198_r
+chr6_cox_hap2	4606534	4606674	uc011fpt.3_exon_1_0_chr6_cox_hap2_4606558_r;uc011fpu.3_exon_1_0_chr6_cox_hap2_4606558_r;uc011fpw.3_exon_1_0_chr6_cox_hap2_4606558_r
+chr6_cox_hap2	4606949	4607102	uc011fpt.3_exon_2_0_chr6_cox_hap2_4606976_r;uc011fpu.3_exon_2_0_chr6_cox_hap2_4606976_r;uc011fpw.3_exon_2_0_chr6_cox_hap2_4606976_r
+chr6_cox_hap2	4607149	4608104	uc011fpt.3_exon_3_0_chr6_cox_hap2_4607183_r;uc011fpt.3_exon_4_0_chr6_cox_hap2_4607520_r;uc011fpt.3_exon_5_0_chr6_cox_hap2_4608047_r;uc011fpu.3_exon_3_0_chr6_cox_hap2_4607183_r;uc011fpu.3_exon_4_0_chr6_cox_hap2_4607520_r;uc011fpu.3_exon_5_0_chr6_cox_hap2_4608047_r;uc011fpw.3_exon_3_0_chr6_cox_hap2_4607183_r;uc011fpw.3_exon_4_0_chr6_cox_hap2_4607520_r;uc011fpw.3_exon_5_0_chr6_cox_hap2_4608047_r;uc011fpx.2_exon_0_0_chr6_cox_hap2_4607224_r;uc011fpx.2_exon_1_0_chr6_cox_hap2_4608047_r;uc011fpy.1_exon_0_0_chr6_cox_hap2_4607398_r;uc011fpz.2_exon_0_0_chr6_cox_hap2_4607398_r;uc011fqa.2_exon_0_0_chr6_cox_hap2_4607398_r
+chr6_cox_hap2	4608124	4608252	uc011fpt.3_exon_3_0_chr6_cox_hap2_4607183_r;uc011fpt.3_exon_4_0_chr6_cox_hap2_4607520_r;uc011fpt.3_exon_5_0_chr6_cox_hap2_4608047_r;uc011fpu.3_exon_3_0_chr6_cox_hap2_4607183_r;uc011fpu.3_exon_4_0_chr6_cox_hap2_4607520_r;uc011fpu.3_exon_5_0_chr6_cox_hap2_4608047_r;uc011fpw.3_exon_3_0_chr6_cox_hap2_4607183_r;uc011fpw.3_exon_4_0_chr6_cox_hap2_4607520_r;uc011fpw.3_exon_5_0_chr6_cox_hap2_4608047_r;uc011fpx.2_exon_0_0_chr6_cox_hap2_4607224_r;uc011fpx.2_exon_1_0_chr6_cox_hap2_4608047_r;uc011fpy.1_exon_0_0_chr6_cox_hap2_4607398_r;uc011fpz.2_exon_0_0_chr6_cox_hap2_4607398_r;uc011fqa.2_exon_0_0_chr6_cox_hap2_4607398_r
+chr6_cox_hap2	4609344	4609583	uc011fpt.3_exon_6_0_chr6_cox_hap2_4609375_r;uc011fpu.3_exon_6_0_chr6_cox_hap2_4609375_r;uc011fpw.3_exon_6_0_chr6_cox_hap2_4609375_r;uc011fpx.2_exon_2_0_chr6_cox_hap2_4609375_r;uc011fpy.1_exon_1_0_chr6_cox_hap2_4609375_r;uc011fpz.2_exon_1_0_chr6_cox_hap2_4609375_r;uc011fqa.2_exon_1_0_chr6_cox_hap2_4609375_r
+chr6_cox_hap2	4609889	4610223	uc011fpt.3_exon_7_0_chr6_cox_hap2_4609921_r;uc011fpu.3_exon_7_0_chr6_cox_hap2_4609921_r;uc011fpw.3_exon_7_0_chr6_cox_hap2_4609921_r;uc011fpx.2_exon_3_0_chr6_cox_hap2_4609921_r;uc011fpy.1_exon_2_0_chr6_cox_hap2_4609921_r;uc011fpz.2_exon_2_0_chr6_cox_hap2_4609921_r;uc011fqa.2_exon_2_0_chr6_cox_hap2_4609921_r
+chr6_cox_hap2	4610744	4610896	uc011fpt.3_exon_8_0_chr6_cox_hap2_4610780_r;uc011fpu.3_exon_8_0_chr6_cox_hap2_4610780_r;uc011fpz.2_exon_3_0_chr6_cox_hap2_4610780_r
+chr6_cox_hap2	4610904	4611041	uc011fpt.3_exon_8_0_chr6_cox_hap2_4610780_r;uc011fpu.3_exon_8_0_chr6_cox_hap2_4610780_r;uc011fpz.2_exon_3_0_chr6_cox_hap2_4610780_r
+chr6_cox_hap2	4611819	4611930	uc011fpt.3_exon_9_0_chr6_cox_hap2_4611853_r;uc011fpu.3_exon_9_0_chr6_cox_hap2_4611853_r;uc011fpx.2_exon_4_0_chr6_cox_hap2_4611853_r;uc011fpz.2_exon_4_0_chr6_cox_hap2_4611853_r;uc011fqa.2_exon_3_0_chr6_cox_hap2_4611853_r
+chr6_cox_hap2	4611944	4612327	uc011fpt.3_exon_9_0_chr6_cox_hap2_4611853_r;uc011fpu.3_exon_9_0_chr6_cox_hap2_4611853_r;uc011fpx.2_exon_4_0_chr6_cox_hap2_4611853_r;uc011fpz.2_exon_4_0_chr6_cox_hap2_4611853_r;uc011fqa.2_exon_3_0_chr6_cox_hap2_4611853_r
+chr6_cox_hap2	4612344	4612480	uc011fpw.3_exon_8_0_chr6_cox_hap2_4612378_r
+chr6_dbb_hap3	4442634	4443175	uc011gly.3_exon_0_0_chr6_dbb_hap3_4442669_r;uc011glz.3_exon_0_0_chr6_dbb_hap3_4442669_r;uc011gmb.3_exon_0_0_chr6_dbb_hap3_4442669_r
+chr6_dbb_hap3	4443194	4443924	uc011gly.3_exon_0_0_chr6_dbb_hap3_4442669_r;uc011glz.3_exon_0_0_chr6_dbb_hap3_4442669_r;uc011gmb.3_exon_0_0_chr6_dbb_hap3_4442669_r
+chr6_dbb_hap3	4444004	4444175	uc011gly.3_exon_1_0_chr6_dbb_hap3_4444029_r;uc011glz.3_exon_1_0_chr6_dbb_hap3_4444029_r;uc011gmb.3_exon_1_0_chr6_dbb_hap3_4444029_r
+chr6_dbb_hap3	4444424	4444567	uc011gly.3_exon_2_0_chr6_dbb_hap3_4444447_r;uc011glz.3_exon_2_0_chr6_dbb_hap3_4444447_r;uc011gmb.3_exon_2_0_chr6_dbb_hap3_4444447_r
+chr6_dbb_hap3	4444619	4445581	uc011gly.3_exon_3_0_chr6_dbb_hap3_4444654_r;uc011gly.3_exon_4_0_chr6_dbb_hap3_4444991_r;uc011gly.3_exon_5_0_chr6_dbb_hap3_4445518_r;uc011glz.3_exon_3_0_chr6_dbb_hap3_4444654_r;uc011glz.3_exon_4_0_chr6_dbb_hap3_4444991_r;uc011glz.3_exon_5_0_chr6_dbb_hap3_4445518_r;uc011gmb.3_exon_3_0_chr6_dbb_hap3_4444654_r;uc011gmb.3_exon_4_0_chr6_dbb_hap3_4444991_r;uc011gmb.3_exon_5_0_chr6_dbb_hap3_4445518_r;uc011gmc.2_exon_0_0_chr6_dbb_hap3_4444695_r;uc011gmc.2_exon_1_0_chr6_dbb_hap3_4445518_r;uc011gmd.1_exon_0_0_chr6_dbb_hap3_4444869_r;uc011gme.2_exon_0_0_chr6_dbb_hap3_4444869_r;uc011gmf.2_exon_0_0_chr6_dbb_hap3_4444869_r
+chr6_dbb_hap3	4445594	4445722	uc011gly.3_exon_3_0_chr6_dbb_hap3_4444654_r;uc011gly.3_exon_4_0_chr6_dbb_hap3_4444991_r;uc011gly.3_exon_5_0_chr6_dbb_hap3_4445518_r;uc011glz.3_exon_3_0_chr6_dbb_hap3_4444654_r;uc011glz.3_exon_4_0_chr6_dbb_hap3_4444991_r;uc011glz.3_exon_5_0_chr6_dbb_hap3_4445518_r;uc011gmb.3_exon_3_0_chr6_dbb_hap3_4444654_r;uc011gmb.3_exon_4_0_chr6_dbb_hap3_4444991_r;uc011gmb.3_exon_5_0_chr6_dbb_hap3_4445518_r;uc011gmc.2_exon_0_0_chr6_dbb_hap3_4444695_r;uc011gmc.2_exon_1_0_chr6_dbb_hap3_4445518_r;uc011gmd.1_exon_0_0_chr6_dbb_hap3_4444869_r;uc011gme.2_exon_0_0_chr6_dbb_hap3_4444869_r;uc011gmf.2_exon_0_0_chr6_dbb_hap3_4444869_r
+chr6_dbb_hap3	4446814	4447061	uc011gly.3_exon_6_0_chr6_dbb_hap3_4446846_r;uc011glz.3_exon_6_0_chr6_dbb_hap3_4446846_r;uc011gmb.3_exon_6_0_chr6_dbb_hap3_4446846_r;uc011gmc.2_exon_2_0_chr6_dbb_hap3_4446846_r;uc011gmd.1_exon_1_0_chr6_dbb_hap3_4446846_r;uc011gme.2_exon_1_0_chr6_dbb_hap3_4446846_r;uc011gmf.2_exon_1_0_chr6_dbb_hap3_4446846_r
+chr6_dbb_hap3	4447359	4447695	uc011gly.3_exon_7_0_chr6_dbb_hap3_4447392_r;uc011glz.3_exon_7_0_chr6_dbb_hap3_4447392_r;uc011gmb.3_exon_7_0_chr6_dbb_hap3_4447392_r;uc011gmc.2_exon_3_0_chr6_dbb_hap3_4447392_r;uc011gmd.1_exon_2_0_chr6_dbb_hap3_4447392_r;uc011gme.2_exon_2_0_chr6_dbb_hap3_4447392_r;uc011gmf.2_exon_2_0_chr6_dbb_hap3_4447392_r
+chr6_dbb_hap3	4448224	4448371	uc011gly.3_exon_8_0_chr6_dbb_hap3_4448253_r;uc011glz.3_exon_8_0_chr6_dbb_hap3_4448253_r;uc011gme.2_exon_3_0_chr6_dbb_hap3_4448253_r
+chr6_dbb_hap3	4448374	4448511	uc011gly.3_exon_8_0_chr6_dbb_hap3_4448253_r;uc011glz.3_exon_8_0_chr6_dbb_hap3_4448253_r;uc011gme.2_exon_3_0_chr6_dbb_hap3_4448253_r
+chr6_dbb_hap3	4449294	4449404	uc011gly.3_exon_9_0_chr6_dbb_hap3_4449326_r;uc011glz.3_exon_9_0_chr6_dbb_hap3_4449326_r;uc011gmc.2_exon_4_0_chr6_dbb_hap3_4449326_r;uc011gme.2_exon_4_0_chr6_dbb_hap3_4449326_r;uc011gmf.2_exon_3_0_chr6_dbb_hap3_4449326_r
+chr6_dbb_hap3	4449419	4449798	uc011gly.3_exon_9_0_chr6_dbb_hap3_4449326_r;uc011glz.3_exon_9_0_chr6_dbb_hap3_4449326_r;uc011gmc.2_exon_4_0_chr6_dbb_hap3_4449326_r;uc011gme.2_exon_4_0_chr6_dbb_hap3_4449326_r;uc011gmf.2_exon_3_0_chr6_dbb_hap3_4449326_r
+chr6_dbb_hap3	4449814	4449954	uc011gmb.3_exon_8_0_chr6_dbb_hap3_4449851_r
+chr6_mann_hap4	4618646	4619934	uc011hgn.3_exon_0_0_chr6_mann_hap4_4618677_r;uc011hgo.3_exon_0_0_chr6_mann_hap4_4618677_r;uc011hgq.3_exon_0_0_chr6_mann_hap4_4618677_r
+chr6_mann_hap4	4620016	4620159	uc011hgn.3_exon_1_0_chr6_mann_hap4_4620038_r;uc011hgo.3_exon_1_0_chr6_mann_hap4_4620038_r;uc011hgq.3_exon_1_0_chr6_mann_hap4_4620038_r
+chr6_mann_hap4	4620426	4620577	uc011hgn.3_exon_2_0_chr6_mann_hap4_4620456_r;uc011hgo.3_exon_2_0_chr6_mann_hap4_4620456_r;uc011hgq.3_exon_2_0_chr6_mann_hap4_4620456_r
+chr6_mann_hap4	4620636	4621588	uc011hgn.3_exon_3_0_chr6_mann_hap4_4620663_r;uc011hgn.3_exon_4_0_chr6_mann_hap4_4621000_r;uc011hgn.3_exon_5_0_chr6_mann_hap4_4621527_r;uc011hgo.3_exon_3_0_chr6_mann_hap4_4620663_r;uc011hgo.3_exon_4_0_chr6_mann_hap4_4621000_r;uc011hgo.3_exon_5_0_chr6_mann_hap4_4621527_r;uc011hgq.3_exon_3_0_chr6_mann_hap4_4620663_r;uc011hgq.3_exon_4_0_chr6_mann_hap4_4621000_r;uc011hgq.3_exon_5_0_chr6_mann_hap4_4621527_r;uc011hgr.2_exon_0_0_chr6_mann_hap4_4620704_r;uc011hgr.2_exon_1_0_chr6_mann_hap4_4621527_r;uc011hgs.1_exon_0_0_chr6_mann_hap4_4620878_r;uc011hgt.2_exon_0_0_chr6_mann_hap4_4620878_r;uc011hgu.2_exon_0_0_chr6_mann_hap4_4620878_r
+chr6_mann_hap4	4621591	4621730	uc011hgn.3_exon_3_0_chr6_mann_hap4_4620663_r;uc011hgn.3_exon_4_0_chr6_mann_hap4_4621000_r;uc011hgn.3_exon_5_0_chr6_mann_hap4_4621527_r;uc011hgo.3_exon_3_0_chr6_mann_hap4_4620663_r;uc011hgo.3_exon_4_0_chr6_mann_hap4_4621000_r;uc011hgo.3_exon_5_0_chr6_mann_hap4_4621527_r;uc011hgq.3_exon_3_0_chr6_mann_hap4_4620663_r;uc011hgq.3_exon_4_0_chr6_mann_hap4_4621000_r;uc011hgq.3_exon_5_0_chr6_mann_hap4_4621527_r;uc011hgr.2_exon_0_0_chr6_mann_hap4_4620704_r;uc011hgr.2_exon_1_0_chr6_mann_hap4_4621527_r;uc011hgs.1_exon_0_0_chr6_mann_hap4_4620878_r;uc011hgt.2_exon_0_0_chr6_mann_hap4_4620878_r;uc011hgu.2_exon_0_0_chr6_mann_hap4_4620878_r
+chr6_mann_hap4	4622826	4623065	uc011hgn.3_exon_6_0_chr6_mann_hap4_4622855_r;uc011hgo.3_exon_6_0_chr6_mann_hap4_4622855_r;uc011hgq.3_exon_6_0_chr6_mann_hap4_4622855_r;uc011hgr.2_exon_2_0_chr6_mann_hap4_4622855_r;uc011hgs.1_exon_1_0_chr6_mann_hap4_4622855_r;uc011hgt.2_exon_1_0_chr6_mann_hap4_4622855_r;uc011hgu.2_exon_1_0_chr6_mann_hap4_4622855_r
+chr6_mann_hap4	4623366	4623703	uc011hgn.3_exon_7_0_chr6_mann_hap4_4623401_r;uc011hgo.3_exon_7_0_chr6_mann_hap4_4623401_r;uc011hgq.3_exon_7_0_chr6_mann_hap4_4623401_r;uc011hgr.2_exon_3_0_chr6_mann_hap4_4623401_r;uc011hgs.1_exon_2_0_chr6_mann_hap4_4623401_r;uc011hgt.2_exon_2_0_chr6_mann_hap4_4623401_r;uc011hgu.2_exon_2_0_chr6_mann_hap4_4623401_r
+chr6_mann_hap4	4624226	4624378	uc011hgn.3_exon_8_0_chr6_mann_hap4_4624262_r;uc011hgo.3_exon_8_0_chr6_mann_hap4_4624262_r;uc011hgt.2_exon_3_0_chr6_mann_hap4_4624262_r
+chr6_mann_hap4	4624386	4624523	uc011hgn.3_exon_8_0_chr6_mann_hap4_4624262_r;uc011hgo.3_exon_8_0_chr6_mann_hap4_4624262_r;uc011hgt.2_exon_3_0_chr6_mann_hap4_4624262_r
+chr6_mann_hap4	4625301	4625412	uc011hgn.3_exon_9_0_chr6_mann_hap4_4625335_r;uc011hgo.3_exon_9_0_chr6_mann_hap4_4625335_r;uc011hgr.2_exon_4_0_chr6_mann_hap4_4625335_r;uc011hgt.2_exon_4_0_chr6_mann_hap4_4625335_r;uc011hgu.2_exon_3_0_chr6_mann_hap4_4625335_r
+chr6_mann_hap4	4625426	4625809	uc011hgn.3_exon_9_0_chr6_mann_hap4_4625335_r;uc011hgo.3_exon_9_0_chr6_mann_hap4_4625335_r;uc011hgr.2_exon_4_0_chr6_mann_hap4_4625335_r;uc011hgt.2_exon_4_0_chr6_mann_hap4_4625335_r;uc011hgu.2_exon_3_0_chr6_mann_hap4_4625335_r
+chr6_mann_hap4	4625826	4625962	uc011hgq.3_exon_8_0_chr6_mann_hap4_4625860_r
+chr6_mcf_hap5	4635098	4635635	uc011ibu.3_exon_0_0_chr6_mcf_hap5_4635126_r;uc011ibv.3_exon_0_0_chr6_mcf_hap5_4635126_r;uc011ibx.3_exon_0_0_chr6_mcf_hap5_4635126_r
+chr6_mcf_hap5	4635653	4636382	uc011ibu.3_exon_0_0_chr6_mcf_hap5_4635126_r;uc011ibv.3_exon_0_0_chr6_mcf_hap5_4635126_r;uc011ibx.3_exon_0_0_chr6_mcf_hap5_4635126_r
+chr6_mcf_hap5	4636463	4636602	uc011ibu.3_exon_1_0_chr6_mcf_hap5_4636486_r;uc011ibv.3_exon_1_0_chr6_mcf_hap5_4636486_r;uc011ibx.3_exon_1_0_chr6_mcf_hap5_4636486_r
+chr6_mcf_hap5	4636873	4637025	uc011ibu.3_exon_2_0_chr6_mcf_hap5_4636904_r;uc011ibv.3_exon_2_0_chr6_mcf_hap5_4636904_r;uc011ibx.3_exon_2_0_chr6_mcf_hap5_4636904_r
+chr6_mcf_hap5	4637088	4637237	uc011ibu.3_exon_3_0_chr6_mcf_hap5_4637111_r;uc011ibu.3_exon_4_0_chr6_mcf_hap5_4637446_r;uc011ibu.3_exon_5_0_chr6_mcf_hap5_4637973_r;uc011ibv.3_exon_3_0_chr6_mcf_hap5_4637111_r;uc011ibv.3_exon_4_0_chr6_mcf_hap5_4637446_r;uc011ibv.3_exon_5_0_chr6_mcf_hap5_4637973_r;uc011ibx.3_exon_3_0_chr6_mcf_hap5_4637111_r;uc011ibx.3_exon_4_0_chr6_mcf_hap5_4637446_r;uc011ibx.3_exon_5_0_chr6_mcf_hap5_4637973_r;uc011iby.2_exon_0_0_chr6_mcf_hap5_4637152_r;uc011iby.2_exon_1_0_chr6_mcf_hap5_4637973_r;uc011ibz.1_exon_0_0_chr6_mcf_hap5_4637326_r;uc011ica.2_exon_0_0_chr6_mcf_hap5_4637326_r;uc011icb.2_exon_0_0_chr6_mcf_hap5_4637326_r
+chr6_mcf_hap5	4637238	4638034	uc011ibu.3_exon_3_0_chr6_mcf_hap5_4637111_r;uc011ibu.3_exon_4_0_chr6_mcf_hap5_4637446_r;uc011ibu.3_exon_5_0_chr6_mcf_hap5_4637973_r;uc011ibv.3_exon_3_0_chr6_mcf_hap5_4637111_r;uc011ibv.3_exon_4_0_chr6_mcf_hap5_4637446_r;uc011ibv.3_exon_5_0_chr6_mcf_hap5_4637973_r;uc011ibx.3_exon_3_0_chr6_mcf_hap5_4637111_r;uc011ibx.3_exon_4_0_chr6_mcf_hap5_4637446_r;uc011ibx.3_exon_5_0_chr6_mcf_hap5_4637973_r;uc011iby.2_exon_0_0_chr6_mcf_hap5_4637152_r;uc011iby.2_exon_1_0_chr6_mcf_hap5_4637973_r;uc011ibz.1_exon_0_0_chr6_mcf_hap5_4637326_r;uc011ica.2_exon_0_0_chr6_mcf_hap5_4637326_r;uc011icb.2_exon_0_0_chr6_mcf_hap5_4637326_r
+chr6_mcf_hap5	4638038	4638177	uc011ibu.3_exon_3_0_chr6_mcf_hap5_4637111_r;uc011ibu.3_exon_4_0_chr6_mcf_hap5_4637446_r;uc011ibu.3_exon_5_0_chr6_mcf_hap5_4637973_r;uc011ibv.3_exon_3_0_chr6_mcf_hap5_4637111_r;uc011ibv.3_exon_4_0_chr6_mcf_hap5_4637446_r;uc011ibv.3_exon_5_0_chr6_mcf_hap5_4637973_r;uc011ibx.3_exon_3_0_chr6_mcf_hap5_4637111_r;uc011ibx.3_exon_4_0_chr6_mcf_hap5_4637446_r;uc011ibx.3_exon_5_0_chr6_mcf_hap5_4637973_r;uc011iby.2_exon_0_0_chr6_mcf_hap5_4637152_r;uc011iby.2_exon_1_0_chr6_mcf_hap5_4637973_r;uc011ibz.1_exon_0_0_chr6_mcf_hap5_4637326_r;uc011ica.2_exon_0_0_chr6_mcf_hap5_4637326_r;uc011icb.2_exon_0_0_chr6_mcf_hap5_4637326_r
+chr6_mcf_hap5	4639268	4639512	uc011ibu.3_exon_6_0_chr6_mcf_hap5_4639301_r;uc011ibv.3_exon_6_0_chr6_mcf_hap5_4639301_r;uc011ibx.3_exon_6_0_chr6_mcf_hap5_4639301_r;uc011iby.2_exon_2_0_chr6_mcf_hap5_4639301_r;uc011ibz.1_exon_1_0_chr6_mcf_hap5_4639301_r;uc011ica.2_exon_1_0_chr6_mcf_hap5_4639301_r;uc011icb.2_exon_1_0_chr6_mcf_hap5_4639301_r
+chr6_mcf_hap5	4639813	4640150	uc011ibu.3_exon_7_0_chr6_mcf_hap5_4639847_r;uc011ibv.3_exon_7_0_chr6_mcf_hap5_4639847_r;uc011ibx.3_exon_7_0_chr6_mcf_hap5_4639847_r;uc011iby.2_exon_3_0_chr6_mcf_hap5_4639847_r;uc011ibz.1_exon_2_0_chr6_mcf_hap5_4639847_r;uc011ica.2_exon_2_0_chr6_mcf_hap5_4639847_r;uc011icb.2_exon_2_0_chr6_mcf_hap5_4639847_r
+chr6_mcf_hap5	4640678	4640825	uc011ibu.3_exon_8_0_chr6_mcf_hap5_4640707_r;uc011ibv.3_exon_8_0_chr6_mcf_hap5_4640707_r;uc011ica.2_exon_3_0_chr6_mcf_hap5_4640707_r
+chr6_mcf_hap5	4640828	4640965	uc011ibu.3_exon_8_0_chr6_mcf_hap5_4640707_r;uc011ibv.3_exon_8_0_chr6_mcf_hap5_4640707_r;uc011ica.2_exon_3_0_chr6_mcf_hap5_4640707_r
+chr6_mcf_hap5	4641748	4641858	uc011ibu.3_exon_9_0_chr6_mcf_hap5_4641780_r;uc011ibv.3_exon_9_0_chr6_mcf_hap5_4641780_r;uc011iby.2_exon_4_0_chr6_mcf_hap5_4641780_r;uc011ica.2_exon_4_0_chr6_mcf_hap5_4641780_r;uc011icb.2_exon_3_0_chr6_mcf_hap5_4641780_r
+chr6_mcf_hap5	4641873	4642252	uc011ibu.3_exon_9_0_chr6_mcf_hap5_4641780_r;uc011ibv.3_exon_9_0_chr6_mcf_hap5_4641780_r;uc011iby.2_exon_4_0_chr6_mcf_hap5_4641780_r;uc011ica.2_exon_4_0_chr6_mcf_hap5_4641780_r;uc011icb.2_exon_3_0_chr6_mcf_hap5_4641780_r
+chr6_mcf_hap5	4642268	4642408	uc011ibx.3_exon_8_0_chr6_mcf_hap5_4642305_r
+chr6_qbl_hap6	4393556	4394093	uc011izg.3_exon_0_0_chr6_qbl_hap6_4393584_r;uc011izh.3_exon_0_0_chr6_qbl_hap6_4393584_r;uc011izj.3_exon_0_0_chr6_qbl_hap6_4393584_r
+chr6_qbl_hap6	4394111	4394841	uc011izg.3_exon_0_0_chr6_qbl_hap6_4393584_r;uc011izh.3_exon_0_0_chr6_qbl_hap6_4393584_r;uc011izj.3_exon_0_0_chr6_qbl_hap6_4393584_r
+chr6_qbl_hap6	4394921	4395061	uc011izg.3_exon_1_0_chr6_qbl_hap6_4394945_r;uc011izh.3_exon_1_0_chr6_qbl_hap6_4394945_r;uc011izj.3_exon_1_0_chr6_qbl_hap6_4394945_r
+chr6_qbl_hap6	4395336	4395489	uc011izg.3_exon_2_0_chr6_qbl_hap6_4395363_r;uc011izh.3_exon_2_0_chr6_qbl_hap6_4395363_r;uc011izj.3_exon_2_0_chr6_qbl_hap6_4395363_r
+chr6_qbl_hap6	4395536	4396491	uc011izg.3_exon_3_0_chr6_qbl_hap6_4395570_r;uc011izg.3_exon_4_0_chr6_qbl_hap6_4395907_r;uc011izg.3_exon_5_0_chr6_qbl_hap6_4396434_r;uc011izh.3_exon_3_0_chr6_qbl_hap6_4395570_r;uc011izh.3_exon_4_0_chr6_qbl_hap6_4395907_r;uc011izh.3_exon_5_0_chr6_qbl_hap6_4396434_r;uc011izj.3_exon_3_0_chr6_qbl_hap6_4395570_r;uc011izj.3_exon_4_0_chr6_qbl_hap6_4395907_r;uc011izj.3_exon_5_0_chr6_qbl_hap6_4396434_r;uc011izk.2_exon_0_0_chr6_qbl_hap6_4395611_r;uc011izk.2_exon_1_0_chr6_qbl_hap6_4396434_r;uc011izl.1_exon_0_0_chr6_qbl_hap6_4395785_r;uc011izm.2_exon_0_0_chr6_qbl_hap6_4395785_r;uc011izn.2_exon_0_0_chr6_qbl_hap6_4395785_r
+chr6_qbl_hap6	4396511	4396639	uc011izg.3_exon_3_0_chr6_qbl_hap6_4395570_r;uc011izg.3_exon_4_0_chr6_qbl_hap6_4395907_r;uc011izg.3_exon_5_0_chr6_qbl_hap6_4396434_r;uc011izh.3_exon_3_0_chr6_qbl_hap6_4395570_r;uc011izh.3_exon_4_0_chr6_qbl_hap6_4395907_r;uc011izh.3_exon_5_0_chr6_qbl_hap6_4396434_r;uc011izj.3_exon_3_0_chr6_qbl_hap6_4395570_r;uc011izj.3_exon_4_0_chr6_qbl_hap6_4395907_r;uc011izj.3_exon_5_0_chr6_qbl_hap6_4396434_r;uc011izk.2_exon_0_0_chr6_qbl_hap6_4395611_r;uc011izk.2_exon_1_0_chr6_qbl_hap6_4396434_r;uc011izl.1_exon_0_0_chr6_qbl_hap6_4395785_r;uc011izm.2_exon_0_0_chr6_qbl_hap6_4395785_r;uc011izn.2_exon_0_0_chr6_qbl_hap6_4395785_r
+chr6_qbl_hap6	4397731	4397970	uc011izg.3_exon_6_0_chr6_qbl_hap6_4397762_r;uc011izh.3_exon_6_0_chr6_qbl_hap6_4397762_r;uc011izj.3_exon_6_0_chr6_qbl_hap6_4397762_r;uc011izk.2_exon_2_0_chr6_qbl_hap6_4397762_r;uc011izl.1_exon_1_0_chr6_qbl_hap6_4397762_r;uc011izm.2_exon_1_0_chr6_qbl_hap6_4397762_r;uc011izn.2_exon_1_0_chr6_qbl_hap6_4397762_r
+chr6_qbl_hap6	4398276	4398610	uc011izg.3_exon_7_0_chr6_qbl_hap6_4398308_r;uc011izh.3_exon_7_0_chr6_qbl_hap6_4398308_r;uc011izj.3_exon_7_0_chr6_qbl_hap6_4398308_r;uc011izk.2_exon_3_0_chr6_qbl_hap6_4398308_r;uc011izl.1_exon_2_0_chr6_qbl_hap6_4398308_r;uc011izm.2_exon_2_0_chr6_qbl_hap6_4398308_r;uc011izn.2_exon_2_0_chr6_qbl_hap6_4398308_r
+chr6_qbl_hap6	4399136	4399287	uc011izg.3_exon_8_0_chr6_qbl_hap6_4399169_r;uc011izh.3_exon_8_0_chr6_qbl_hap6_4399169_r;uc011izm.2_exon_3_0_chr6_qbl_hap6_4399169_r
+chr6_qbl_hap6	4399291	4399436	uc011izg.3_exon_8_0_chr6_qbl_hap6_4399169_r;uc011izh.3_exon_8_0_chr6_qbl_hap6_4399169_r;uc011izm.2_exon_3_0_chr6_qbl_hap6_4399169_r
+chr6_qbl_hap6	4400206	4400308	uc011izg.3_exon_9_0_chr6_qbl_hap6_4400242_r;uc011izh.3_exon_9_0_chr6_qbl_hap6_4400242_r;uc011izk.2_exon_4_0_chr6_qbl_hap6_4400242_r;uc011izm.2_exon_4_0_chr6_qbl_hap6_4400242_r;uc011izn.2_exon_3_0_chr6_qbl_hap6_4400242_r
+chr6_qbl_hap6	4400331	4400714	uc011izg.3_exon_9_0_chr6_qbl_hap6_4400242_r;uc011izh.3_exon_9_0_chr6_qbl_hap6_4400242_r;uc011izk.2_exon_4_0_chr6_qbl_hap6_4400242_r;uc011izm.2_exon_4_0_chr6_qbl_hap6_4400242_r;uc011izn.2_exon_3_0_chr6_qbl_hap6_4400242_r
+chr6_qbl_hap6	4400726	4400870	uc011izj.3_exon_8_0_chr6_qbl_hap6_4400767_r
+chr7	30892967	30893116	uc011kac.1_exon_0_0_chr7_30893010_f
+chr7	30898822	30898975	uc011kac.1_exon_1_0_chr7_30898873_f
+chr7	30911807	30911957	uc011kac.1_exon_2_0_chr7_30911858_f
+chr7	30915087	30915303	uc011kac.1_exon_3_0_chr7_30915110_f
+chr7	30921767	30922009	uc011kac.1_exon_4_0_chr7_30921796_f
+chr7	30922497	30922635	uc011kac.1_exon_5_0_chr7_30922536_f
+chr7	30951382	30951943	uc003tbv.2_exon_0_0_chr7_30951415_f;uc011kac.1_exon_6_0_chr7_30951608_f
+chr7	30960842	30960980	uc010kwf.1_exon_0_0_chr7_30960915_f
+chr7	30961072	30961461	uc010kwf.1_exon_1_0_chr7_30961296_f;uc010kwh.1_exon_0_0_chr7_30961105_f;uc022abh.1_exon_0_0_chr7_30961119_f
+chr7	30961647	30961869	uc003tbv.2_exon_1_0_chr7_30961681_f;uc010kwf.1_exon_2_0_chr7_30961681_f;uc010kwh.1_exon_1_0_chr7_30961681_f;uc011kac.1_exon_7_0_chr7_30961681_f;uc022abh.1_exon_1_0_chr7_30961681_f
+chr7	30962147	30962280	uc003tbv.2_exon_2_0_chr7_30962179_f;uc010kwf.1_exon_3_0_chr7_30962179_f;uc010kwh.1_exon_2_0_chr7_30962179_f;uc011kac.1_exon_8_0_chr7_30962179_f;uc022abh.1_exon_2_0_chr7_30962179_f
+chr7	30963042	30963732	uc003tbv.2_exon_3_0_chr7_30963065_f;uc010kwf.1_exon_4_0_chr7_30963065_f;uc010kwh.1_exon_3_0_chr7_30963065_f;uc011kac.1_exon_9_0_chr7_30963065_f;uc022abh.1_exon_3_0_chr7_30963065_f
+chr7	30963742	30965147	uc003tbv.2_exon_3_0_chr7_30963065_f;uc010kwf.1_exon_4_0_chr7_30963065_f;uc010kwh.1_exon_3_0_chr7_30963065_f;uc011kac.1_exon_9_0_chr7_30963065_f;uc022abh.1_exon_3_0_chr7_30963065_f
+chr7	86781642	86782145	uc003uih.3_exon_0_0_chr7_86781677_f;uc003uii.3_exon_0_0_chr7_86781677_f;uc003uij.3_exon_0_0_chr7_86781677_f;uc003uil.3_exon_0_0_chr7_86781870_f;uc011khb.2_exon_0_0_chr7_86781677_f
+chr7	86783487	86783631	uc003uil.3_exon_1_0_chr7_86783544_f
+chr7	86783682	86783865	uc003uil.3_exon_2_0_chr7_86783706_f
+chr7	86792167	86792280	uc003uih.3_exon_1_0_chr7_86792811_f;uc003uii.3_exon_1_0_chr7_86792811_f;uc003uij.3_exon_1_0_chr7_86792811_f;uc003uil.3_exon_3_0_chr7_86792811_f;uc003uim.1_exon_0_0_chr7_86792198_f;uc003uin.3_exon_0_0_chr7_86792198_f;uc011khb.2_exon_1_0_chr7_86792811_f
+chr7	86792287	86792538	uc003uih.3_exon_1_0_chr7_86792811_f;uc003uii.3_exon_1_0_chr7_86792811_f;uc003uij.3_exon_1_0_chr7_86792811_f;uc003uil.3_exon_3_0_chr7_86792811_f;uc003uim.1_exon_0_0_chr7_86792198_f;uc003uin.3_exon_0_0_chr7_86792198_f;uc011khb.2_exon_1_0_chr7_86792811_f
+chr7	86792542	86792974	uc003uih.3_exon_1_0_chr7_86792811_f;uc003uii.3_exon_1_0_chr7_86792811_f;uc003uij.3_exon_1_0_chr7_86792811_f;uc003uil.3_exon_3_0_chr7_86792811_f;uc003uim.1_exon_0_0_chr7_86792198_f;uc003uin.3_exon_0_0_chr7_86792198_f;uc011khb.2_exon_1_0_chr7_86792811_f
+chr7	86793527	86793675	uc003uin.3_exon_1_0_chr7_86793570_f
+chr7	86794222	86794407	uc003uih.3_exon_2_0_chr7_86794250_f;uc003uii.3_exon_2_0_chr7_86794250_f;uc003uij.3_exon_2_0_chr7_86794250_f;uc003uil.3_exon_4_0_chr7_86794250_f;uc003uim.1_exon_1_0_chr7_86794250_f;uc003uin.3_exon_2_0_chr7_86794250_f
+chr7	86795777	86795956	uc003uih.3_exon_3_0_chr7_86795799_f;uc003uii.3_exon_3_0_chr7_86795799_f;uc003uij.3_exon_3_0_chr7_86795799_f;uc003uil.3_exon_5_0_chr7_86795799_f;uc003uim.1_exon_2_0_chr7_86795799_f;uc003uin.3_exon_3_0_chr7_86795799_f;uc011khb.2_exon_2_0_chr7_86795799_f
+chr7	86800282	86800435	uc003uih.3_exon_4_0_chr7_86800311_f;uc003uii.3_exon_4_0_chr7_86800311_f;uc003uij.3_exon_4_0_chr7_86800311_f;uc003uil.3_exon_6_0_chr7_86800311_f;uc003uim.1_exon_3_0_chr7_86800311_f;uc003uin.3_exon_4_0_chr7_86800311_f;uc011khb.2_exon_3_0_chr7_86800311_f
+chr7	86802827	86803000	uc003uih.3_exon_5_0_chr7_86802851_f;uc003uii.3_exon_5_0_chr7_86802851_f;uc003uij.3_exon_5_0_chr7_86802851_f;uc003uil.3_exon_7_0_chr7_86802851_f;uc003uim.1_exon_4_0_chr7_86802851_f;uc003uin.3_exon_5_0_chr7_86802851_f;uc011khb.2_exon_4_0_chr7_86802851_f
+chr7	86803867	86804006	uc003uih.3_exon_6_0_chr7_86803909_f;uc003uii.3_exon_6_0_chr7_86803909_f;uc003uij.3_exon_6_0_chr7_86803909_f;uc003uil.3_exon_8_0_chr7_86803909_f;uc003uim.1_exon_5_0_chr7_86803909_f;uc003uin.3_exon_6_0_chr7_86803909_f;uc011khb.2_exon_5_0_chr7_86803909_f
+chr7	86808837	86809049	uc003uih.3_exon_7_0_chr7_86808861_f;uc003uii.3_exon_7_0_chr7_86808861_f;uc003uij.3_exon_7_0_chr7_86808861_f;uc003uil.3_exon_9_0_chr7_86808861_f;uc003uim.1_exon_6_0_chr7_86808861_f;uc003uin.3_exon_7_0_chr7_86808861_f;uc011khb.2_exon_6_0_chr7_86808861_f
+chr7	86810597	86810690	uc003uih.3_exon_8_0_chr7_86810625_f;uc003uii.3_exon_8_0_chr7_86810625_f;uc003uij.3_exon_8_0_chr7_86810625_f;uc003uil.3_exon_10_0_chr7_86810625_f;uc003uin.3_exon_8_0_chr7_86810625_f;uc011khb.2_exon_7_0_chr7_86810625_f
+chr7	86811307	86811689	uc003uih.3_exon_9_0_chr7_86811544_f;uc003uii.3_exon_9_0_chr7_86811333_f;uc003uij.3_exon_9_0_chr7_86811372_f;uc003uil.3_exon_11_0_chr7_86811544_f;uc003uin.3_exon_9_0_chr7_86811372_f;uc011khb.2_exon_8_0_chr7_86811544_f
+chr7	86813727	86813975	uc003uih.3_exon_10_0_chr7_86813713_f;uc003uii.3_exon_10_0_chr7_86813713_f;uc003uij.3_exon_10_0_chr7_86813713_f;uc003uil.3_exon_12_0_chr7_86813713_f;uc003uin.3_exon_10_0_chr7_86813713_f;uc011khb.2_exon_9_0_chr7_86813713_f
+chr7	86815122	86815324	uc003uih.3_exon_11_0_chr7_86815145_f;uc003uii.3_exon_11_0_chr7_86815145_f;uc003uij.3_exon_11_0_chr7_86815145_f;uc003uil.3_exon_13_0_chr7_86815145_f;uc003uin.3_exon_11_0_chr7_86815145_f;uc011khb.2_exon_10_0_chr7_86815145_f
+chr7	86817377	86817636	uc003uih.3_exon_12_0_chr7_86817408_f;uc003uii.3_exon_12_0_chr7_86817408_f;uc003uij.3_exon_12_0_chr7_86817408_f;uc003uil.3_exon_14_0_chr7_86817408_f;uc003uin.3_exon_12_0_chr7_86817408_f;uc011khb.2_exon_11_0_chr7_86817408_f
+chr7	86820227	86820372	uc003uih.3_exon_13_0_chr7_86820261_f;uc003uii.3_exon_13_0_chr7_86820261_f;uc003uij.3_exon_13_0_chr7_86820261_f;uc003uil.3_exon_15_0_chr7_86820261_f;uc003uin.3_exon_13_0_chr7_86820261_f;uc011khb.2_exon_12_0_chr7_86820261_f
+chr7	86822492	86822703	uc003uih.3_exon_14_0_chr7_86822514_f;uc003uii.3_exon_14_0_chr7_86822514_f;uc003uij.3_exon_14_0_chr7_86822514_f;uc003uil.3_exon_16_0_chr7_86822514_f;uc003uin.3_exon_14_0_chr7_86822514_f;uc011khb.2_exon_13_0_chr7_86822514_f
+chr7	86823017	86823430	uc003uih.3_exon_15_0_chr7_86823041_f;uc003uii.3_exon_15_0_chr7_86823041_f;uc003uij.3_exon_15_0_chr7_86823041_f;uc003uil.3_exon_17_0_chr7_86823041_f;uc003uin.3_exon_15_0_chr7_86823041_f;uc011khb.2_exon_14_0_chr7_86823041_f
+chr7	86823992	86824167	uc003uih.3_exon_16_0_chr7_86824000_f;uc003uii.3_exon_16_0_chr7_86824000_f;uc003uij.3_exon_16_0_chr7_86824000_f;uc003uil.3_exon_18_0_chr7_86824000_f;uc003uin.3_exon_16_0_chr7_86824000_f;uc011khb.2_exon_15_0_chr7_86824000_f
+chr7	86824322	86825657	uc003uih.3_exon_17_0_chr7_86824347_f;uc003uii.3_exon_17_0_chr7_86824347_f;uc003uij.3_exon_17_0_chr7_86824347_f;uc003uil.3_exon_19_0_chr7_86824347_f;uc003uin.3_exon_17_0_chr7_86824347_f;uc011khb.2_exon_16_0_chr7_86824347_f
+chr7	107405890	107406341	uc003ver.2_exon_0_0_chr7_107405912_r;uc003ves.2_exon_0_0_chr7_107405912_r
+chr7	107407980	107408114	uc003ver.2_exon_1_0_chr7_107408024_r;uc003ves.2_exon_1_0_chr7_107408024_r
+chr7	107408175	107408383	uc003ver.2_exon_2_0_chr7_107408211_r;uc003ves.2_exon_2_0_chr7_107408211_r
+chr7	107412445	107412587	uc003ver.2_exon_3_0_chr7_107412499_r;uc003ves.2_exon_3_0_chr7_107412499_r
+chr7	107414340	107414618	uc003ver.2_exon_4_0_chr7_107414365_r
+chr7	107415195	107415340	uc003ver.2_exon_5_0_chr7_107415222_r;uc003ves.2_exon_4_0_chr7_107415222_r
+chr7	107416870	107417021	uc003ver.2_exon_6_0_chr7_107416897_r;uc003ves.2_exon_5_0_chr7_107416897_r
+chr7	107417040	107417186	uc003ver.2_exon_7_0_chr7_107417082_r;uc003ves.2_exon_6_0_chr7_107417082_r
+chr7	107418595	107418767	uc003ver.2_exon_8_0_chr7_107418620_r;uc003ves.2_exon_7_0_chr7_107418620_r
+chr7	107420085	107420222	uc003ver.2_exon_9_0_chr7_107420113_r;uc003ves.2_exon_8_0_chr7_107420113_r
+chr7	107423200	107423348	uc003ver.2_exon_10_0_chr7_107423242_r;uc003ves.2_exon_9_0_chr7_107423242_r
+chr7	107423390	107423572	uc003ver.2_exon_11_0_chr7_107423425_r;uc003ves.2_exon_10_0_chr7_107423425_r
+chr7	107423620	107423833	uc003ver.2_exon_12_0_chr7_107423650_r;uc003ves.2_exon_11_0_chr7_107423650_r
+chr7	107427240	107427385	uc003ver.2_exon_13_0_chr7_107427272_r;uc003ves.2_exon_12_0_chr7_107427272_r
+chr7	107427770	107427982	uc003ver.2_exon_14_0_chr7_107427802_r;uc003ves.2_exon_13_0_chr7_107427802_r
+chr7	107429945	107430150	uc003ver.2_exon_15_0_chr7_107429969_r;uc003ves.2_exon_14_0_chr7_107429969_r
+chr7	107431460	107431716	uc003ver.2_exon_16_0_chr7_107431493_r;uc003ves.2_exon_15_0_chr7_107431493_r
+chr7	107432250	107432426	uc003ver.2_exon_17_0_chr7_107432275_r;uc003ves.2_exon_16_0_chr7_107432275_r
+chr7	107434165	107434339	uc003ver.2_exon_18_0_chr7_107434187_r;uc003ves.2_exon_17_0_chr7_107434187_r
+chr7	107434795	107435073	uc003ver.2_exon_19_0_chr7_107434824_r;uc003ves.2_exon_18_0_chr7_107434824_r
+chr7	107443530	107443722	uc003ver.2_exon_20_0_chr7_107443556_r;uc003ves.2_exon_19_0_chr7_107443556_r
+chr7	142568932	142569393	uc003wbw.1_exon_0_0_chr7_142568960_r;uc003wbx.2_exon_0_0_chr7_142568960_r;uc010lou.1_exon_0_0_chr7_142568960_r
+chr7	142569397	142569786	uc003wbw.1_exon_0_0_chr7_142568960_r;uc003wbx.2_exon_0_0_chr7_142568960_r;uc010lou.1_exon_0_0_chr7_142568960_r
+chr7	142570097	142570248	uc003wbw.1_exon_1_0_chr7_142570125_r;uc003wbx.2_exon_1_0_chr7_142570125_r;uc010lou.1_exon_1_0_chr7_142570125_r
+chr7	142571177	142571486	uc003wbw.1_exon_2_0_chr7_142571201_r;uc003wbx.2_exon_2_0_chr7_142571201_r;uc010lou.1_exon_2_0_chr7_142571201_r
+chr7	142571777	142571935	uc003wbw.1_exon_3_0_chr7_142571829_r;uc003wbx.2_exon_3_0_chr7_142571829_r;uc010lou.1_exon_3_0_chr7_142571829_r
+chr7	142572212	142572438	uc003wbw.1_exon_4_0_chr7_142572244_r;uc003wbx.2_exon_4_0_chr7_142572244_r;uc010lou.1_exon_4_0_chr7_142572244_r
+chr7	142572622	142572758	uc003wbw.1_exon_5_0_chr7_142572657_r;uc003wbx.2_exon_5_0_chr7_142572657_r;uc010lou.1_exon_5_0_chr7_142572657_r
+chr7	142572792	142572942	uc003wbw.1_exon_6_0_chr7_142572831_r;uc003wbx.2_exon_6_0_chr7_142572831_r;uc010lou.1_exon_6_0_chr7_142572831_r
+chr7	142573197	142573475	uc003wbw.1_exon_7_0_chr7_142573221_r;uc003wbx.2_exon_7_0_chr7_142573221_r;uc010lou.1_exon_7_0_chr7_142573221_r
+chr7	142573487	142573697	uc003wbw.1_exon_8_0_chr7_142573511_r;uc003wbx.2_exon_8_0_chr7_142573511_r;uc010lou.1_exon_8_0_chr7_142573511_r
+chr7	142574127	142574384	uc003wbw.1_exon_9_0_chr7_142574161_r;uc003wbx.2_exon_9_0_chr7_142574161_r;uc010lou.1_exon_9_0_chr7_142574161_r
+chr7	142574467	142574617	uc003wbx.2_exon_10_0_chr7_142574492_r;uc010lou.1_exon_10_0_chr7_142574492_r
+chr7	142574867	142575816	uc003wbx.2_exon_11_0_chr7_142574895_r;uc003wbx.2_exon_12_0_chr7_142575404_r;uc003wbx.2_exon_13_0_chr7_142575682_r;uc010lou.1_exon_11_0_chr7_142574895_r
+chr7	142583107	142583536	uc003wbx.2_exon_14_0_chr7_142583134_r
+chr7	142605622	142606003	uc003wby.1_exon_0_0_chr7_142605648_r
+chr7	142606627	142606808	uc003wby.1_exon_1_0_chr7_142606656_r
+chr7	142609612	142609934	uc003wby.1_exon_2_0_chr7_142609648_r
+chr7	142611762	142611916	uc003wby.1_exon_3_0_chr7_142611810_r
+chr7	142612027	142612242	uc003wby.1_exon_4_0_chr7_142612051_r
+chr7	142612442	142612581	uc003wby.1_exon_5_0_chr7_142612477_r
+chr7	142612612	142612772	uc003wby.1_exon_6_0_chr7_142612652_r
+chr7	142621867	142622850	uc003wby.1_exon_7_0_chr7_142622624_r;uc003wbz.3_exon_0_0_chr7_142621890_r
+chr7	142625147	142625374	uc003wby.1_exon_8_0_chr7_142625183_r;uc003wbz.3_exon_1_0_chr7_142625183_r
+chr7	142625752	142625972	uc003wby.1_exon_9_0_chr7_142625786_r;uc003wbz.3_exon_2_0_chr7_142625786_r
+chr7	142626092	142626236	uc003wby.1_exon_10_0_chr7_142626117_r;uc003wbz.3_exon_3_0_chr7_142626117_r
+chr7	142626487	142626686	uc003wby.1_exon_11_0_chr7_142626523_r;uc003wbz.3_exon_4_0_chr7_142626523_r
+chr7	142627117	142627313	uc003wby.1_exon_12_0_chr7_142627153_r;uc003wbz.3_exon_5_0_chr7_142627153_r
+chr7	142627417	142627551	uc003wby.1_exon_13_0_chr7_142627444_r;uc003wbz.3_exon_6_0_chr7_142627444_r
+chr7	142630402	142630694	uc003wby.1_exon_14_0_chr7_142630429_r;uc003wbz.3_exon_7_0_chr7_142630429_r
+chr7	142630727	142630864	uc003wby.1_exon_14_0_chr7_142630429_r;uc003wbz.3_exon_7_0_chr7_142630429_r
+chr8	38268623	38269612	uc003xlp.3_exon_0_0_chr8_38268656_r;uc010lwf.3_exon_0_0_chr8_38268656_r;uc010lwk.3_exon_0_0_chr8_38268656_r;uc011lbu.2_exon_0_0_chr8_38268656_r;uc011lbv.2_exon_0_0_chr8_38268656_r;uc011lbw.2_exon_0_0_chr8_38268656_r;uc022aua.1_exon_0_0_chr8_38268656_r;uc022aub.1_exon_0_0_chr8_38268656_r;uc022auc.1_exon_0_0_chr8_38268656_r;uc022aud.1_exon_0_0_chr8_38268656_r
+chr8	38269843	38270303	uc003xlp.3_exon_0_0_chr8_38268656_r;uc010lwf.3_exon_0_0_chr8_38268656_r;uc010lwk.3_exon_0_0_chr8_38268656_r;uc011lbu.2_exon_0_0_chr8_38268656_r;uc011lbv.2_exon_0_0_chr8_38268656_r;uc011lbw.2_exon_0_0_chr8_38268656_r;uc022aua.1_exon_0_0_chr8_38268656_r;uc022aub.1_exon_0_0_chr8_38268656_r;uc022auc.1_exon_0_0_chr8_38268656_r;uc022aud.1_exon_0_0_chr8_38268656_r
+chr8	38270373	38270723	uc003xlp.3_exon_0_0_chr8_38268656_r;uc010lwf.3_exon_0_0_chr8_38268656_r;uc010lwk.3_exon_0_0_chr8_38268656_r;uc011lbu.2_exon_0_0_chr8_38268656_r;uc011lbv.2_exon_0_0_chr8_38268656_r;uc011lbw.2_exon_0_0_chr8_38268656_r;uc022aua.1_exon_0_0_chr8_38268656_r;uc022aub.1_exon_0_0_chr8_38268656_r;uc022auc.1_exon_0_0_chr8_38268656_r;uc022aud.1_exon_0_0_chr8_38268656_r
+chr8	38270743	38271350	uc003xlp.3_exon_0_0_chr8_38268656_r;uc010lwf.3_exon_0_0_chr8_38268656_r;uc010lwk.3_exon_0_0_chr8_38268656_r;uc011lbu.2_exon_0_0_chr8_38268656_r;uc011lbv.2_exon_0_0_chr8_38268656_r;uc011lbw.2_exon_0_0_chr8_38268656_r;uc022aua.1_exon_0_0_chr8_38268656_r;uc022aub.1_exon_0_0_chr8_38268656_r;uc022auc.1_exon_0_0_chr8_38268656_r;uc022aud.1_exon_0_0_chr8_38268656_r
+chr8	38271413	38271567	uc003xlp.3_exon_1_0_chr8_38271436_r;uc010lwf.3_exon_1_0_chr8_38271436_r;uc010lwk.3_exon_1_0_chr8_38271436_r;uc011lbu.2_exon_1_0_chr8_38271436_r;uc011lbv.2_exon_1_0_chr8_38271436_r;uc011lbw.2_exon_1_0_chr8_38271436_r;uc022aua.1_exon_1_0_chr8_38271436_r;uc022aub.1_exon_1_0_chr8_38271436_r;uc022auc.1_exon_1_0_chr8_38271436_r;uc022aud.1_exon_1_0_chr8_38271436_r
+chr8	38271638	38271830	uc003xlp.3_exon_2_0_chr8_38271670_r;uc010lwf.3_exon_2_0_chr8_38271670_r;uc010lwk.3_exon_2_0_chr8_38271670_r;uc011lbu.2_exon_2_0_chr8_38271670_r;uc011lbv.2_exon_2_0_chr8_38271670_r;uc011lbw.2_exon_2_0_chr8_38271670_r;uc022aua.1_exon_2_0_chr8_38271670_r;uc022aub.1_exon_2_0_chr8_38271670_r;uc022auc.1_exon_2_0_chr8_38271670_r;uc022aud.1_exon_2_0_chr8_38271670_r
+chr8	38272033	38272174	uc003xlp.3_exon_3_0_chr8_38272077_r;uc010lwf.3_exon_3_0_chr8_38272077_r;uc010lwk.3_exon_3_0_chr8_38272077_r;uc011lbu.2_exon_3_0_chr8_38272077_r;uc011lbv.2_exon_3_0_chr8_38272077_r;uc011lbw.2_exon_3_0_chr8_38272077_r;uc022aua.1_exon_3_0_chr8_38272077_r;uc022aub.1_exon_3_0_chr8_38272077_r;uc022auc.1_exon_3_0_chr8_38272077_r;uc022aud.1_exon_3_0_chr8_38272077_r
+chr8	38272268	38272446	uc003xlp.3_exon_4_0_chr8_38272297_r;uc010lwf.3_exon_4_0_chr8_38272297_r;uc010lwk.3_exon_4_0_chr8_38272297_r;uc011lbu.2_exon_4_0_chr8_38272297_r;uc011lbv.2_exon_4_0_chr8_38272297_r;uc011lbw.2_exon_4_0_chr8_38272297_r;uc022aua.1_exon_4_0_chr8_38272297_r;uc022aub.1_exon_4_0_chr8_38272297_r;uc022auc.1_exon_4_0_chr8_38272297_r;uc022aud.1_exon_4_0_chr8_38272297_r
+chr8	38273338	38273621	uc003xlp.3_exon_5_0_chr8_38273388_r;uc010lwf.3_exon_5_0_chr8_38273363_r;uc010lwk.3_exon_5_0_chr8_38273388_r;uc011lbu.2_exon_5_0_chr8_38273388_r;uc011lbv.2_exon_5_0_chr8_38273388_r;uc011lbw.2_exon_5_0_chr8_38273388_r;uc022aua.1_exon_5_0_chr8_38273388_r;uc022aub.1_exon_5_0_chr8_38273388_r;uc022auc.1_exon_5_0_chr8_38273388_r;uc022aud.1_exon_5_0_chr8_38273388_r
+chr8	38274798	38274969	uc003xlp.3_exon_6_0_chr8_38274824_r;uc010lwf.3_exon_6_0_chr8_38274824_r;uc010lwk.3_exon_6_0_chr8_38274824_r;uc011lbu.2_exon_6_0_chr8_38274824_r;uc011lbv.2_exon_6_0_chr8_38274824_r;uc011lbw.2_exon_6_0_chr8_38274824_r;uc022aua.1_exon_6_0_chr8_38274824_r;uc022aub.1_exon_6_0_chr8_38274824_r;uc022auc.1_exon_6_0_chr8_38274824_r;uc022aud.1_exon_6_0_chr8_38274824_r
+chr8	38275353	38275526	uc003xlp.3_exon_7_0_chr8_38275388_r;uc010lwf.3_exon_7_0_chr8_38275388_r;uc010lwk.3_exon_7_0_chr8_38275388_r;uc011lbu.2_exon_7_0_chr8_38275388_r;uc011lbv.2_exon_7_0_chr8_38275388_r;uc011lbw.2_exon_7_0_chr8_38275388_r;uc022aua.1_exon_7_0_chr8_38275388_r;uc022aub.1_exon_7_0_chr8_38275388_r;uc022auc.1_exon_7_0_chr8_38275388_r;uc022aud.1_exon_7_0_chr8_38275388_r
+chr8	38275718	38275930	uc003xlp.3_exon_8_0_chr8_38275746_r;uc010lwf.3_exon_8_0_chr8_38275746_r;uc010lwk.3_exon_8_0_chr8_38275746_r;uc011lbu.2_exon_8_0_chr8_38275746_r;uc011lbv.2_exon_8_0_chr8_38275746_r;uc011lbw.2_exon_8_0_chr8_38275746_r;uc022aua.1_exon_8_0_chr8_38275746_r;uc022aub.1_exon_8_0_chr8_38275746_r;uc022auc.1_exon_8_0_chr8_38275746_r;uc022aud.1_exon_8_0_chr8_38275746_r
+chr8	38277018	38277278	uc003xlp.3_exon_9_0_chr8_38277057_r;uc010lwk.3_exon_9_0_chr8_38277057_r;uc011lbr.2_exon_0_0_chr8_38277051_r;uc011lbs.2_exon_0_0_chr8_38277051_r;uc011lbt.1_exon_0_0_chr8_38277057_r;uc011lbu.2_exon_9_0_chr8_38277051_r;uc011lbv.2_exon_9_0_chr8_38277051_r;uc011lbw.2_exon_9_0_chr8_38277051_r;uc022aua.1_exon_9_0_chr8_38277051_r;uc022aub.1_exon_9_0_chr8_38277051_r;uc022auc.1_exon_9_0_chr8_38277051_r;uc022aud.1_exon_9_0_chr8_38277051_r
+chr8	38279133	38279489	uc003xlp.3_exon_10_0_chr8_38279315_r;uc010lwk.3_exon_10_0_chr8_38279315_r;uc011lbr.2_exon_1_0_chr8_38279315_r;uc011lbs.2_exon_1_0_chr8_38279315_r;uc011lbu.2_exon_10_0_chr8_38279315_r;uc011lbv.2_exon_10_0_chr8_38279315_r;uc011lbw.2_exon_10_0_chr8_38279315_r;uc011lbx.1_exon_0_0_chr8_38279166_r;uc022aua.1_exon_10_0_chr8_38279315_r;uc022aub.1_exon_10_0_chr8_38279315_r;uc022auc.1_exon_10_0_chr8_38279315_r;uc022aud.1_exon_10_0_chr8_38279315_r
+chr8	38280518	38280723	uc011lbr.2_exon_2_0_chr8_38280543_r
+chr8	38281113	38281181	uc003xlp.3_exon_11_0_chr8_38282027_r;uc003xlu.3_exon_0_0_chr8_38280851_r;uc003xlv.3_exon_0_0_chr8_38280851_r;uc010lwk.3_exon_11_0_chr8_38282027_r;uc011lbr.2_exon_3_0_chr8_38282027_r;uc011lbs.2_exon_2_0_chr8_38282027_r;uc011lbt.1_exon_1_0_chr8_38282027_r;uc011lbu.2_exon_11_0_chr8_38282027_r;uc011lbv.2_exon_11_0_chr8_38282027_r;uc011lbw.2_exon_11_0_chr8_38282027_r;uc011lbx.1_exon_1_0_chr8_38282027_r;uc022aua.1_exon_11_0_chr8_38282027_r;uc022aub.1_exon_11_0_chr8_38282027_r;uc022auc.1_exon_11_0_chr8_38282027_r;uc022aud.1_exon_11_0_chr8_38282027_r
+chr8	38281193	38282237	uc003xlp.3_exon_11_0_chr8_38282027_r;uc003xlu.3_exon_0_0_chr8_38280851_r;uc003xlv.3_exon_0_0_chr8_38280851_r;uc010lwk.3_exon_11_0_chr8_38282027_r;uc011lbr.2_exon_3_0_chr8_38282027_r;uc011lbs.2_exon_2_0_chr8_38282027_r;uc011lbt.1_exon_1_0_chr8_38282027_r;uc011lbu.2_exon_11_0_chr8_38282027_r;uc011lbv.2_exon_11_0_chr8_38282027_r;uc011lbw.2_exon_11_0_chr8_38282027_r;uc011lbx.1_exon_1_0_chr8_38282027_r;uc022aua.1_exon_11_0_chr8_38282027_r;uc022aub.1_exon_11_0_chr8_38282027_r;uc022auc.1_exon_11_0_chr8_38282027_r;uc022aud.1_exon_11_0_chr8_38282027_r
+chr8	38283618	38283800	uc003xlp.3_exon_12_0_chr8_38283640_r;uc003xlu.3_exon_1_0_chr8_38283640_r;uc003xlv.3_exon_1_0_chr8_38283640_r;uc003xlw.1_exon_0_0_chr8_38283640_r;uc010lwk.3_exon_12_0_chr8_38283640_r;uc011lbr.2_exon_4_0_chr8_38283640_r;uc011lbs.2_exon_3_0_chr8_38283640_r;uc011lbt.1_exon_2_0_chr8_38283640_r;uc011lbu.2_exon_12_0_chr8_38283640_r;uc011lbv.2_exon_12_0_chr8_38283640_r;uc011lbw.2_exon_12_0_chr8_38283640_r;uc011lbx.1_exon_2_0_chr8_38283640_r;uc022aua.1_exon_12_0_chr8_38283640_r;uc022aub.1_exon_12_0_chr8_38283640_r;uc022auc.1_exon_12_0_chr8_38283640_r;uc022aud.1_exon_12_0_chr8_38283640_r
+chr8	38285408	38285620	uc003xlp.3_exon_13_0_chr8_38285439_r;uc003xlu.3_exon_2_0_chr8_38285439_r;uc003xlv.3_exon_2_0_chr8_38285439_r;uc003xlw.1_exon_1_0_chr8_38285439_r;uc010lwk.3_exon_13_0_chr8_38285439_r;uc011lbr.2_exon_5_0_chr8_38285439_r;uc011lbs.2_exon_4_0_chr8_38285439_r;uc011lbt.1_exon_3_0_chr8_38285439_r;uc011lbu.2_exon_13_0_chr8_38285439_r;uc011lbv.2_exon_13_0_chr8_38285439_r;uc011lbw.2_exon_13_0_chr8_38285439_r;uc011lbx.1_exon_3_0_chr8_38285439_r;uc022aua.1_exon_13_0_chr8_38285439_r;uc022aub.1_exon_13_0_chr8_38285439_r;uc022auc.1_exon_13_0_chr8_38285439_r;uc022aud.1_exon_13_0_chr8_38285439_r
+chr8	38285828	38285898	uc003xlp.3_exon_14_0_chr8_38285864_r;uc003xlu.3_exon_3_0_chr8_38285870_r;uc003xlv.3_exon_3_0_chr8_38285864_r;uc003xlw.1_exon_2_0_chr8_38285870_r;uc010lwk.3_exon_14_0_chr8_38285864_r;uc011lbr.2_exon_6_0_chr8_38285870_r;uc011lbs.2_exon_5_0_chr8_38285864_r;uc011lbt.1_exon_4_0_chr8_38285870_r;uc011lbu.2_exon_14_0_chr8_38285870_r;uc011lbv.2_exon_14_0_chr8_38285870_r;uc011lbw.2_exon_14_0_chr8_38285864_r;uc011lbx.1_exon_4_0_chr8_38285864_r;uc022aua.1_exon_14_0_chr8_38285864_r;uc022aub.1_exon_14_0_chr8_38285870_r;uc022auc.1_exon_14_0_chr8_38285864_r;uc022aud.1_exon_14_0_chr8_38285870_r
+chr8	38285928	38286001	uc003xlp.3_exon_14_0_chr8_38285864_r;uc003xlu.3_exon_3_0_chr8_38285870_r;uc003xlv.3_exon_3_0_chr8_38285864_r;uc003xlw.1_exon_2_0_chr8_38285870_r;uc010lwk.3_exon_14_0_chr8_38285864_r;uc011lbr.2_exon_6_0_chr8_38285870_r;uc011lbs.2_exon_5_0_chr8_38285864_r;uc011lbt.1_exon_4_0_chr8_38285870_r;uc011lbu.2_exon_14_0_chr8_38285870_r;uc011lbv.2_exon_14_0_chr8_38285870_r;uc011lbw.2_exon_14_0_chr8_38285864_r;uc011lbx.1_exon_4_0_chr8_38285864_r;uc022aua.1_exon_14_0_chr8_38285864_r;uc022aub.1_exon_14_0_chr8_38285870_r;uc022auc.1_exon_14_0_chr8_38285864_r;uc022aud.1_exon_14_0_chr8_38285870_r
+chr8	38286743	38286948	uc003xlw.1_exon_3_0_chr8_38286765_r;uc011lbs.2_exon_6_0_chr8_38286765_r
+chr8	38287178	38287492	uc003xlp.3_exon_15_0_chr8_38287200_r;uc003xlw.1_exon_4_0_chr8_38287200_r;uc010lwk.3_exon_15_0_chr8_38287200_r;uc011lbu.2_exon_15_0_chr8_38287200_r;uc011lbv.2_exon_15_0_chr8_38287200_r;uc022aua.1_exon_15_0_chr8_38287200_r;uc022aub.1_exon_15_0_chr8_38287200_r
+chr8	38297783	38297926	uc010lwk.3_exon_16_0_chr8_38297824_r
+chr8	38314848	38315080	uc003xlp.3_exon_16_0_chr8_38314874_r;uc003xlu.3_exon_4_0_chr8_38314874_r;uc003xlv.3_exon_4_0_chr8_38314874_r;uc003xlw.1_exon_5_0_chr8_38314874_r;uc010lwk.3_exon_17_0_chr8_38314874_r;uc011lbs.2_exon_7_0_chr8_38314874_r;uc011lbt.1_exon_5_0_chr8_38314874_r;uc011lbu.2_exon_16_0_chr8_38314874_r;uc011lbv.2_exon_16_0_chr8_38314874_r;uc011lbw.2_exon_15_0_chr8_38314874_r;uc011lbx.1_exon_5_0_chr8_38314874_r;uc022aua.1_exon_16_0_chr8_38314874_r;uc022aub.1_exon_16_0_chr8_38314874_r;uc022auc.1_exon_15_0_chr8_38314874_r;uc022aud.1_exon_15_0_chr8_38314874_r
+chr8	38318578	38318800	uc011lbu.2_exon_17_0_chr8_38318614_r
+chr8	38325168	38325363	uc011lbu.2_exon_18_0_chr8_38325190_r;uc011lbv.2_exon_17_0_chr8_38325190_r;uc011lbw.2_exon_16_0_chr8_38325190_r
+chr8	38325473	38326391	uc003xlp.3_exon_17_0_chr8_38325499_r;uc003xlu.3_exon_5_0_chr8_38325499_r;uc003xlv.3_exon_5_0_chr8_38325499_r;uc010lwk.3_exon_18_0_chr8_38325499_r;uc022aua.1_exon_17_0_chr8_38325499_r;uc022aub.1_exon_17_0_chr8_38325499_r;uc022auc.1_exon_16_0_chr8_38325499_r;uc022aud.1_exon_16_0_chr8_38325499_r
+chr8	92221702	92221804	uc003yex.3_exon_0_0_chr8_92221722_f;uc003yey.3_exon_0_0_chr8_92221722_f
+chr8	92231092	92231264	uc003yex.3_exon_1_0_chr8_92231118_f;uc003yey.3_exon_1_0_chr8_92231118_f
+chr8	92261482	92261667	uc003yez.3_exon_0_0_chr8_92261516_f;uc003yfa.3_exon_0_0_chr8_92261516_f
+chr8	92261752	92262110	uc003yex.3_exon_2_0_chr8_92261767_f;uc003yey.3_exon_2_0_chr8_92261847_f;uc003yez.3_exon_1_0_chr8_92261767_f;uc003yfa.3_exon_1_0_chr8_92261767_f
+chr8	92301332	92301516	uc003yex.3_exon_3_0_chr8_92301364_f;uc003yey.3_exon_3_0_chr8_92301364_f;uc003yez.3_exon_2_0_chr8_92301364_f;uc003yfa.3_exon_2_0_chr8_92301364_f
+chr8	92307727	92307952	uc003yex.3_exon_4_0_chr8_92307759_f;uc003yey.3_exon_4_0_chr8_92307759_f;uc003yez.3_exon_3_0_chr8_92307759_f;uc003yfa.3_exon_3_0_chr8_92307759_f
+chr8	92330412	92330638	uc003yex.3_exon_5_0_chr8_92330444_f;uc003yey.3_exon_5_0_chr8_92330444_f;uc003yez.3_exon_4_0_chr8_92330444_f;uc003yfa.3_exon_4_0_chr8_92330444_f
+chr8	92346497	92346702	uc003yex.3_exon_6_0_chr8_92346523_f;uc003yey.3_exon_6_0_chr8_92346523_f;uc003yez.3_exon_5_0_chr8_92346523_f;uc003yfa.3_exon_5_0_chr8_92346523_f
+chr8	92350347	92350478	uc003yex.3_exon_7_0_chr8_92350378_f;uc003yez.3_exon_6_0_chr8_92350378_f;uc003yfa.3_exon_6_0_chr8_92350378_f
+chr8	92352597	92352817	uc003yex.3_exon_8_0_chr8_92352632_f;uc003yey.3_exon_7_0_chr8_92352632_f;uc003yez.3_exon_7_0_chr8_92352632_f;uc003yfa.3_exon_7_0_chr8_92352632_f
+chr8	92355557	92355730	uc003yex.3_exon_9_0_chr8_92355581_f;uc003yey.3_exon_8_0_chr8_92355581_f;uc003yez.3_exon_8_0_chr8_92355581_f;uc003yfa.3_exon_8_0_chr8_92355581_f
+chr8	92364002	92364139	uc003yex.3_exon_10_0_chr8_92364038_f;uc003yey.3_exon_9_0_chr8_92364038_f;uc003yez.3_exon_9_0_chr8_92364038_f;uc003yfa.3_exon_9_0_chr8_92364038_f
+chr8	92365097	92365231	uc003yex.3_exon_11_0_chr8_92365129_f;uc003yey.3_exon_10_0_chr8_92365129_f;uc003yez.3_exon_10_0_chr8_92365129_f;uc003yfa.3_exon_10_0_chr8_92365129_f
+chr8	92374557	92374732	uc003yex.3_exon_12_0_chr8_92374581_f;uc003yey.3_exon_11_0_chr8_92374581_f;uc003yez.3_exon_11_0_chr8_92374581_f;uc003yfa.3_exon_11_0_chr8_92374581_f
+chr8	92375652	92375789	uc003yex.3_exon_13_0_chr8_92375700_f;uc003yey.3_exon_12_0_chr8_92375700_f;uc003yez.3_exon_12_0_chr8_92375700_f;uc003yfa.3_exon_12_0_chr8_92375700_f
+chr8	92378782	92378963	uc003yex.3_exon_14_0_chr8_92378808_f;uc003yey.3_exon_13_0_chr8_92378808_f;uc003yez.3_exon_13_0_chr8_92378808_f;uc003yfa.3_exon_13_0_chr8_92378808_f
+chr8	92381992	92382088	uc003yex.3_exon_15_0_chr8_92382013_f;uc003yey.3_exon_14_0_chr8_92382013_f;uc003yez.3_exon_14_0_chr8_92382013_f;uc003yfa.3_exon_14_0_chr8_92382013_f
+chr8	92401542	92401682	uc003yex.3_exon_16_0_chr8_92401566_f;uc003yey.3_exon_15_0_chr8_92401566_f;uc003yez.3_exon_15_0_chr8_92401566_f;uc003yfa.3_exon_15_0_chr8_92401566_f
+chr8	92405972	92406117	uc003yex.3_exon_17_0_chr8_92406025_f;uc003yey.3_exon_16_0_chr8_92406025_f;uc003yez.3_exon_16_0_chr8_92406025_f;uc003yfa.3_exon_16_0_chr8_92406025_f
+chr8	92406142	92406285	uc003yex.3_exon_18_0_chr8_92406164_f;uc003yey.3_exon_17_0_chr8_92406164_f;uc003yez.3_exon_17_0_chr8_92406164_f;uc003yfa.3_exon_17_0_chr8_92406164_f
+chr8	92406422	92406981	uc003yez.3_exon_18_0_chr8_92406446_f
+chr8	92407267	92407581	uc003yex.3_exon_19_0_chr8_92407290_f;uc003yey.3_exon_18_0_chr8_92407290_f;uc003yfa.3_exon_18_0_chr8_92407290_f
+chr8	92407592	92408291	uc003yex.3_exon_19_0_chr8_92407290_f;uc003yey.3_exon_18_0_chr8_92407290_f;uc003yfa.3_exon_18_0_chr8_92407290_f
+chr8	92408302	92410263	uc003yex.3_exon_19_0_chr8_92407290_f;uc003yey.3_exon_18_0_chr8_92407290_f;uc003yfa.3_exon_18_0_chr8_92407290_f
+chr8	92410272	92410417	uc003yex.3_exon_19_0_chr8_92407290_f;uc003yey.3_exon_18_0_chr8_92407290_f;uc003yfa.3_exon_18_0_chr8_92407290_f
+chr9	37422649	37422860	uc003zzt.1_exon_0_0_chr9_37422681_f;uc003zzu.1_exon_0_0_chr9_37422707_f;uc010mlu.4_exon_0_0_chr9_37422681_f;uc010mlv.1_exon_0_0_chr9_37422681_f
+chr9	37424809	37425003	uc003zzt.1_exon_1_0_chr9_37424842_f;uc003zzu.1_exon_1_0_chr9_37424842_f;uc010mlu.4_exon_1_0_chr9_37424842_f;uc010mlv.1_exon_1_0_chr9_37424842_f
+chr9	37425874	37426027	uc003zzt.1_exon_2_0_chr9_37425919_f;uc003zzu.1_exon_2_0_chr9_37425919_f;uc010mlu.4_exon_2_0_chr9_37425919_f;uc010mlv.1_exon_2_0_chr9_37425919_f
+chr9	37426509	37426676	uc003zzt.1_exon_3_0_chr9_37426535_f;uc003zzu.1_exon_3_0_chr9_37426535_f;uc010mlu.4_exon_3_0_chr9_37426535_f;uc010mlv.1_exon_3_0_chr9_37426535_f
+chr9	37428459	37429867	uc003zzt.1_exon_4_0_chr9_37428481_f;uc003zzt.1_exon_5_0_chr9_37429729_f;uc003zzu.1_exon_4_0_chr9_37428481_f;uc003zzu.1_exon_5_0_chr9_37429729_f;uc003zzv.1_exon_0_0_chr9_37428535_f;uc003zzw.1_exon_0_0_chr9_37428535_f;uc010mlu.4_exon_4_0_chr9_37428481_f;uc010mlv.1_exon_4_0_chr9_37428481_f;uc010mlv.1_exon_5_0_chr9_37429729_f
+chr9	37430484	37431184	uc003zzt.1_exon_6_0_chr9_37430508_f;uc003zzu.1_exon_6_0_chr9_37430508_f;uc003zzv.1_exon_1_0_chr9_37430508_f;uc003zzw.1_exon_1_0_chr9_37430508_f;uc010mlv.1_exon_6_0_chr9_37430508_f
+chr9	37431974	37432160	uc003zzt.1_exon_7_0_chr9_37432005_f;uc003zzu.1_exon_7_0_chr9_37432005_f;uc003zzw.1_exon_2_0_chr9_37432005_f
+chr9	37436649	37437004	uc003zzt.1_exon_8_0_chr9_37436658_f;uc003zzu.1_exon_8_0_chr9_37436658_f;uc003zzw.1_exon_3_0_chr9_37436658_f
+chr9	137208918	137209374	uc004cfa.1_exon_0_0_chr9_137208944_f
+chr9	137211223	137211385	uc004cfa.1_exon_1_0_chr9_137211284_f
+chr9	137218283	137218534	uc004cfb.2_exon_0_0_chr9_137218316_f
+chr9	137293443	137297948	uc004cfa.1_exon_2_0_chr9_137293478_f;uc004cfb.2_exon_1_0_chr9_137293478_f
+chr9	137298403	137299381	uc004cfc.1_exon_0_0_chr9_137298428_f
+chr9	137299963	137300182	uc004cfb.2_exon_2_0_chr9_137299995_f;uc004cfc.1_exon_1_0_chr9_137299995_f
+chr9	137300763	137301001	uc004cfb.2_exon_3_0_chr9_137300786_f;uc004cfc.1_exon_2_0_chr9_137300786_f
+chr9	137308978	137309183	uc004cfb.2_exon_4_0_chr9_137309004_f;uc004cfc.1_exon_3_0_chr9_137309004_f;uc004cfd.1_exon_0_0_chr9_137309004_f
+chr9	137313493	137313977	uc004cfb.2_exon_5_0_chr9_137313522_f;uc004cfc.1_exon_4_0_chr9_137313522_f;uc004cfd.1_exon_1_0_chr9_137313522_f
+chr9	137314013	137317216	uc004cfb.2_exon_5_0_chr9_137313522_f;uc004cfc.1_exon_4_0_chr9_137313522_f;uc004cfd.1_exon_1_0_chr9_137313522_f
+chr9	137317218	137317456	uc004cfb.2_exon_5_0_chr9_137313522_f;uc004cfc.1_exon_4_0_chr9_137313522_f;uc004cfd.1_exon_1_0_chr9_137313522_f
+chr9	137317458	137319007	uc004cfb.2_exon_5_0_chr9_137313522_f;uc004cfc.1_exon_4_0_chr9_137313522_f;uc004cfd.1_exon_1_0_chr9_137313522_f
+chr9	137320928	137321096	uc004cfb.2_exon_6_0_chr9_137320954_f;uc004cfc.1_exon_5_0_chr9_137320954_f
+chr9	137323713	137323863	uc004cfb.2_exon_7_0_chr9_137323751_f;uc004cfc.1_exon_6_0_chr9_137323751_f
+chr9	137325923	137326090	uc004cfb.2_exon_8_0_chr9_137325948_f;uc004cfc.1_exon_7_0_chr9_137325948_f
+chr9	137328288	137329580	uc004cfb.2_exon_9_0_chr9_137328313_f;uc004cfc.1_exon_8_0_chr9_137328313_f
+chr9	137329588	137330702	uc004cfb.2_exon_9_0_chr9_137328313_f;uc004cfc.1_exon_8_0_chr9_137328313_f
+chr9	137330703	137330977	uc004cfb.2_exon_9_0_chr9_137328313_f;uc004cfc.1_exon_8_0_chr9_137328313_f
+chr9	137330983	137331926	uc004cfb.2_exon_9_0_chr9_137328313_f;uc004cfc.1_exon_8_0_chr9_137328313_f
+chr9	137331953	137332440	uc004cfb.2_exon_9_0_chr9_137328313_f;uc004cfc.1_exon_8_0_chr9_137328313_f
+chr9	140123368	140124601	uc004cmc.1_exon_0_0_chr9_140123400_f
+chr9	140125178	140125563	uc004cmf.1_exon_0_0_chr9_140125385_f;uc011met.2_exon_0_0_chr9_140125209_f;uc022bqf.1_exon_0_0_chr9_140125209_f
+chr9	140126083	140126259	uc004cmc.1_exon_1_0_chr9_140126116_f;uc004cmf.1_exon_1_0_chr9_140126116_f;uc011met.2_exon_1_0_chr9_140126113_f;uc022bqf.1_exon_1_0_chr9_140126116_f
+chr9	140126483	140126632	uc004cmc.1_exon_2_0_chr9_140126524_f;uc004cmf.1_exon_2_0_chr9_140126524_f;uc011met.2_exon_2_0_chr9_140126524_f;uc022bqf.1_exon_2_0_chr9_140126524_f
+chr9	140127003	140127179	uc004cmc.1_exon_3_0_chr9_140127027_f;uc004cmf.1_exon_3_0_chr9_140127027_f;uc011met.2_exon_3_0_chr9_140127027_f;uc022bqf.1_exon_3_0_chr9_140127027_f
+chr9	140127183	140127397	uc004cmc.1_exon_4_0_chr9_140127208_f;uc004cmf.1_exon_4_0_chr9_140127236_f;uc011met.2_exon_4_0_chr9_140127236_f;uc022bqf.1_exon_4_0_chr9_140127236_f
+chr9	140127428	140127597	uc004cmc.1_exon_5_0_chr9_140127453_f;uc004cmf.1_exon_5_0_chr9_140127456_f;uc011met.2_exon_5_0_chr9_140127456_f;uc022bqf.1_exon_5_0_chr9_140127456_f
+chr9	140127633	140127880	uc004cmc.1_exon_6_0_chr9_140127661_f;uc004cmf.1_exon_6_0_chr9_140127661_f;uc011met.2_exon_6_0_chr9_140127661_f;uc022bqf.1_exon_6_0_chr9_140127661_f
+chr9	140128053	140128205	uc004cmc.1_exon_7_0_chr9_140128085_f;uc004cmf.1_exon_7_0_chr9_140128085_f;uc011met.2_exon_7_0_chr9_140128085_f;uc022bqf.1_exon_7_0_chr9_140128085_f
+chr9	140128293	140128751	uc004cmc.1_exon_8_0_chr9_140128315_f;uc004cmf.1_exon_8_0_chr9_140128315_f;uc004cmf.1_exon_9_0_chr9_140128561_f;uc011met.2_exon_8_0_chr9_140128315_f;uc011met.2_exon_9_0_chr9_140128561_f;uc022bqf.1_exon_8_0_chr9_140128315_f;uc022bqf.1_exon_9_0_chr9_140128561_f
+chr9	140128843	140129017	uc004cmf.1_exon_10_0_chr9_140128868_f;uc011met.2_exon_10_0_chr9_140128868_f;uc022bqf.1_exon_10_0_chr9_140128868_f
+chr9	140129023	140129221	uc004cmf.1_exon_11_0_chr9_140129059_f;uc011met.2_exon_11_0_chr9_140129059_f;uc022bqf.1_exon_11_0_chr9_140129059_f
+chr9	140130378	140131034	uc004cmf.1_exon_12_0_chr9_140130404_f;uc011met.2_exon_12_0_chr9_140130404_f;uc022bqf.1_exon_12_0_chr9_140130404_f
+chr10	75670838	75671015	uc001jwa.3_exon_0_0_chr10_75670862_f;uc001jwb.3_exon_0_0_chr10_75670918_f;uc001jwc.3_exon_0_0_chr10_75670918_f;uc010qkw.2_exon_0_0_chr10_75670862_f;uc010qkx.2_exon_0_0_chr10_75670862_f
+chr10	75671248	75671707	uc001jwa.3_exon_1_0_chr10_75671283_f;uc001jwb.3_exon_1_0_chr10_75671283_f;uc001jwc.3_exon_1_0_chr10_75671283_f;uc009xrq.1_exon_0_0_chr10_75671283_f;uc010qkw.2_exon_1_0_chr10_75671283_f;uc010qkx.2_exon_1_0_chr10_75671283_f
+chr10	75671728	75671881	uc001jwa.3_exon_2_0_chr10_75671799_f;uc001jwb.3_exon_2_0_chr10_75671799_f;uc001jwc.3_exon_2_0_chr10_75671799_f;uc009xrq.1_exon_1_0_chr10_75671799_f
+chr10	75671948	75672118	uc001jwa.3_exon_3_0_chr10_75671973_f;uc001jwb.3_exon_3_0_chr10_75671973_f;uc001jwc.3_exon_3_0_chr10_75671973_f;uc010qkw.2_exon_2_0_chr10_75671973_f;uc010qkx.2_exon_2_0_chr10_75671973_f
+chr10	75672658	75672867	uc001jwa.3_exon_4_0_chr10_75672682_f;uc001jwb.3_exon_4_0_chr10_75672682_f;uc001jwc.3_exon_4_0_chr10_75672682_f;uc009xrq.1_exon_2_0_chr10_75672682_f;uc010qkw.2_exon_3_0_chr10_75672682_f;uc010qkx.2_exon_3_0_chr10_75672682_f
+chr10	75673008	75673171	uc001jwa.3_exon_5_0_chr10_75673048_f;uc001jwb.3_exon_5_0_chr10_75673048_f;uc001jwc.3_exon_5_0_chr10_75673048_f;uc009xrq.1_exon_3_0_chr10_75673048_f;uc010qkw.2_exon_4_0_chr10_75673048_f;uc010qkx.2_exon_4_0_chr10_75673048_f
+chr10	75673263	75673554	uc001jwa.3_exon_6_0_chr10_75673297_f;uc001jwb.3_exon_6_0_chr10_75673297_f;uc001jwc.3_exon_6_0_chr10_75673297_f;uc009xrq.1_exon_4_0_chr10_75673297_f;uc010qkw.2_exon_5_0_chr10_75673297_f;uc010qkx.2_exon_5_0_chr10_75673297_f
+chr10	75673703	75673919	uc001jwa.3_exon_7_0_chr10_75673738_f;uc001jwb.3_exon_7_0_chr10_75673738_f;uc001jwc.3_exon_7_0_chr10_75673738_f;uc009xrq.1_exon_5_0_chr10_75673738_f;uc010qkw.2_exon_6_0_chr10_75673738_f;uc010qkx.2_exon_6_0_chr10_75673738_f
+chr10	75674498	75674716	uc001jwa.3_exon_8_0_chr10_75674534_f;uc001jwb.3_exon_8_0_chr10_75674534_f;uc001jwc.3_exon_8_0_chr10_75674534_f;uc009xrq.1_exon_6_0_chr10_75674534_f;uc010qkw.2_exon_7_0_chr10_75674534_f;uc010qkx.2_exon_7_0_chr10_75674534_f
+chr10	75674973	75675200	uc001jwa.3_exon_9_0_chr10_75675009_f;uc001jwb.3_exon_9_0_chr10_75675009_f;uc001jwc.3_exon_9_0_chr10_75675009_f;uc009xrq.1_exon_7_0_chr10_75675009_f;uc010qkw.2_exon_8_0_chr10_75675009_f;uc010qkx.2_exon_8_0_chr10_75675009_f
+chr10	75676123	75676833	uc001jwa.3_exon_10_0_chr10_75676147_f;uc001jwb.3_exon_10_0_chr10_75676147_f;uc001jwb.3_exon_11_0_chr10_75676763_f;uc001jwc.3_exon_10_0_chr10_75676147_f;uc009xrq.1_exon_8_0_chr10_75676147_f;uc010qkw.2_exon_9_0_chr10_75676147_f;uc010qkx.2_exon_9_0_chr10_75676147_f
+chr10	75676848	75677193	uc001jwa.3_exon_10_0_chr10_75676147_f;uc001jwb.3_exon_10_0_chr10_75676147_f;uc001jwb.3_exon_11_0_chr10_75676763_f;uc001jwc.3_exon_10_0_chr10_75676147_f;uc009xrq.1_exon_8_0_chr10_75676147_f;uc010qkw.2_exon_9_0_chr10_75676147_f;uc010qkx.2_exon_9_0_chr10_75676147_f
+chr10	75677208	75677282	uc001jwa.3_exon_10_0_chr10_75676147_f;uc001jwb.3_exon_10_0_chr10_75676147_f;uc001jwb.3_exon_11_0_chr10_75676763_f;uc001jwc.3_exon_10_0_chr10_75676147_f;uc009xrq.1_exon_8_0_chr10_75676147_f;uc010qkw.2_exon_9_0_chr10_75676147_f;uc010qkx.2_exon_9_0_chr10_75676147_f
+chr10	97471501	97471576	uc001kle.1_exon_0_0_chr10_97471536_f;uc001kli.4_exon_0_0_chr10_97471536_f
+chr10	97471631	97471740	uc001kle.1_exon_0_0_chr10_97471536_f;uc001kli.4_exon_0_0_chr10_97471536_f
+chr10	97515386	97515548	uc010qoj.2_exon_0_0_chr10_97515409_f;uc010qok.2_exon_0_0_chr10_97515409_f;uc010qol.2_exon_0_0_chr10_97515409_f
+chr10	97515691	97516048	uc001klh.4_exon_0_0_chr10_97515673_f;uc009xva.3_exon_0_0_chr10_97515673_f;uc010qom.2_exon_0_0_chr10_97515673_f;uc010qon.2_exon_0_0_chr10_97515673_f
+chr10	97570366	97570574	uc010qol.2_exon_1_0_chr10_97570390_f
+chr10	97582971	97583139	uc001kle.1_exon_1_0_chr10_97582994_f;uc001klh.4_exon_1_0_chr10_97582994_f;uc001kli.4_exon_1_0_chr10_97582994_f;uc009xva.3_exon_1_0_chr10_97582994_f;uc010qoj.2_exon_1_0_chr10_97582994_f;uc010qom.2_exon_1_0_chr10_97582994_f;uc010qon.2_exon_1_0_chr10_97582994_f
+chr10	97599426	97599596	uc001kle.1_exon_2_0_chr10_97599448_f;uc001klh.4_exon_2_0_chr10_97599448_f;uc001kli.4_exon_2_0_chr10_97599448_f;uc010qoj.2_exon_2_0_chr10_97599448_f;uc010qok.2_exon_1_0_chr10_97599448_f;uc010qol.2_exon_2_0_chr10_97599448_f;uc010qom.2_exon_2_0_chr10_97599448_f;uc010qon.2_exon_2_0_chr10_97599448_f
+chr10	97602076	97602288	uc001kle.1_exon_3_0_chr10_97602101_f;uc001klh.4_exon_3_0_chr10_97602101_f;uc001kli.4_exon_3_0_chr10_97602101_f;uc010qoj.2_exon_3_0_chr10_97602101_f;uc010qok.2_exon_2_0_chr10_97602101_f;uc010qol.2_exon_3_0_chr10_97602101_f;uc010qom.2_exon_3_0_chr10_97602101_f
+chr10	97604201	97604432	uc001kle.1_exon_4_0_chr10_97604233_f;uc001klh.4_exon_4_0_chr10_97604233_f;uc001kli.4_exon_4_0_chr10_97604233_f;uc009xva.3_exon_2_0_chr10_97604233_f;uc010qoj.2_exon_4_0_chr10_97604233_f;uc010qok.2_exon_3_0_chr10_97604233_f;uc010qol.2_exon_4_0_chr10_97604233_f;uc010qom.2_exon_4_0_chr10_97604233_f;uc010qon.2_exon_3_0_chr10_97604233_f
+chr10	97605086	97605752	uc001kle.1_exon_5_0_chr10_97605114_f;uc001klh.4_exon_5_0_chr10_97605114_f;uc001kli.4_exon_5_0_chr10_97605114_f;uc009xva.3_exon_3_0_chr10_97605114_f;uc010qoj.2_exon_5_0_chr10_97605114_f;uc010qok.2_exon_4_0_chr10_97605114_f;uc010qol.2_exon_5_0_chr10_97605114_f;uc010qom.2_exon_5_0_chr10_97605114_f;uc010qon.2_exon_4_0_chr10_97605114_f
+chr10	97605766	97605869	uc001kle.1_exon_5_0_chr10_97605114_f;uc001klh.4_exon_5_0_chr10_97605114_f;uc001kli.4_exon_5_0_chr10_97605114_f;uc009xva.3_exon_3_0_chr10_97605114_f;uc010qoj.2_exon_5_0_chr10_97605114_f;uc010qok.2_exon_4_0_chr10_97605114_f;uc010qol.2_exon_5_0_chr10_97605114_f;uc010qom.2_exon_5_0_chr10_97605114_f;uc010qon.2_exon_4_0_chr10_97605114_f
+chr10	97607181	97607497	uc001klh.4_exon_6_0_chr10_97607203_f;uc001kli.4_exon_6_0_chr10_97607203_f;uc009xva.3_exon_4_0_chr10_97607203_f;uc010qoj.2_exon_6_0_chr10_97607203_f;uc010qok.2_exon_5_0_chr10_97607203_f;uc010qol.2_exon_6_0_chr10_97607203_f;uc010qom.2_exon_6_0_chr10_97607326_f;uc010qon.2_exon_5_0_chr10_97607203_f
+chr10	97620191	97620384	uc001klh.4_exon_7_0_chr10_97620226_f;uc001kli.4_exon_7_0_chr10_97620226_f;uc009xva.3_exon_5_0_chr10_97620226_f;uc010qoj.2_exon_7_0_chr10_97620226_f;uc010qok.2_exon_6_0_chr10_97620226_f;uc010qol.2_exon_7_0_chr10_97620226_f;uc010qom.2_exon_7_0_chr10_97620226_f;uc010qon.2_exon_6_0_chr10_97620226_f
+chr10	97624446	97624629	uc001klh.4_exon_8_0_chr10_97624481_f;uc001kli.4_exon_8_0_chr10_97624481_f;uc009xva.3_exon_6_0_chr10_97624481_f;uc010qoj.2_exon_8_0_chr10_97624481_f;uc010qok.2_exon_7_0_chr10_97624481_f;uc010qol.2_exon_8_0_chr10_97624481_f;uc010qom.2_exon_8_0_chr10_97624481_f;uc010qon.2_exon_7_0_chr10_97624481_f
+chr10	97625901	97626957	uc001klh.4_exon_9_0_chr10_97625934_f;uc001kli.4_exon_9_0_chr10_97625934_f;uc009xva.3_exon_7_0_chr10_97625934_f;uc010qoj.2_exon_9_0_chr10_97625934_f;uc010qok.2_exon_8_0_chr10_97625934_f;uc010qol.2_exon_9_0_chr10_97625934_f;uc010qom.2_exon_9_0_chr10_97625934_f;uc010qon.2_exon_8_0_chr10_97625934_f
+chr10	97626971	97628607	uc001klh.4_exon_9_0_chr10_97625934_f;uc001kli.4_exon_9_0_chr10_97625934_f;uc009xva.3_exon_7_0_chr10_97625934_f;uc010qoj.2_exon_9_0_chr10_97625934_f;uc010qok.2_exon_8_0_chr10_97625934_f;uc010qol.2_exon_9_0_chr10_97625934_f;uc010qom.2_exon_9_0_chr10_97625934_f;uc010qon.2_exon_8_0_chr10_97625934_f
+chr10	97628626	97629002	uc001klh.4_exon_9_0_chr10_97625934_f;uc001kli.4_exon_9_0_chr10_97625934_f;uc009xva.3_exon_7_0_chr10_97625934_f;uc010qoj.2_exon_9_0_chr10_97625934_f;uc010qok.2_exon_8_0_chr10_97625934_f;uc010qol.2_exon_9_0_chr10_97625934_f;uc010qom.2_exon_9_0_chr10_97625934_f;uc010qon.2_exon_8_0_chr10_97625934_f
+chr10	97629296	97629372	uc001klh.4_exon_9_0_chr10_97625934_f;uc001kli.4_exon_9_0_chr10_97625934_f;uc009xva.3_exon_7_0_chr10_97625934_f;uc010qoj.2_exon_9_0_chr10_97625934_f;uc010qok.2_exon_8_0_chr10_97625934_f;uc010qol.2_exon_9_0_chr10_97625934_f;uc010qom.2_exon_9_0_chr10_97625934_f;uc010qon.2_exon_8_0_chr10_97625934_f
+chr10	97629376	97630057	uc001klh.4_exon_9_0_chr10_97625934_f;uc001kli.4_exon_9_0_chr10_97625934_f;uc009xva.3_exon_7_0_chr10_97625934_f;uc010qoj.2_exon_9_0_chr10_97625934_f;uc010qok.2_exon_8_0_chr10_97625934_f;uc010qol.2_exon_9_0_chr10_97625934_f;uc010qom.2_exon_9_0_chr10_97625934_f;uc010qon.2_exon_8_0_chr10_97625934_f
+chr10	97630326	97631839	uc001klh.4_exon_9_0_chr10_97625934_f;uc001kli.4_exon_9_0_chr10_97625934_f;uc009xva.3_exon_7_0_chr10_97625934_f;uc010qoj.2_exon_9_0_chr10_97625934_f;uc010qok.2_exon_8_0_chr10_97625934_f;uc010qol.2_exon_9_0_chr10_97625934_f;uc010qom.2_exon_9_0_chr10_97625934_f;uc010qon.2_exon_8_0_chr10_97625934_f
+chr10	97631846	97632817	uc001klh.4_exon_9_0_chr10_97625934_f;uc001kli.4_exon_9_0_chr10_97625934_f;uc009xva.3_exon_7_0_chr10_97625934_f;uc010qoj.2_exon_9_0_chr10_97625934_f;uc010qok.2_exon_8_0_chr10_97625934_f;uc010qol.2_exon_9_0_chr10_97625934_f;uc010qom.2_exon_9_0_chr10_97625934_f;uc010qon.2_exon_8_0_chr10_97625934_f
+chr10	97632821	97633478	uc001klh.4_exon_9_0_chr10_97625934_f;uc001kli.4_exon_9_0_chr10_97625934_f;uc009xva.3_exon_7_0_chr10_97625934_f;uc010qoj.2_exon_9_0_chr10_97625934_f;uc010qok.2_exon_8_0_chr10_97625934_f;uc010qol.2_exon_9_0_chr10_97625934_f;uc010qom.2_exon_9_0_chr10_97625934_f;uc010qon.2_exon_8_0_chr10_97625934_f
+chr10	97633551	97633697	uc001klh.4_exon_9_0_chr10_97625934_f;uc001kli.4_exon_9_0_chr10_97625934_f;uc009xva.3_exon_7_0_chr10_97625934_f;uc010qoj.2_exon_9_0_chr10_97625934_f;uc010qok.2_exon_8_0_chr10_97625934_f;uc010qol.2_exon_9_0_chr10_97625934_f;uc010qom.2_exon_9_0_chr10_97625934_f;uc010qon.2_exon_8_0_chr10_97625934_f
+chr10	97635711	97637043	uc001klh.4_exon_9_0_chr10_97625934_f;uc001kli.4_exon_9_0_chr10_97625934_f;uc009xva.3_exon_7_0_chr10_97625934_f;uc010qoj.2_exon_9_0_chr10_97625934_f;uc010qok.2_exon_8_0_chr10_97625934_f;uc010qol.2_exon_9_0_chr10_97625934_f;uc010qom.2_exon_9_0_chr10_97625934_f;uc010qon.2_exon_8_0_chr10_97625934_f
+chr10	99344066	99344697	uc001knx.2_exon_0_0_chr10_99344102_f;uc001kny.3_exon_0_0_chr10_99344102_f;uc001knz.3_exon_0_0_chr10_99344102_f
+chr10	99358496	99358683	uc001knx.2_exon_1_0_chr10_99358532_f;uc001kny.3_exon_1_0_chr10_99358532_f
+chr10	99358816	99360710	uc001knx.2_exon_2_0_chr10_99358846_f;uc001kny.3_exon_2_0_chr10_99358846_f;uc001kny.3_exon_3_0_chr10_99359437_f;uc001kny.3_exon_4_0_chr10_99359824_f
+chr10	99361581	99361766	uc001kny.3_exon_5_0_chr10_99361614_f;uc001knz.3_exon_1_0_chr10_99361614_f
+chr10	99371231	99371758	uc001kny.3_exon_6_0_chr10_99371267_f;uc001knz.3_exon_2_0_chr10_99371267_f
+chr10	99372051	99372579	uc001kny.3_exon_6_0_chr10_99371267_f;uc001knz.3_exon_2_0_chr10_99371267_f
+chr11	18415904	18416193	uc001mok.3_exon_0_0_chr11_18415936_f;uc001mol.3_exon_0_0_chr11_18415936_f;uc009yho.2_exon_0_0_chr11_18415936_f;uc010rdc.1_exon_0_0_chr11_18415936_f;uc021qep.1_exon_0_0_chr11_18415936_f
+chr11	18417789	18418174	uc010rdd.2_exon_0_0_chr11_18417813_f
+chr11	18418339	18418411	uc001mok.3_exon_1_0_chr11_18418366_f;uc001mol.3_exon_1_0_chr11_18418366_f;uc009yho.2_exon_1_0_chr11_18418366_f;uc010rdc.1_exon_1_0_chr11_18418366_f;uc010rdd.2_exon_1_0_chr11_18418366_f;uc021qep.1_exon_1_0_chr11_18418366_f
+chr11	18418479	18418557	uc001mok.3_exon_1_0_chr11_18418366_f;uc001mol.3_exon_1_0_chr11_18418366_f;uc009yho.2_exon_1_0_chr11_18418366_f;uc010rdc.1_exon_1_0_chr11_18418366_f;uc010rdd.2_exon_1_0_chr11_18418366_f;uc021qep.1_exon_1_0_chr11_18418366_f
+chr11	18420954	18421031	uc001mok.3_exon_2_0_chr11_18420978_f;uc001mol.3_exon_2_0_chr11_18420978_f;uc010rdc.1_exon_2_0_chr11_18420978_f;uc010rdd.2_exon_2_0_chr11_18420978_f;uc021qep.1_exon_2_0_chr11_18420978_f
+chr11	18421049	18421122	uc001mok.3_exon_2_0_chr11_18420978_f;uc001mol.3_exon_2_0_chr11_18420978_f;uc010rdc.1_exon_2_0_chr11_18420978_f;uc010rdd.2_exon_2_0_chr11_18420978_f;uc021qep.1_exon_2_0_chr11_18420978_f
+chr11	18422394	18422469	uc001mok.3_exon_3_0_chr11_18422384_f;uc001mol.3_exon_3_0_chr11_18422384_f;uc009yho.2_exon_2_0_chr11_18422384_f;uc010rdd.2_exon_3_0_chr11_18422384_f;uc021qep.1_exon_3_0_chr11_18422384_f
+chr11	18424439	18424510	uc001mok.3_exon_4_0_chr11_18424387_f;uc001mol.3_exon_4_0_chr11_18424387_f;uc009yho.2_exon_3_0_chr11_18424387_f;uc010rdc.1_exon_3_0_chr11_18424387_f;uc010rdd.2_exon_4_0_chr11_18424387_f;uc021qep.1_exon_4_0_chr11_18424387_f
+chr11	18425209	18425286	uc001mok.3_exon_5_0_chr11_18425241_f;uc001mol.3_exon_5_0_chr11_18425241_f;uc009yho.2_exon_4_0_chr11_18425241_f;uc010rdc.1_exon_4_0_chr11_18425241_f;uc010rdd.2_exon_5_0_chr11_18425241_f;uc021qep.1_exon_5_0_chr11_18425241_f
+chr11	18427079	18427156	uc001mok.3_exon_6_0_chr11_18426996_f;uc009yho.2_exon_5_0_chr11_18426996_f;uc010rdc.1_exon_5_0_chr11_18426996_f;uc010rdd.2_exon_6_0_chr11_18426996_f
+chr11	18428744	18428821	uc001mok.3_exon_7_0_chr11_18428664_f;uc001mol.3_exon_6_0_chr11_18428664_f;uc009yho.2_exon_6_0_chr11_18428664_f;uc010rdc.1_exon_6_0_chr11_18428664_f;uc010rdd.2_exon_7_0_chr11_18428664_f;uc021qep.1_exon_6_0_chr11_18428786_f
+chr11	18428909	18428983	uc001mok.3_exon_7_0_chr11_18428664_f;uc001mol.3_exon_6_0_chr11_18428664_f;uc009yho.2_exon_6_0_chr11_18428664_f;uc010rdc.1_exon_6_0_chr11_18428664_f;uc010rdd.2_exon_7_0_chr11_18428664_f;uc021qep.1_exon_6_0_chr11_18428786_f
+chr11	18428994	18429138	uc001mok.3_exon_7_0_chr11_18428664_f;uc001mol.3_exon_6_0_chr11_18428664_f;uc009yho.2_exon_6_0_chr11_18428664_f;uc010rdc.1_exon_6_0_chr11_18428664_f;uc010rdd.2_exon_7_0_chr11_18428664_f;uc021qep.1_exon_6_0_chr11_18428786_f
+chr11	18429279	18429355	uc001mok.3_exon_7_0_chr11_18428664_f;uc001mol.3_exon_6_0_chr11_18428664_f;uc009yho.2_exon_6_0_chr11_18428664_f;uc010rdc.1_exon_6_0_chr11_18428664_f;uc010rdd.2_exon_7_0_chr11_18428664_f;uc021qep.1_exon_6_0_chr11_18428786_f
+chr11	18429374	18429754	uc001mok.3_exon_7_0_chr11_18428664_f;uc001mol.3_exon_6_0_chr11_18428664_f;uc009yho.2_exon_6_0_chr11_18428664_f;uc010rdc.1_exon_6_0_chr11_18428664_f;uc010rdd.2_exon_7_0_chr11_18428664_f;uc021qep.1_exon_6_0_chr11_18428786_f
+chr11	35160383	35160956	uc001mvu.3_exon_0_0_chr11_35160417_f;uc001mvv.3_exon_0_0_chr11_35160417_f;uc001mvw.3_exon_0_0_chr11_35160417_f;uc001mvx.3_exon_0_0_chr11_35160417_f;uc001mvy.3_exon_0_0_chr11_35160417_f;uc001mwc.4_exon_0_0_chr11_35160417_f;uc009ykh.3_exon_0_0_chr11_35160417_f;uc010rer.2_exon_0_0_chr11_35160417_f;uc021qfw.1_exon_0_0_chr11_35160417_f
+chr11	35198093	35198307	uc001mvu.3_exon_1_0_chr11_35198122_f;uc001mvv.3_exon_1_0_chr11_35198122_f;uc001mvw.3_exon_1_0_chr11_35198122_f;uc001mvx.3_exon_1_0_chr11_35198122_f;uc001mvy.3_exon_1_0_chr11_35198122_f;uc001mwc.4_exon_1_0_chr11_35198122_f;uc009ykh.3_exon_1_0_chr11_35198122_f;uc010rer.2_exon_1_0_chr11_35198122_f;uc021qfw.1_exon_1_0_chr11_35198122_f
+chr11	35201788	35201977	uc001mvu.3_exon_2_0_chr11_35201821_f;uc001mvv.3_exon_2_0_chr11_35201821_f;uc001mvw.3_exon_2_0_chr11_35201821_f;uc001mvx.3_exon_2_0_chr11_35201821_f;uc001mwc.4_exon_2_0_chr11_35201821_f;uc010rer.2_exon_2_0_chr11_35201821_f;uc021qfw.1_exon_2_0_chr11_35201821_f
+chr11	35208338	35208475	uc001mvu.3_exon_3_0_chr11_35208379_f;uc001mvv.3_exon_3_0_chr11_35208379_f;uc001mvw.3_exon_3_0_chr11_35208379_f;uc001mvx.3_exon_3_0_chr11_35208379_f;uc001mwc.4_exon_3_0_chr11_35208379_f;uc009ykh.3_exon_2_0_chr11_35208379_f;uc010rer.2_exon_3_0_chr11_35208379_f;uc021qfw.1_exon_3_0_chr11_35208379_f
+chr11	35211353	35211648	uc001mvu.3_exon_4_0_chr11_35211382_f;uc001mvv.3_exon_4_0_chr11_35211382_f;uc001mvw.3_exon_4_0_chr11_35211382_f;uc001mvx.3_exon_4_0_chr11_35211382_f;uc001mwc.4_exon_4_0_chr11_35211382_f;uc009ykh.3_exon_3_0_chr11_35211382_f;uc010rer.2_exon_4_0_chr11_35211382_f;uc010res.2_exon_0_0_chr11_35211382_f;uc010ret.2_exon_0_0_chr11_35211382_f;uc010reu.2_exon_0_0_chr11_35211382_f;uc021qfw.1_exon_4_0_chr11_35211382_f
+chr11	35218258	35218448	uc001mvu.3_exon_5_0_chr11_35218293_f
+chr11	35219633	35219833	uc001mvu.3_exon_6_0_chr11_35219668_f;uc001mvv.3_exon_5_0_chr11_35219668_f;uc010reu.2_exon_1_0_chr11_35219668_f
+chr11	35222603	35222773	uc001mvu.3_exon_7_0_chr11_35222629_f;uc001mvv.3_exon_6_0_chr11_35222629_f
+chr11	35223183	35223374	uc001mvu.3_exon_8_0_chr11_35223218_f;uc001mvv.3_exon_7_0_chr11_35223218_f
+chr11	35226028	35226210	uc001mvu.3_exon_9_0_chr11_35226059_f;uc001mvv.3_exon_8_0_chr11_35226059_f
+chr11	35227623	35227812	uc001mvu.3_exon_10_0_chr11_35227659_f;uc001mvv.3_exon_9_0_chr11_35227659_f;uc010res.2_exon_1_0_chr11_35227659_f
+chr11	35229628	35229772	uc001mvu.3_exon_11_0_chr11_35229652_f;uc001mvv.3_exon_10_0_chr11_35229652_f;uc001mvw.3_exon_5_0_chr11_35229652_f;uc010res.2_exon_2_0_chr11_35229652_f;uc010reu.2_exon_2_0_chr11_35229652_f
+chr11	35231483	35231618	uc001mvu.3_exon_12_0_chr11_35231512_f;uc001mvv.3_exon_11_0_chr11_35231512_f;uc001mvw.3_exon_6_0_chr11_35231512_f;uc010res.2_exon_3_0_chr11_35231512_f;uc010ret.2_exon_1_0_chr11_35231512_f;uc010reu.2_exon_3_0_chr11_35231512_f
+chr11	35232758	35233007	uc001mvu.3_exon_13_0_chr11_35232793_f;uc001mvv.3_exon_12_0_chr11_35232793_f;uc001mvw.3_exon_7_0_chr11_35232793_f;uc001mwc.4_exon_5_0_chr11_35232793_f;uc010res.2_exon_4_0_chr11_35232793_f;uc010ret.2_exon_2_0_chr11_35232793_f;uc010reu.2_exon_4_0_chr11_35232793_f
+chr11	35236348	35236508	uc001mvu.3_exon_14_0_chr11_35236399_f;uc001mvv.3_exon_13_0_chr11_35236399_f;uc001mvw.3_exon_8_0_chr11_35236399_f;uc001mvx.3_exon_5_0_chr11_35236399_f;uc001mwc.4_exon_6_0_chr11_35236399_f;uc009ykh.3_exon_4_0_chr11_35236399_f;uc010res.2_exon_5_0_chr11_35236399_f;uc010ret.2_exon_3_0_chr11_35236399_f;uc010reu.2_exon_5_0_chr11_35236399_f;uc021qfw.1_exon_5_0_chr11_35236399_f
+chr11	35240823	35240952	uc001mvu.3_exon_15_0_chr11_35240863_f;uc001mvv.3_exon_14_0_chr11_35240863_f;uc001mvw.3_exon_9_0_chr11_35240863_f;uc001mvx.3_exon_6_0_chr11_35240863_f;uc001mwc.4_exon_7_0_chr11_35240863_f;uc009ykh.3_exon_5_0_chr11_35240863_f;uc010rer.2_exon_5_0_chr11_35240863_f;uc021qfw.1_exon_6_0_chr11_35240863_f
+chr11	35243163	35243313	uc001mvu.3_exon_16_0_chr11_35243201_f;uc001mvv.3_exon_15_0_chr11_35243201_f;uc001mvw.3_exon_10_0_chr11_35243201_f;uc001mvx.3_exon_7_0_chr11_35243201_f;uc001mvy.3_exon_2_0_chr11_35243252_f;uc001mwc.4_exon_8_0_chr11_35243201_f;uc009ykh.3_exon_6_0_chr11_35243201_f;uc010rer.2_exon_6_0_chr11_35243201_f;uc021qfw.1_exon_7_0_chr11_35243201_f
+chr11	35243898	35244134	uc021qfw.1_exon_8_0_chr11_35243922_f
+chr11	35244163	35244902	uc021qfw.1_exon_8_0_chr11_35243922_f
+chr11	35250653	35251757	uc001mvu.3_exon_17_0_chr11_35250676_f;uc001mvv.3_exon_16_0_chr11_35250676_f;uc001mvw.3_exon_11_0_chr11_35250676_f;uc001mvx.3_exon_8_0_chr11_35250676_f;uc001mvy.3_exon_3_0_chr11_35250676_f;uc001mwc.4_exon_9_0_chr11_35250676_f;uc009ykh.3_exon_7_0_chr11_35250676_f;uc010rer.2_exon_7_0_chr11_35250676_f
+chr11	35251778	35252616	uc001mvu.3_exon_17_0_chr11_35250676_f;uc001mvv.3_exon_16_0_chr11_35250676_f;uc001mvw.3_exon_11_0_chr11_35250676_f;uc001mvx.3_exon_8_0_chr11_35250676_f;uc001mvy.3_exon_3_0_chr11_35250676_f;uc001mwc.4_exon_9_0_chr11_35250676_f;uc009ykh.3_exon_7_0_chr11_35250676_f;uc010rer.2_exon_7_0_chr11_35250676_f
+chr11	35252628	35252726	uc001mvu.3_exon_17_0_chr11_35250676_f;uc001mvv.3_exon_16_0_chr11_35250676_f;uc001mvw.3_exon_11_0_chr11_35250676_f;uc001mvx.3_exon_8_0_chr11_35250676_f;uc001mvy.3_exon_3_0_chr11_35250676_f;uc001mwc.4_exon_9_0_chr11_35250676_f;uc009ykh.3_exon_7_0_chr11_35250676_f;uc010rer.2_exon_7_0_chr11_35250676_f
+chr11	35252728	35253001	uc001mvu.3_exon_17_0_chr11_35250676_f;uc001mvv.3_exon_16_0_chr11_35250676_f;uc001mvw.3_exon_11_0_chr11_35250676_f;uc001mvx.3_exon_8_0_chr11_35250676_f;uc001mvy.3_exon_3_0_chr11_35250676_f;uc001mwc.4_exon_9_0_chr11_35250676_f;uc009ykh.3_exon_7_0_chr11_35250676_f;uc010rer.2_exon_7_0_chr11_35250676_f
+chr11	35253008	35253465	uc001mvu.3_exon_17_0_chr11_35250676_f;uc001mvv.3_exon_16_0_chr11_35250676_f;uc001mvw.3_exon_11_0_chr11_35250676_f;uc001mvx.3_exon_8_0_chr11_35250676_f;uc001mvy.3_exon_3_0_chr11_35250676_f;uc001mwc.4_exon_9_0_chr11_35250676_f;uc009ykh.3_exon_7_0_chr11_35250676_f;uc010rer.2_exon_7_0_chr11_35250676_f
+chr11	35253468	35253980	uc001mvu.3_exon_17_0_chr11_35250676_f;uc001mvv.3_exon_16_0_chr11_35250676_f;uc001mvw.3_exon_11_0_chr11_35250676_f;uc001mvx.3_exon_8_0_chr11_35250676_f;uc001mvy.3_exon_3_0_chr11_35250676_f;uc001mwc.4_exon_9_0_chr11_35250676_f;uc009ykh.3_exon_7_0_chr11_35250676_f;uc010rer.2_exon_7_0_chr11_35250676_f
+chr11	46740711	46740904	uc001ndf.4_exon_0_0_chr11_46740743_f
+chr11	46741221	46741433	uc001ndf.4_exon_1_0_chr11_46741252_f
+chr11	46742006	46742142	uc001ndf.4_exon_2_0_chr11_46742073_f
+chr11	46742291	46742430	uc001ndf.4_exon_3_0_chr11_46742340_f
+chr11	46744706	46744849	uc001ndf.4_exon_4_0_chr11_46744730_f
+chr11	46744906	46745077	uc001ndf.4_exon_5_0_chr11_46744932_f
+chr11	46747386	46747733	uc001ndf.4_exon_6_0_chr11_46747409_f
+chr11	46748021	46748194	uc001ndf.4_exon_7_0_chr11_46748048_f
+chr11	46748236	46748414	uc001ndf.4_exon_8_0_chr11_46748261_f
+chr11	46749511	46749729	uc001ndf.4_exon_9_0_chr11_46749546_f
+chr11	46750191	46750411	uc001ndf.4_exon_10_0_chr11_46750214_f
+chr11	46750896	46751152	uc001ndf.4_exon_11_0_chr11_46750930_f
+chr11	46760561	46760704	uc001ndf.4_exon_12_0_chr11_46760598_f
+chr11	46760781	46761075	uc001ndf.4_exon_13_0_chr11_46760815_f
+chr12	4477368	4477626	uc001qmq.1_exon_0_0_chr12_4477393_r
+chr12	4477638	4477703	uc001qmq.1_exon_0_0_chr12_4477393_r
+chr12	4477723	4479137	uc001qmq.1_exon_0_0_chr12_4477393_r
+chr12	4479158	4479954	uc001qmq.1_exon_0_0_chr12_4477393_r
+chr12	4481738	4481891	uc001qmq.1_exon_1_0_chr12_4481760_r
+chr12	4488513	4488931	uc001qmq.1_exon_2_0_chr12_4488538_r
+chr12	15034222	15034479	uc001rcn.2_exon_0_0_chr12_15034115_r;uc021qvr.1_exon_0_0_chr12_15034115_r
+chr12	15034482	15035252	uc001rcn.2_exon_0_0_chr12_15034115_r;uc021qvr.1_exon_0_0_chr12_15034115_r
+chr12	15035862	15036015	uc001rcn.2_exon_1_0_chr12_15035906_r;uc021qvr.1_exon_1_0_chr12_15035906_r
+chr12	15037092	15037191	uc001rcn.2_exon_2_0_chr12_15037147_r;uc021qvr.1_exon_2_0_chr12_15037147_r
+chr12	15037712	15037847	uc021qvr.1_exon_3_0_chr12_15037747_r
+chr12	15038642	15038879	uc001rcn.2_exon_3_0_chr12_15038665_r;uc021qvr.1_exon_4_0_chr12_15038665_r
+chr12	48235286	48236272	uc001rql.3_exon_0_0_chr12_48235320_r;uc001rqm.3_exon_0_0_chr12_48235320_r;uc001rqn.3_exon_0_0_chr12_48235320_r;uc010slq.2_exon_0_0_chr12_48235320_r
+chr12	48236541	48238813	uc001rql.3_exon_0_0_chr12_48235320_r;uc001rqm.3_exon_0_0_chr12_48235320_r;uc001rqn.3_exon_0_0_chr12_48235320_r;uc010slq.2_exon_0_0_chr12_48235320_r
+chr12	48240096	48240276	uc001rql.3_exon_1_0_chr12_48240118_r;uc001rqm.3_exon_1_0_chr12_48240118_r;uc001rqn.3_exon_1_0_chr12_48240118_r;uc010slq.2_exon_1_0_chr12_48240118_r
+chr12	48240416	48240597	uc001rql.3_exon_2_0_chr12_48240440_r;uc001rqm.3_exon_2_0_chr12_48240440_r;uc001rqn.3_exon_2_0_chr12_48240440_r;uc010slq.2_exon_2_0_chr12_48240440_r
+chr12	48249391	48249604	uc001rql.3_exon_3_0_chr12_48249413_r;uc001rqm.3_exon_3_0_chr12_48249413_r;uc001rqn.3_exon_3_0_chr12_48249413_r;uc010slq.2_exon_3_0_chr12_48249413_r
+chr12	48250876	48251066	uc001rql.3_exon_4_0_chr12_48250912_r;uc001rqm.3_exon_4_0_chr12_48250912_r;uc001rqn.3_exon_4_0_chr12_48250912_r;uc010slq.2_exon_4_0_chr12_48250912_r
+chr12	48251261	48251505	uc001rql.3_exon_5_0_chr12_48251287_r;uc001rqm.3_exon_5_0_chr12_48251287_r;uc001rqn.3_exon_5_0_chr12_48251287_r;uc010slq.2_exon_5_0_chr12_48251287_r
+chr12	48258801	48258981	uc001rql.3_exon_6_0_chr12_48258830_r;uc001rqm.3_exon_6_0_chr12_48258830_r;uc001rqn.3_exon_6_0_chr12_48258830_r;uc010slq.2_exon_6_0_chr12_48258830_r
+chr12	48272576	48272924	uc001rql.3_exon_7_0_chr12_48272751_r;uc001rqm.3_exon_7_0_chr12_48272751_r;uc001rqn.3_exon_7_0_chr12_48272751_r;uc010slq.2_exon_7_0_chr12_48272599_r
+chr12	48276436	48276584	uc001rql.3_exon_8_0_chr12_48276477_r;uc001rqm.3_exon_8_0_chr12_48276477_r;uc001rqn.3_exon_8_0_chr12_48276477_r
+chr12	48293586	48293768	uc001rqm.3_exon_9_0_chr12_48293620_r
+chr12	48298321	48298849	uc001rql.3_exon_9_0_chr12_48298347_r;uc001rqm.3_exon_10_0_chr12_48298738_r;uc001rqn.3_exon_9_0_chr12_48298738_r;uc010slq.2_exon_8_0_chr12_48298738_r
+chr12	58156082	58157045	uc001spz.1_exon_0_0_chr12_58156117_r;uc001sqa.1_exon_0_0_chr12_58156117_r
+chr12	58157367	58157623	uc001spz.1_exon_1_0_chr12_58157394_r;uc001sqa.1_exon_1_0_chr12_58157394_r
+chr12	58157837	58157981	uc001spz.1_exon_2_0_chr12_58157881_r;uc001sqa.1_exon_2_0_chr12_58157881_r
+chr12	58158127	58158744	uc001spz.1_exon_3_0_chr12_58158161_r;uc001spz.1_exon_4_0_chr12_58158537_r;uc001sqa.1_exon_3_0_chr12_58158161_r;uc001sqa.1_exon_4_0_chr12_58158537_r;uc001sqb.1_exon_0_0_chr12_58158161_r;uc001sqb.1_exon_1_0_chr12_58158537_r;uc001sqc.1_exon_0_0_chr12_58158161_r
+chr12	58158767	58159498	uc001spz.1_exon_5_0_chr12_58158794_r;uc001spz.1_exon_6_0_chr12_58159080_r;uc001sqa.1_exon_5_0_chr12_58158794_r;uc001sqb.1_exon_2_0_chr12_58158794_r;uc001sqb.1_exon_3_0_chr12_58159080_r;uc001sqc.1_exon_1_0_chr12_58158794_r;uc001sqc.1_exon_2_0_chr12_58159080_r;uc021qzp.1_exon_0_0_chr12_58159069_r
+chr12	58159767	58160017	uc001spz.1_exon_7_0_chr12_58159790_r;uc001sqa.1_exon_6_0_chr12_58159790_r
+chr12	58160602	58160997	uc001spz.1_exon_8_0_chr12_58160630_r;uc001sqa.1_exon_7_0_chr12_58160630_r
+chr13	33590172	33590484	uc001uur.1_exon_0_0_chr13_33590201_f
+chr13	33590542	33591426	uc001uus.3_exon_0_0_chr13_33590571_f
+chr13	33627877	33628442	uc001uur.1_exon_1_0_chr13_33627904_f;uc001uus.3_exon_1_0_chr13_33627904_f
+chr13	33629152	33629547	uc001uur.1_exon_2_0_chr13_33629184_f;uc001uus.3_exon_2_0_chr13_33629184_f
+chr13	33634782	33635954	uc001uur.1_exon_3_0_chr13_33634816_f;uc001uus.3_exon_3_0_chr13_33634816_f
+chr13	33637957	33639809	uc001uus.3_exon_4_0_chr13_33637986_f
+chr13	33639827	33639898	uc001uus.3_exon_4_0_chr13_33637986_f
+chr13	33639907	33640289	uc001uus.3_exon_4_0_chr13_33637986_f
+chr13	42614133	42614289	uc010tfh.2_exon_0_0_chr13_42614172_f
+chr13	42622818	42623125	uc001uyl.2_exon_0_0_chr13_42622843_f;uc001uym.2_exon_0_0_chr13_42622843_f;uc010tfh.2_exon_1_0_chr13_42622898_f
+chr13	42701568	42701739	uc001uyl.2_exon_1_0_chr13_42701599_f;uc001uym.2_exon_1_0_chr13_42701599_f;uc010tfh.2_exon_2_0_chr13_42701599_f
+chr13	42703653	42703793	uc001uyl.2_exon_2_0_chr13_42703688_f;uc001uym.2_exon_2_0_chr13_42703688_f;uc010tfh.2_exon_3_0_chr13_42703688_f
+chr13	42712148	42712328	uc001uyn.2_exon_0_0_chr13_42712178_f;uc001uyo.2_exon_0_0_chr13_42712178_f;uc001uyp.3_exon_0_0_chr13_42712178_f;uc010tfi.2_exon_0_0_chr13_42712178_f;uc010tfj.2_exon_0_0_chr13_42712178_f
+chr13	42714498	42714993	uc001uyp.3_exon_1_0_chr13_42714533_f
+chr13	42727863	42728077	uc001uyp.3_exon_2_0_chr13_42727886_f
+chr13	42729403	42729550	uc001uyl.2_exon_3_0_chr13_42729427_f;uc001uym.2_exon_3_0_chr13_42729427_f;uc001uyn.2_exon_1_0_chr13_42729427_f;uc001uyo.2_exon_1_0_chr13_42729427_f;uc001uyp.3_exon_3_0_chr13_42729427_f;uc010tfh.2_exon_4_0_chr13_42729427_f;uc010tfi.2_exon_1_0_chr13_42729427_f;uc010tfj.2_exon_1_0_chr13_42729427_f
+chr13	42729773	42729953	uc001uyl.2_exon_4_0_chr13_42729803_f;uc001uym.2_exon_4_0_chr13_42729803_f;uc001uyn.2_exon_2_0_chr13_42729803_f;uc001uyo.2_exon_2_0_chr13_42729803_f;uc001uyp.3_exon_4_0_chr13_42729803_f;uc010tfh.2_exon_5_0_chr13_42729803_f;uc010tfi.2_exon_2_0_chr13_42729803_f;uc010tfj.2_exon_2_0_chr13_42729803_f
+chr13	42733393	42733535	uc001uyl.2_exon_5_0_chr13_42733402_f;uc001uym.2_exon_5_0_chr13_42733402_f;uc001uyn.2_exon_3_0_chr13_42733402_f;uc001uyo.2_exon_3_0_chr13_42733402_f;uc001uyp.3_exon_5_0_chr13_42733402_f;uc010tfh.2_exon_6_0_chr13_42733402_f;uc010tfj.2_exon_3_0_chr13_42733402_f
+chr13	42734123	42734297	uc001uyl.2_exon_6_0_chr13_42734147_f;uc001uym.2_exon_6_0_chr13_42734147_f;uc001uyn.2_exon_4_0_chr13_42734147_f;uc001uyo.2_exon_4_0_chr13_42734147_f;uc001uyp.3_exon_6_0_chr13_42734147_f;uc010tfh.2_exon_7_0_chr13_42734147_f;uc010tfj.2_exon_4_0_chr13_42734147_f
+chr13	42739443	42739582	uc001uyl.2_exon_7_0_chr13_42739467_f;uc001uym.2_exon_7_0_chr13_42739467_f;uc001uyn.2_exon_5_0_chr13_42739467_f;uc001uyo.2_exon_5_0_chr13_42739467_f;uc001uyp.3_exon_7_0_chr13_42739467_f;uc010tfh.2_exon_8_0_chr13_42739467_f;uc010tfi.2_exon_3_0_chr13_42739467_f;uc010tfj.2_exon_5_0_chr13_42739467_f
+chr13	42740623	42740832	uc001uyl.2_exon_8_0_chr13_42740651_f;uc001uym.2_exon_8_0_chr13_42740651_f;uc001uyn.2_exon_6_0_chr13_42740651_f;uc001uyo.2_exon_6_0_chr13_42740651_f;uc001uyp.3_exon_8_0_chr13_42740651_f;uc010tfh.2_exon_9_0_chr13_42740651_f;uc010tfi.2_exon_4_0_chr13_42740651_f;uc010tfj.2_exon_6_0_chr13_42740651_f
+chr13	42742553	42742727	uc001uyl.2_exon_9_0_chr13_42742576_f;uc001uym.2_exon_9_0_chr13_42742576_f;uc001uyn.2_exon_7_0_chr13_42742576_f;uc001uyo.2_exon_7_0_chr13_42742576_f;uc001uyp.3_exon_9_0_chr13_42742576_f;uc010tfh.2_exon_10_0_chr13_42742576_f;uc010tfi.2_exon_5_0_chr13_42742576_f;uc010tfj.2_exon_7_0_chr13_42742576_f
+chr13	42742793	42742960	uc001uyl.2_exon_10_0_chr13_42742815_f;uc001uym.2_exon_10_0_chr13_42742815_f;uc001uyn.2_exon_8_0_chr13_42742815_f;uc001uyo.2_exon_8_0_chr13_42742815_f;uc001uyp.3_exon_10_0_chr13_42742815_f;uc010tfh.2_exon_11_0_chr13_42742815_f;uc010tfi.2_exon_6_0_chr13_42742815_f;uc010tfj.2_exon_8_0_chr13_42742815_f
+chr13	42748158	42748294	uc001uyl.2_exon_11_0_chr13_42748196_f;uc001uym.2_exon_11_0_chr13_42748196_f;uc001uyn.2_exon_9_0_chr13_42748196_f;uc001uyo.2_exon_9_0_chr13_42748196_f;uc001uyp.3_exon_11_0_chr13_42748196_f;uc010tfh.2_exon_12_0_chr13_42748196_f;uc010tfi.2_exon_7_0_chr13_42748196_f;uc010tfj.2_exon_9_0_chr13_42748196_f
+chr13	42752228	42752377	uc001uyl.2_exon_12_0_chr13_42752271_f;uc001uym.2_exon_12_0_chr13_42752271_f;uc001uyn.2_exon_10_0_chr13_42752271_f;uc001uyo.2_exon_10_0_chr13_42752271_f;uc001uyp.3_exon_12_0_chr13_42752271_f;uc010tfh.2_exon_13_0_chr13_42752271_f;uc010tfi.2_exon_8_0_chr13_42752271_f;uc010tfj.2_exon_10_0_chr13_42752271_f
+chr13	42761163	42761293	uc001uyl.2_exon_13_0_chr13_42761185_f;uc001uym.2_exon_13_0_chr13_42761185_f;uc001uyn.2_exon_11_0_chr13_42761185_f;uc001uyo.2_exon_11_0_chr13_42761185_f;uc001uyp.3_exon_13_0_chr13_42761185_f;uc010tfh.2_exon_14_0_chr13_42761185_f;uc010tfi.2_exon_9_0_chr13_42761185_f;uc010tfj.2_exon_11_0_chr13_42761185_f
+chr13	42763143	42763456	uc001uyl.2_exon_14_0_chr13_42763172_f;uc001uym.2_exon_14_0_chr13_42763172_f;uc001uyn.2_exon_12_0_chr13_42763172_f;uc001uyo.2_exon_12_0_chr13_42763172_f;uc001uyp.3_exon_14_0_chr13_42763172_f;uc010tfh.2_exon_15_0_chr13_42763172_f;uc010tfi.2_exon_10_0_chr13_42763172_f;uc010tfj.2_exon_12_0_chr13_42763172_f
+chr13	42764513	42764681	uc001uyl.2_exon_15_0_chr13_42764539_f;uc001uym.2_exon_15_0_chr13_42764539_f;uc001uyn.2_exon_13_0_chr13_42764539_f;uc001uyo.2_exon_13_0_chr13_42764539_f;uc001uyp.3_exon_15_0_chr13_42764539_f;uc010tfh.2_exon_16_0_chr13_42764539_f;uc010tfi.2_exon_11_0_chr13_42764539_f;uc010tfj.2_exon_13_0_chr13_42764539_f
+chr13	42768993	42769180	uc001uyl.2_exon_16_0_chr13_42769021_f;uc001uym.2_exon_16_0_chr13_42769021_f;uc001uyn.2_exon_14_0_chr13_42769021_f;uc001uyo.2_exon_14_0_chr13_42769021_f;uc001uyp.3_exon_16_0_chr13_42769021_f;uc010tfh.2_exon_17_0_chr13_42769021_f;uc010tfi.2_exon_12_0_chr13_42769021_f;uc010tfj.2_exon_14_0_chr13_42769021_f
+chr13	42769863	42770042	uc001uyp.3_exon_17_0_chr13_42769899_f
+chr13	42772588	42772755	uc001uyl.2_exon_17_0_chr13_42772614_f;uc001uym.2_exon_17_0_chr13_42772614_f;uc001uyn.2_exon_15_0_chr13_42772614_f;uc001uyo.2_exon_15_0_chr13_42772614_f;uc001uyp.3_exon_18_0_chr13_42772614_f;uc010tfh.2_exon_18_0_chr13_42772614_f;uc010tfi.2_exon_13_0_chr13_42772614_f;uc010tfj.2_exon_15_0_chr13_42772614_f
+chr13	42773678	42773842	uc001uyl.2_exon_18_0_chr13_42773702_f;uc001uym.2_exon_18_0_chr13_42773702_f;uc001uyn.2_exon_16_0_chr13_42773702_f;uc001uyo.2_exon_16_0_chr13_42773702_f;uc001uyp.3_exon_19_0_chr13_42773702_f;uc010tfh.2_exon_19_0_chr13_42773702_f;uc010tfi.2_exon_14_0_chr13_42773702_f;uc010tfj.2_exon_16_0_chr13_42773702_f
+chr13	42773923	42774050	uc001uyl.2_exon_19_0_chr13_42773949_f;uc001uym.2_exon_19_0_chr13_42773949_f;uc001uyn.2_exon_17_0_chr13_42773949_f;uc001uyo.2_exon_17_0_chr13_42773949_f;uc001uyp.3_exon_20_0_chr13_42773949_f;uc010tfh.2_exon_20_0_chr13_42773949_f;uc010tfi.2_exon_15_0_chr13_42773949_f;uc010tfj.2_exon_17_0_chr13_42773949_f
+chr13	42780163	42780305	uc001uyl.2_exon_20_0_chr13_42780175_f;uc001uym.2_exon_20_0_chr13_42780175_f;uc001uyn.2_exon_18_0_chr13_42780175_f;uc001uyo.2_exon_18_0_chr13_42780175_f;uc001uyp.3_exon_21_0_chr13_42780175_f;uc010tfh.2_exon_21_0_chr13_42780175_f;uc010tfi.2_exon_16_0_chr13_42780175_f;uc010tfj.2_exon_18_0_chr13_42780175_f
+chr13	42783063	42783245	uc001uyl.2_exon_21_0_chr13_42783095_f;uc001uym.2_exon_21_0_chr13_42783095_f;uc001uyn.2_exon_19_0_chr13_42783095_f;uc001uyo.2_exon_19_0_chr13_42783095_f;uc001uyp.3_exon_22_0_chr13_42783095_f;uc010tfh.2_exon_22_0_chr13_42783095_f;uc010tfi.2_exon_17_0_chr13_42783095_f;uc010tfj.2_exon_19_0_chr13_42783095_f
+chr13	42783443	42783614	uc001uyl.2_exon_22_0_chr13_42783467_f;uc001uym.2_exon_22_0_chr13_42783467_f;uc001uyn.2_exon_20_0_chr13_42783467_f;uc001uyo.2_exon_20_0_chr13_42783467_f;uc001uyp.3_exon_23_0_chr13_42783467_f;uc010tfh.2_exon_23_0_chr13_42783467_f;uc010tfi.2_exon_18_0_chr13_42783467_f;uc010tfj.2_exon_20_0_chr13_42783467_f
+chr13	42784713	42784928	uc001uyl.2_exon_23_0_chr13_42784738_f;uc001uym.2_exon_23_0_chr13_42784738_f;uc001uyn.2_exon_21_0_chr13_42784738_f;uc001uyo.2_exon_21_0_chr13_42784738_f;uc001uyp.3_exon_24_0_chr13_42784738_f;uc010tfh.2_exon_24_0_chr13_42784738_f;uc010tfi.2_exon_19_0_chr13_42784738_f;uc010tfj.2_exon_21_0_chr13_42784738_f
+chr13	42788618	42788786	uc001uyl.2_exon_24_0_chr13_42788643_f;uc001uym.2_exon_24_0_chr13_42788643_f;uc001uyn.2_exon_22_0_chr13_42788643_f;uc001uyo.2_exon_22_0_chr13_42788643_f;uc001uyp.3_exon_25_0_chr13_42788643_f;uc010tfh.2_exon_25_0_chr13_42788643_f;uc010tfi.2_exon_20_0_chr13_42788643_f;uc010tfj.2_exon_22_0_chr13_42788643_f
+chr13	42789678	42789822	uc001uyl.2_exon_25_0_chr13_42789711_f;uc001uym.2_exon_25_0_chr13_42789711_f;uc001uyn.2_exon_23_0_chr13_42789711_f;uc001uyo.2_exon_23_0_chr13_42789711_f;uc001uyp.3_exon_26_0_chr13_42789711_f;uc010tfh.2_exon_26_0_chr13_42789711_f;uc010tfi.2_exon_21_0_chr13_42789711_f;uc010tfj.2_exon_23_0_chr13_42789711_f
+chr13	42793338	42793514	uc001uyl.2_exon_26_0_chr13_42793366_f;uc001uym.2_exon_26_0_chr13_42793366_f;uc001uyn.2_exon_24_0_chr13_42793366_f;uc001uyo.2_exon_24_0_chr13_42793366_f;uc001uyp.3_exon_27_0_chr13_42793366_f;uc010tfh.2_exon_27_0_chr13_42793366_f;uc010tfi.2_exon_22_0_chr13_42793366_f;uc010tfj.2_exon_24_0_chr13_42793366_f
+chr13	42793798	42793966	uc001uyl.2_exon_27_0_chr13_42793822_f;uc001uym.2_exon_27_0_chr13_42793822_f;uc001uyn.2_exon_25_0_chr13_42793822_f;uc001uyo.2_exon_25_0_chr13_42793822_f;uc001uyp.3_exon_28_0_chr13_42793822_f;uc010tfh.2_exon_28_0_chr13_42793822_f;uc010tfi.2_exon_23_0_chr13_42793822_f;uc010tfj.2_exon_25_0_chr13_42793822_f
+chr13	42795268	42795556	uc001uyl.2_exon_28_0_chr13_42795400_f;uc001uyn.2_exon_26_0_chr13_42795298_f;uc001uyo.2_exon_26_0_chr13_42795400_f;uc010tfj.2_exon_26_0_chr13_42795400_f
+chr13	42799368	42799501	uc001uyo.2_exon_27_0_chr13_42799426_f
+chr13	42803213	42803914	uc001uyl.2_exon_29_0_chr13_42803235_f;uc001uym.2_exon_28_0_chr13_42803235_f;uc001uyn.2_exon_27_0_chr13_42803235_f;uc001uyo.2_exon_28_0_chr13_42803235_f;uc001uyp.3_exon_29_0_chr13_42803235_f;uc010tfh.2_exon_29_0_chr13_42803235_f;uc010tfi.2_exon_24_0_chr13_42803235_f;uc010tfj.2_exon_27_0_chr13_42803235_f
+chr13	42826508	42826650	uc001uyp.3_exon_30_0_chr13_42826545_f
+chr13	42830398	42830701	uc001uyp.3_exon_31_0_chr13_42830420_f
+chr16	14916256	14916961	uc002dcu.2_exon_0_0_chr16_14916289_r
+chr16	14918441	14918591	uc002dcu.2_exon_1_0_chr16_14918491_r
+chr16	16243413	16244116	uc002den.4_exon_0_0_chr16_16243422_r;uc010bvo.3_exon_0_0_chr16_16243422_r
+chr16	16244403	16244653	uc002den.4_exon_1_0_chr16_16244435_r;uc010bvo.3_exon_1_0_chr16_16244435_r
+chr16	16248453	16248677	uc002den.4_exon_2_0_chr16_16248485_r;uc010bvo.3_exon_2_0_chr16_16248485_r
+chr16	16248698	16248910	uc002den.4_exon_3_0_chr16_16248730_r;uc010bvo.3_exon_3_0_chr16_16248730_r
+chr16	16251488	16251708	uc002den.4_exon_4_0_chr16_16251520_r;uc010bvo.3_exon_4_0_chr16_16251520_r
+chr16	16253313	16253453	uc002den.4_exon_5_0_chr16_16253339_r;uc010bvo.3_exon_5_0_chr16_16253339_r
+chr16	16255263	16255455	uc002den.4_exon_6_0_chr16_16255295_r;uc010bvo.3_exon_6_0_chr16_16255295_r
+chr16	16256828	16257078	uc002den.4_exon_7_0_chr16_16256850_r
+chr16	16259448	16259803	uc002den.4_exon_8_0_chr16_16259480_r;uc010bvo.3_exon_7_0_chr16_16259480_r
+chr16	16263478	16263722	uc002den.4_exon_9_0_chr16_16263503_r;uc010bvo.3_exon_8_0_chr16_16263503_r
+chr16	16267118	16267297	uc002den.4_exon_10_0_chr16_16267141_r;uc010bvo.3_exon_9_0_chr16_16267141_r
+chr16	16269723	16269875	uc002den.4_exon_11_0_chr16_16269768_r;uc010bvo.3_exon_10_0_chr16_16269768_r
+chr16	16271278	16271496	uc002den.4_exon_12_0_chr16_16271309_r
+chr16	16272623	16272851	uc002den.4_exon_13_0_chr16_16272655_r;uc010bvo.3_exon_11_0_chr16_16272655_r
+chr16	16276243	16276482	uc002den.4_exon_14_0_chr16_16276269_r;uc010bvo.3_exon_12_0_chr16_16276269_r
+chr16	16276628	16276819	uc002den.4_exon_15_0_chr16_16276661_r;uc010bvo.3_exon_13_0_chr16_16276661_r
+chr16	16278768	16278923	uc002den.4_exon_16_0_chr16_16278816_r;uc010bvo.3_exon_14_0_chr16_16278816_r;uc010uzz.1_exon_0_0_chr16_16278816_r
+chr16	16280953	16281081	uc002den.4_exon_17_0_chr16_16280981_r;uc010bvo.3_exon_15_0_chr16_16280981_r;uc010uzz.1_exon_1_0_chr16_16280981_r
+chr16	16282663	16282866	uc002den.4_exon_18_0_chr16_16282688_r;uc010bvo.3_exon_16_0_chr16_16282688_r;uc010uzz.1_exon_2_0_chr16_16282688_r
+chr16	16283998	16284245	uc002den.4_exon_19_0_chr16_16284021_r;uc010bvo.3_exon_17_0_chr16_16284021_r;uc010uzz.1_exon_3_0_chr16_16284021_r
+chr16	16286648	16286793	uc002den.4_exon_20_0_chr16_16286687_r;uc010bvo.3_exon_18_0_chr16_16286687_r;uc010uzz.1_exon_4_0_chr16_16286687_r
+chr16	16291843	16292061	uc002den.4_exon_21_0_chr16_16291878_r;uc010bvo.3_exon_19_0_chr16_16291878_r;uc010uzz.1_exon_5_0_chr16_16291878_r
+chr16	16295828	16296071	uc002den.4_exon_22_0_chr16_16295858_r;uc010bvo.3_exon_20_0_chr16_16295858_r;uc010uzz.1_exon_6_0_chr16_16295858_r
+chr16	16297233	16297482	uc002den.4_exon_23_0_chr16_16297267_r;uc010bvo.3_exon_21_0_chr16_16297267_r;uc010uzz.1_exon_7_0_chr16_16297267_r
+chr16	16302563	16302741	uc002den.4_exon_24_0_chr16_16302585_r;uc010bvo.3_exon_22_0_chr16_16302585_r;uc010uzz.1_exon_8_0_chr16_16302585_r
+chr16	16305988	16306134	uc002den.4_exon_25_0_chr16_16306042_r;uc010bvo.3_exon_23_0_chr16_16306042_r;uc010uzz.1_exon_9_0_chr16_16306042_r
+chr16	16308148	16308335	uc002den.4_exon_26_0_chr16_16308181_r;uc010bvo.3_exon_24_0_chr16_16308181_r;uc010uzz.1_exon_10_0_chr16_16308181_r
+chr16	16313383	16313557	uc002den.4_exon_27_0_chr16_16313411_r;uc010bvo.3_exon_25_0_chr16_16313411_r;uc010uzz.1_exon_11_0_chr16_16313411_r
+chr16	16313643	16313828	uc002den.4_exon_28_0_chr16_16313679_r;uc010bvo.3_exon_26_0_chr16_16313679_r;uc010uzz.1_exon_12_0_chr16_16313679_r
+chr16	16315008	16315722	uc002den.4_exon_29_0_chr16_16315506_r;uc002deo.4_exon_0_0_chr16_16315044_r;uc010bvo.3_exon_27_0_chr16_16315506_r;uc010uzz.1_exon_13_0_chr16_16315470_r
+chr16	16317208	16317369	uc002den.4_exon_30_0_chr16_16317256_r;uc002deo.4_exon_1_0_chr16_16317256_r;uc010bvo.3_exon_28_0_chr16_16317256_r;uc010uzz.1_exon_14_0_chr16_16317256_r
+chr16	20344342	20344741	uc002dgz.3_exon_0_0_chr16_20344373_r;uc002dha.3_exon_0_0_chr16_20344373_r;uc002dhb.3_exon_0_0_chr16_20344373_r
+chr16	20346752	20346888	uc002dgz.3_exon_1_0_chr16_20346804_r;uc002dha.3_exon_1_0_chr16_20346804_r;uc002dhb.3_exon_1_0_chr16_20346804_r
+chr16	20347937	20348073	uc002dgz.3_exon_2_0_chr16_20347968_r;uc002dha.3_exon_2_0_chr16_20347968_r;uc002dhb.3_exon_2_0_chr16_20347968_r
+chr16	20348587	20348804	uc002dgz.3_exon_3_0_chr16_20348613_r;uc002dha.3_exon_3_0_chr16_20348613_r;uc002dhb.3_exon_3_0_chr16_20348613_r
+chr16	20352382	20352696	uc002dgz.3_exon_4_0_chr16_20352413_r;uc002dha.3_exon_4_0_chr16_20352413_r;uc002dhb.3_exon_4_0_chr16_20352413_r
+chr16	20355317	20355523	uc002dgz.3_exon_5_0_chr16_20355346_r;uc002dha.3_exon_5_0_chr16_20355346_r;uc002dhb.3_exon_5_0_chr16_20355346_r
+chr16	20357412	20357671	uc002dgz.3_exon_6_0_chr16_20357448_r;uc002dha.3_exon_6_0_chr16_20357448_r;uc002dhb.3_exon_6_0_chr16_20357448_r
+chr16	20359522	20359695	uc002dgz.3_exon_7_0_chr16_20359545_r;uc002dha.3_exon_7_0_chr16_20359545_r;uc002dhb.3_exon_7_0_chr16_20359545_r
+chr16	20359732	20360574	uc002dgz.3_exon_8_0_chr16_20359758_r;uc002dha.3_exon_8_0_chr16_20359758_r;uc002dhb.3_exon_8_0_chr16_20359758_r
+chr16	20361067	20361208	uc002dhb.3_exon_9_0_chr16_20361093_r
+chr16	20361937	20362204	uc002dgz.3_exon_9_0_chr16_20361972_r;uc002dha.3_exon_9_0_chr16_20361972_r;uc002dhb.3_exon_10_0_chr16_20361972_r
+chr16	20363947	20364103	uc002dgz.3_exon_10_0_chr16_20364011_r;uc002dha.3_exon_10_0_chr16_20364011_r;uc002dhb.3_exon_11_0_chr16_20364011_r
+chr19	3094375	3094805	uc002lxd.3_exon_0_0_chr19_3094408_f
+chr19	3110125	3110366	uc002lxd.3_exon_1_0_chr19_3110147_f
+chr19	3113305	3113513	uc002lxd.3_exon_2_0_chr19_3113328_f
+chr19	3114915	3115090	uc002lxd.3_exon_3_0_chr19_3114942_f
+chr19	3118900	3119070	uc002lxd.3_exon_4_0_chr19_3118922_f
+chr19	3119175	3119384	uc002lxd.3_exon_5_0_chr19_3119204_f
+chr19	3120965	3121304	uc002lxd.3_exon_6_0_chr19_3120987_f
+chr19	3121310	3121447	uc002lxd.3_exon_6_0_chr19_3120987_f
+chr19	47341397	47341813	uc002pft.1_exon_0_0_chr19_47341423_r;uc002pfu.1_exon_0_0_chr19_47341423_r
+chr19	47341952	47342086	uc002pft.1_exon_1_0_chr19_47341997_r;uc002pfu.1_exon_1_0_chr19_47341997_r
+chr19	47342697	47342876	uc002pft.1_exon_2_0_chr19_47342722_r
+chr19	47349227	47349441	uc002pft.1_exon_3_0_chr19_47349250_r;uc002pfu.1_exon_2_0_chr19_47349250_r
+chr19	47353997	47354239	uc002pft.1_exon_4_0_chr19_47354021_r;uc002pfu.1_exon_3_0_chr19_47354021_r
+chr20	52769992	52770580	uc002xwu.1_exon_0_0_chr20_52769988_r;uc002xwv.2_exon_0_0_chr20_52769988_r;uc002xww.2_exon_0_0_chr20_52769988_r
+chr20	52770622	52770705	uc002xwu.1_exon_0_0_chr20_52769988_r;uc002xwv.2_exon_0_0_chr20_52769988_r;uc002xww.2_exon_0_0_chr20_52769988_r
+chr20	52770707	52771336	uc002xwu.1_exon_0_0_chr20_52769988_r;uc002xwv.2_exon_0_0_chr20_52769988_r;uc002xww.2_exon_0_0_chr20_52769988_r
+chr20	52773678	52773860	uc002xwu.1_exon_1_0_chr20_52773708_r;uc002xwv.2_exon_1_0_chr20_52773708_r;uc002xww.2_exon_1_0_chr20_52773708_r
+chr20	52773898	52774150	uc002xwu.1_exon_2_0_chr20_52773927_r;uc002xwv.2_exon_2_0_chr20_52773927_r
+chr20	52774593	52774726	uc002xwu.1_exon_3_0_chr20_52774625_r;uc002xwv.2_exon_3_0_chr20_52774625_r;uc002xww.2_exon_2_0_chr20_52774625_r
+chr20	52775473	52775682	uc002xwu.1_exon_4_0_chr20_52775496_r;uc002xwv.2_exon_4_0_chr20_52775496_r;uc002xww.2_exon_3_0_chr20_52775496_r
+chr20	52779223	52779439	uc002xwu.1_exon_5_0_chr20_52779256_r;uc002xwv.2_exon_5_0_chr20_52779256_r;uc002xww.2_exon_4_0_chr20_52779256_r
+chr20	52780968	52781144	uc002xwu.1_exon_6_0_chr20_52780991_r;uc002xwv.2_exon_6_0_chr20_52780991_r;uc002xww.2_exon_5_0_chr20_52780991_r
+chr20	52782253	52782397	uc002xwu.1_exon_7_0_chr20_52782281_r;uc002xwv.2_exon_7_0_chr20_52782281_r;uc002xww.2_exon_6_0_chr20_52782281_r
+chr20	52786108	52786244	uc002xwu.1_exon_8_0_chr20_52786131_r;uc002xwv.2_exon_8_0_chr20_52786131_r;uc002xww.2_exon_7_0_chr20_52786131_r
+chr20	52788093	52788504	uc002xwu.1_exon_9_0_chr20_52788116_r;uc002xwv.2_exon_9_0_chr20_52788116_r;uc002xww.2_exon_8_0_chr20_52788116_r
+chr20	52789423	52789663	uc002xwv.2_exon_10_0_chr20_52789448_r;uc002xww.2_exon_9_0_chr20_52789448_r
+chr20	52789828	52790550	uc002xwv.2_exon_11_0_chr20_52789861_r;uc002xww.2_exon_10_0_chr20_52789861_r
+chr21	37832893	37833027	uc002yvk.2_exon_0_0_chr21_37832920_r;uc002yvl.1_exon_0_0_chr21_37832920_r;uc002yvm.1_exon_0_0_chr21_37832920_r;uc002yvn.2_exon_0_0_chr21_37832920_r;uc002yvo.1_exon_0_0_chr21_37832920_r;uc021wja.1_exon_0_0_chr21_37833274_r
+chr21	37833063	37834107	uc002yvk.2_exon_0_0_chr21_37832920_r;uc002yvl.1_exon_0_0_chr21_37832920_r;uc002yvm.1_exon_0_0_chr21_37832920_r;uc002yvn.2_exon_0_0_chr21_37832920_r;uc002yvo.1_exon_0_0_chr21_37832920_r;uc021wja.1_exon_0_0_chr21_37833274_r
+chr21	37849648	37849906	uc002yvl.1_exon_1_0_chr21_37849672_r
+chr21	37851763	37852430	uc002yvl.1_exon_2_0_chr21_37851793_r;uc002yvm.1_exon_1_0_chr21_37851793_r
+chr21	37882628	37882821	uc002yvn.2_exon_1_0_chr21_37882661_r;uc002yvo.1_exon_1_0_chr21_37882661_r
+chr21	37914828	37915151	uc002yvn.2_exon_2_0_chr21_37914863_r
+chr21	37948678	37948900	uc002yvo.1_exon_2_0_chr21_37948709_r
+chrX	22050889	22051274	uc004dah.3_exon_0_0_chrX_22050921_f;uc011mjr.2_exon_0_0_chrX_22050921_f
+chrX	22056139	22056214	uc004dah.3_exon_1_0_chrX_22056587_f;uc011mjr.2_exon_1_0_chrX_22056587_f;uc011mjs.2_exon_0_0_chrX_22056171_f
+chrX	22056229	22056691	uc004dah.3_exon_1_0_chrX_22056587_f;uc011mjr.2_exon_1_0_chrX_22056587_f;uc011mjs.2_exon_0_0_chrX_22056171_f
+chrX	22065134	22065345	uc004dah.3_exon_2_0_chrX_22065168_f;uc011mjr.2_exon_2_0_chrX_22065168_f;uc011mjs.2_exon_1_0_chrX_22065168_f
+chrX	22094469	22094612	uc004dah.3_exon_3_0_chrX_22094506_f;uc011mjr.2_exon_3_0_chrX_22094506_f;uc011mjs.2_exon_2_0_chrX_22094506_f
+chrX	22095569	22095856	uc004dah.3_exon_4_0_chrX_22095594_f;uc011mjr.2_exon_4_0_chrX_22095594_f;uc011mjs.2_exon_3_0_chrX_22095594_f
+chrX	22108534	22108637	uc004dah.3_exon_5_0_chrX_22108547_f;uc011mjr.2_exon_5_0_chrX_22108547_f;uc011mjs.2_exon_4_0_chrX_22108547_f
+chrX	22112069	22112252	uc004dah.3_exon_6_0_chrX_22112101_f;uc011mjr.2_exon_6_0_chrX_22112101_f;uc011mjs.2_exon_5_0_chrX_22112101_f
+chrX	22115039	22115176	uc004dah.3_exon_7_0_chrX_22115073_f;uc011mjr.2_exon_7_0_chrX_22115073_f;uc011mjs.2_exon_6_0_chrX_22115073_f
+chrX	22117094	22117305	uc004dah.3_exon_8_0_chrX_22117124_f;uc011mjr.2_exon_8_0_chrX_22117124_f;uc011mjs.2_exon_7_0_chrX_22117124_f
+chrX	22129559	22129704	uc004dah.3_exon_9_0_chrX_22129585_f;uc011mjr.2_exon_9_0_chrX_22129585_f;uc011mjs.2_exon_8_0_chrX_22129585_f
+chrX	22132549	22132728	uc004dah.3_exon_10_0_chrX_22132576_f;uc011mjr.2_exon_10_0_chrX_22132576_f;uc011mjs.2_exon_9_0_chrX_22132576_f
+chrX	22151614	22151751	uc004dah.3_exon_11_0_chrX_22151640_f;uc011mjr.2_exon_11_0_chrX_22151640_f;uc011mjs.2_exon_10_0_chrX_22151640_f
+chrX	22186409	22186541	uc004dah.3_exon_12_0_chrX_22186429_f;uc011mjr.2_exon_12_0_chrX_22186429_f;uc011mjs.2_exon_11_0_chrX_22186429_f
+chrX	22196364	22196497	uc004dah.3_exon_13_0_chrX_22196390_f;uc011mjr.2_exon_13_0_chrX_22196390_f;uc011mjs.2_exon_12_0_chrX_22196390_f
+chrX	22208509	22208660	uc004dah.3_exon_14_0_chrX_22208561_f;uc011mjr.2_exon_14_0_chrX_22208561_f;uc011mjs.2_exon_13_0_chrX_22208561_f
+chrX	22231004	22231107	uc004dah.3_exon_15_0_chrX_22231021_f;uc011mjr.2_exon_15_0_chrX_22231021_f;uc011mjs.2_exon_14_0_chrX_22231021_f
+chrX	22237114	22237248	uc004dah.3_exon_16_0_chrX_22237153_f;uc011mjr.2_exon_16_0_chrX_22237153_f;uc011mjs.2_exon_15_0_chrX_22237153_f
+chrX	22239704	22239881	uc004dah.3_exon_17_0_chrX_22239730_f;uc011mjr.2_exon_17_0_chrX_22239730_f;uc011mjs.2_exon_16_0_chrX_22239730_f
+chrX	22244544	22244657	uc004dah.3_exon_18_0_chrX_22244560_f;uc011mjr.2_exon_18_0_chrX_22244560_f;uc011mjs.2_exon_17_0_chrX_22244560_f
+chrX	22245599	22245742	uc004dah.3_exon_19_0_chrX_22245624_f;uc011mjr.2_exon_19_0_chrX_22245624_f;uc011mjs.2_exon_18_0_chrX_22245624_f
+chrX	22263404	22263554	uc004dah.3_exon_20_0_chrX_22263450_f;uc011mjs.2_exon_19_0_chrX_22263450_f
+chrX	22265934	22266512	uc004dah.3_exon_21_0_chrX_22265968_f;uc011mjr.2_exon_20_0_chrX_22265968_f;uc011mjs.2_exon_20_0_chrX_22265968_f
+chrX	49687202	49687435	uc004doq.1_exon_0_0_chrX_49687225_f;uc004dor.1_exon_0_0_chrX_49687225_f;uc031tjn.1_exon_0_0_chrX_49687225_f
+chrX	49687982	49688374	uc004doq.1_exon_1_0_chrX_49688016_f;uc004dor.1_exon_1_0_chrX_49688016_f;uc031tjn.1_exon_1_0_chrX_49688016_f
+chrX	49689757	49689961	uc004doq.1_exon_2_0_chrX_49689781_f;uc004dor.1_exon_2_0_chrX_49689781_f;uc031tjn.1_exon_2_0_chrX_49689781_f
+chrX	49806902	49807107	uc004doq.1_exon_3_0_chrX_49806925_f;uc004dor.1_exon_3_0_chrX_49806925_f;uc031tjn.1_exon_3_0_chrX_49806925_f
+chrX	49832192	49832429	uc004dos.1_exon_0_0_chrX_49832215_f
+chrX	49834127	49834722	uc004doq.1_exon_4_0_chrX_49834534_f;uc004dor.1_exon_4_0_chrX_49834534_f;uc004dos.1_exon_1_0_chrX_49834534_f;uc004dot.1_exon_0_0_chrX_49834165_f;uc031tjo.1_exon_0_0_chrX_49834156_f;uc031tjo.1_exon_1_0_chrX_49834534_f
+chrX	49837122	49837257	uc004doq.1_exon_5_0_chrX_49837144_f;uc004dor.1_exon_5_0_chrX_49837144_f;uc004dos.1_exon_2_0_chrX_49837144_f;uc004dot.1_exon_1_0_chrX_49837144_f;uc031tjo.1_exon_2_0_chrX_49837144_f
+chrX	49840427	49840673	uc004doq.1_exon_6_0_chrX_49840450_f;uc004dor.1_exon_6_0_chrX_49840450_f;uc004dos.1_exon_3_0_chrX_49840450_f;uc004dot.1_exon_2_0_chrX_49840450_f;uc031tjo.1_exon_3_0_chrX_49840450_f
+chrX	49845222	49845398	uc004doq.1_exon_7_0_chrX_49845251_f;uc004dor.1_exon_7_0_chrX_49845251_f;uc004dos.1_exon_4_0_chrX_49845251_f;uc004dot.1_exon_3_0_chrX_49845251_f;uc031tjo.1_exon_4_0_chrX_49845251_f
+chrX	49846272	49846526	uc004doq.1_exon_8_0_chrX_49846298_f;uc004dor.1_exon_8_0_chrX_49846298_f;uc004dos.1_exon_5_0_chrX_49846298_f;uc004dot.1_exon_4_0_chrX_49846298_f;uc031tjo.1_exon_5_0_chrX_49846298_f
+chrX	49850597	49850751	uc004doq.1_exon_9_0_chrX_49850637_f;uc004dor.1_exon_9_0_chrX_49850637_f;uc004dos.1_exon_6_0_chrX_49850637_f;uc004dot.1_exon_5_0_chrX_49850637_f;uc031tjo.1_exon_6_0_chrX_49850637_f
+chrX	49850962	49851562	uc004doq.1_exon_10_0_chrX_49850985_f;uc004dor.1_exon_10_0_chrX_49850985_f;uc004dos.1_exon_7_0_chrX_49850985_f;uc004dot.1_exon_6_0_chrX_49850985_f;uc031tjo.1_exon_7_0_chrX_49850985_f
+chrX	49853322	49853578	uc004doq.1_exon_11_0_chrX_49853355_f;uc004dor.1_exon_11_0_chrX_49853355_f;uc004dos.1_exon_8_0_chrX_49853355_f;uc004dot.1_exon_7_0_chrX_49853355_f;uc031tjo.1_exon_8_0_chrX_49853355_f
+chrX	49854742	49855205	uc004doq.1_exon_12_0_chrX_49854773_f;uc004dor.1_exon_12_0_chrX_49854773_f;uc004dos.1_exon_9_0_chrX_49854773_f;uc004dot.1_exon_8_0_chrX_49854773_f;uc031tjo.1_exon_9_0_chrX_49854773_f
+chrX	49855302	49855576	uc004doq.1_exon_13_0_chrX_49855327_f;uc004dor.1_exon_13_0_chrX_49855327_f;uc004dos.1_exon_10_0_chrX_49855327_f;uc004dot.1_exon_9_0_chrX_49855327_f;uc031tjo.1_exon_10_0_chrX_49855327_f
+chrX	49856762	49858222	uc004doq.1_exon_14_0_chrX_49856786_f;uc004dor.1_exon_14_0_chrX_49856786_f;uc004dos.1_exon_11_0_chrX_49856786_f;uc004dot.1_exon_10_0_chrX_49856786_f;uc031tjo.1_exon_11_0_chrX_49856786_f
+chrX	49858237	49858820	uc004doq.1_exon_14_0_chrX_49856786_f;uc004dor.1_exon_14_0_chrX_49856786_f;uc004dos.1_exon_11_0_chrX_49856786_f;uc004dot.1_exon_10_0_chrX_49856786_f;uc031tjo.1_exon_11_0_chrX_49856786_f
+chrX	49858827	49858903	uc004doq.1_exon_14_0_chrX_49856786_f;uc004dor.1_exon_14_0_chrX_49856786_f;uc004dos.1_exon_11_0_chrX_49856786_f;uc004dot.1_exon_10_0_chrX_49856786_f;uc031tjo.1_exon_11_0_chrX_49856786_f
+chrX	49858907	49860583	uc004doq.1_exon_14_0_chrX_49856786_f;uc004dor.1_exon_14_0_chrX_49856786_f;uc004dos.1_exon_11_0_chrX_49856786_f;uc004dot.1_exon_10_0_chrX_49856786_f;uc031tjo.1_exon_11_0_chrX_49856786_f
+chrX	49860597	49860902	uc004doq.1_exon_14_0_chrX_49856786_f;uc004dor.1_exon_14_0_chrX_49856786_f;uc004dos.1_exon_11_0_chrX_49856786_f;uc004dot.1_exon_10_0_chrX_49856786_f;uc031tjo.1_exon_11_0_chrX_49856786_f
+chrX	49860907	49860973	uc004doq.1_exon_14_0_chrX_49856786_f;uc004dor.1_exon_14_0_chrX_49856786_f;uc004dos.1_exon_11_0_chrX_49856786_f;uc004dot.1_exon_10_0_chrX_49856786_f;uc031tjo.1_exon_11_0_chrX_49856786_f
+chrX	49861267	49861657	uc004doq.1_exon_14_0_chrX_49856786_f;uc004dor.1_exon_14_0_chrX_49856786_f;uc004dos.1_exon_11_0_chrX_49856786_f;uc004dot.1_exon_10_0_chrX_49856786_f;uc031tjo.1_exon_11_0_chrX_49856786_f
+chrX	49861667	49862218	uc004doq.1_exon_14_0_chrX_49856786_f;uc004dor.1_exon_14_0_chrX_49856786_f;uc004dos.1_exon_11_0_chrX_49856786_f;uc004dot.1_exon_10_0_chrX_49856786_f;uc031tjo.1_exon_11_0_chrX_49856786_f
+chrX	49862222	49863932	uc004doq.1_exon_14_0_chrX_49856786_f;uc004dor.1_exon_14_0_chrX_49856786_f;uc004dos.1_exon_11_0_chrX_49856786_f;uc004dot.1_exon_10_0_chrX_49856786_f;uc031tjo.1_exon_11_0_chrX_49856786_f
+chrX	128674224	128674478	uc004euq.3_exon_0_0_chrX_128674252_f;uc004eur.3_exon_0_0_chrX_128674252_f
+chrX	128674679	128674822	uc004euq.3_exon_1_0_chrX_128674721_f;uc004eur.3_exon_1_0_chrX_128674721_f
+chrX	128678889	128679038	uc004euq.3_exon_2_0_chrX_128678935_f;uc004eur.3_exon_2_0_chrX_128678935_f
+chrX	128682479	128682621	uc004euq.3_exon_3_0_chrX_128682540_f;uc004eur.3_exon_3_0_chrX_128682540_f
+chrX	128691279	128691450	uc004euq.3_exon_4_0_chrX_128691302_f;uc004eur.3_exon_4_0_chrX_128691302_f
+chrX	128691809	128691945	uc004euq.3_exon_5_0_chrX_128691838_f;uc004eur.3_exon_5_0_chrX_128691838_f
+chrX	128692584	128692748	uc004euq.3_exon_6_0_chrX_128692610_f;uc004eur.3_exon_6_0_chrX_128692610_f
+chrX	128692794	128693002	uc004euq.3_exon_7_0_chrX_128692817_f;uc004eur.3_exon_7_0_chrX_128692817_f
+chrX	128694504	128694640	uc004euq.3_exon_8_0_chrX_128694527_f;uc004eur.3_exon_8_0_chrX_128694527_f
+chrX	128695129	128695300	uc004euq.3_exon_9_0_chrX_128695156_f;uc004eur.3_exon_9_0_chrX_128695156_f
+chrX	128696329	128696513	uc004euq.3_exon_10_0_chrX_128696361_f;uc004eur.3_exon_10_0_chrX_128696361_f
+chrX	128696554	128696799	uc004euq.3_exon_11_0_chrX_128696576_f;uc004eur.3_exon_11_0_chrX_128696576_f
+chrX	128699724	128699891	uc004euq.3_exon_12_0_chrX_128699749_f;uc004eur.3_exon_12_0_chrX_128699749_f
+chrX	128701204	128701373	uc004euq.3_exon_13_0_chrX_128701231_f;uc004eur.3_exon_13_0_chrX_128701231_f
+chrX	128703209	128703395	uc004euq.3_exon_14_0_chrX_128703241_f;uc004eur.3_exon_14_0_chrX_128703241_f
+chrX	128709089	128709193	uc004euq.3_exon_15_0_chrX_128709117_f;uc004eur.3_exon_15_0_chrX_128709117_f
+chrX	128709839	128710056	uc004euq.3_exon_16_0_chrX_128709874_f;uc004eur.3_exon_16_0_chrX_128709874_f
+chrX	128710269	128710542	uc004euq.3_exon_17_0_chrX_128710294_f;uc004eur.3_exon_17_0_chrX_128710294_f
+chrX	128718259	128718394	uc004euq.3_exon_18_0_chrX_128718321_f
+chrX	128720954	128721127	uc004euq.3_exon_19_0_chrX_128720979_f;uc004eur.3_exon_18_0_chrX_128720979_f
+chrX	128722114	128722271	uc004euq.3_exon_20_0_chrX_128722156_f;uc004eur.3_exon_19_0_chrX_128722156_f
+chrX	128722829	128723018	uc004euq.3_exon_21_0_chrX_128722863_f;uc004eur.3_exon_20_0_chrX_128722863_f;uc010nrb.3_exon_0_0_chrX_128722863_f
+chrX	128723789	128723974	uc004euq.3_exon_22_0_chrX_128723822_f;uc004eur.3_exon_21_0_chrX_128723822_f
+chrX	128724099	128725469	uc004euq.3_exon_23_0_chrX_128724123_f;uc004eur.3_exon_22_0_chrX_128724123_f;uc010nrb.3_exon_1_0_chrX_128724123_f
+chrX	128725474	128726564	uc004euq.3_exon_23_0_chrX_128724123_f;uc004eur.3_exon_22_0_chrX_128724123_f;uc010nrb.3_exon_1_0_chrX_128724123_f
Binary file test-data/sample1 has changed
Binary file test-data/sample2 has changed
Binary file test-data/sample3 has changed