Hi Alessandro,
I prepared a sample config-file and a sample gff-file which is working
on my system.
I have never used the memory adaptor, so I cannot say if there is any
difference for the configuration file or the gff3-files (beyond the
adaptor configuration).
I am still experimenting with tracks and glyphs for these data. And I
am still thinking about what is the best way to represent this data (in
terms of gff-lines). So see this sample data as a snapshot of my
momentarily considerations (which also included the use of
wiggle-files).
Regards,
Ole.
Am 06.11.2009 10:52, schrieb alessandro Guida:
Hi Ole and Wes,
Thanks for your replies. Could you please send me a few lines of
your GFF3 file with the dense data and the .conf track?
I used to display dense files as GFF3 with the "memory" adaptor.
However, since I converted Gbrowse to the mySQL option, I can no longer
display dense files as a GFF3. The tracks do not appear on the browser
although I have tried several configurations. That's why I turned to
wiggle2gff3.pl
I would really appreciate if you could show me a few lines of
your files, so that I can see what I am doing wrong. Which version of
Gbrowser are you running?
Thanks for your help.
Alessandro
------------------------------
[GENERAL]
description = Test Database
db_adaptor = Bio::DB::SeqFeature::Store
db_args = -adaptor DBI::mysql
-dsn dbi:mysql:database=test;host=localhost;
-user test
-passwd ******
plugins =
drag and drop = 1
balloon tips = 1
titles are balloons = 0
# list of tracks to turn on by default
default features = ExampleFeatures
# examples to show in the introduction
examples = Chr1
# what image widths to offer
image widths = 450 640 800 1024
# default width of detailed view (pixels)
default width = 800
# Web site configuration info
gbrowse root = gbrowse
stylesheet = gbrowse.css
buttons = images/buttons
js = js
tmpimages = /tmp
# feature to show on startup
initial landmark = Chr1:1..10000
# max and default segment sizes for detailed view
max segment = 500000
default segment = 2500
# size of the "region panel"
region segment = 500000
# zoom levels
zoom levels = 100 200 1000 2000 5000 10000 20000 40000 50000
# colors of the overview, detailed map and key
overview bgcolor = lightgrey
detailed bgcolor = lightgoldenrodyellow
key bgcolor = beige
label density = 25
bump density = 100
# "automatic" classes to try when an unqualified identifier is given
automatic classes =
# other customization options...
# HTML TO INSERT AT VARIOUS STRATEGIC LOCATIONS
# inside the <head></head> section
head =
# at the top...
header =
# a footer
footer = <hr /><pre>$Id: volvox.conf,v 1.8.8.1.2.4 2008-08-07 16:00:08 scottcain Exp $</pre>
# Various places where you can insert your own HTML -- see configuration docs
html1 =
html2 =
html3 =
html4 =
html5 =
html6 =
category tables = 'ArrayExpts' 'strain-A strain-B strain-C' 'temperature anaerobic aerobic'
# list of tracks to turn on by default
default features = 5FN 5FN_binbars 5FN_binbars_minus 5FN_binbars_plus 5FN_bins_hm 5FN_profile_hm 5FN_profile_plot 5FN_bins:overview 5FN_bins:region
init_code = sub log_score_to_color{
my $feature = shift;
my $score = $feature->score;
if ($score<1) {return 'white'}
if ($score<2) {return 'lightyellow'}
if ($score<3) {return 'yellow'}
if ($score<4) {return 'gold'}
if ($score<5) {return 'orange'}
if ($score<6) {return 'darkorange'}
if ($score<7) {return 'orangered'}
if ($score<8) {return 'red'}
return 'darkred';
}
sub get_smallRNA_balloon{
my $feature = shift;
my $box_content="<h2>".$feature->name."</h2>";
(my $mscore)=$feature->get_tag_values('score');
$box_content.="<br>Score = <b>".$mscore."</b>";
$box_content.="<br>Logcore = <b>".$feature->score."</b> (= Log2 (".$mscore."+1))";
return $box_content;
}
sub get_heatmap_height{
my $feature=shift;
if ($feature->strand == 0){
return "15";
}
else{
return "10";
}
}
sub get_heatmap_balloon{
my $feature=shift;
my $content="<h3>Score of all smallRNAs added for a window of 1000bp</h3>";
#It shows the whole browser-window. Not a single feature.
#$content.="<b>current bin: </b>".$feature->ref.":".$feature->start."..".$feature->end;
if (($feature->strand) < 0){
$content.="<br> Added up only for <b>minus</b> strand.";
}
if (($feature->strand) > 0){
$content.="<br> Added up only for <b>plus</b> strand.";
}
if (($feature->strand) == 0){
$content.="<br> Added up regardless of strand.";
}
return $content;
}
sub get_heatmap_detailed_balloon{
my $feature=shift;
my $content="<h3>Score of all smallRNAs added for a window of 1000bp</h3>";
#It shows the whole browser-window. Not a single feature.
$content.="<b>current bin: </b>".$feature->ref.":".$feature->start."..".$feature->end;
if (($feature->strand) < 0){
$content.="<br> Strand: <b>minus</b>.";
}
if (($feature->strand) > 0){
$content.="<br> Strand: <b>plus</b>.";
}
if (($feature->strand) == 0){
$content.="<br> Added up regardless of strand.";
}
my $logsore=$feature->score;
(my $sumScores)=$feature->get_tag_values('sumScores');
(my $count)=$feature->attributes('count');
(my $singleMax)=$feature->attributes('singleMax');
$content.="<br>Count of all smallRNA in this bin: <b>".$count.".</b>";
$content.="<br>Sum of scores of all smallRNA in this bin: <b>".$sumScores."</b> (logscore=".$feature->score.").";
$content.="<br>Highest single score in this bin: <b>".$singleMax.".</b>";
return $content;
}
sub get_heatmap_detailed_label{
my $feature=shift;
my $description=" ";
my $logsore=$feature->score;
(my $sumScores)=$feature->get_tag_values('sumScores');
(my $count)=$feature->attributes('count');
(my $singleMax)=$feature->attributes('singleMax');
$description.=$sumScores;
return $description;
}
sub max_score{return "12";}
sub get_profile_description{
my $feature=shift;
if ($feature->strand == -1){
return "All smallRNA scores added for one position. Scale is logarithmic ( log2 (score+1) ).";
}
else{
return "0";
}
}
sub get_profile_balloon{
my $feature=shift;
my $content="<h3>Score of all smallRNA scores added for one position</h3>";
#It shows the whole browser-window. Not a single feature.
#$content.="<b>current bin: </b>".$feature->ref.":".$feature->start."..".$feature->end;
if (($feature->strand) < 0){
$content.="<br> Added up only for <b>minus</b> strand.";
}
if (($feature->strand) > 0){
$content.="<br> Added up only for <b>plus</b> strand.";
}
if (($feature->strand) == 0){
$content.="<br> Added up regardless of strand.";
}
return $content;
}
########################
# Default glyph settings
########################
[TRACK DEFAULTS]
glyph = generic
height = 10
bgcolor = lightgrey
fgcolor = black
font2color = blue
label density = 25
bump density = 100
# where to link to when user clicks in detailed view
link = AUTO
################## TRACK CONFIGURATION ####################
# the remainder of the sections configure individual tracks
###########################################################
[5FN]
feature = smallRNA:read_5FN
glyph = generic
strand_arrow = 1
sort_order = strand
fgcolor = darkred
bgcolor = \&log_score_to_color
balloon hover = \&get_smallRNA_balloon
description = 0
[5FN_bins_hm]
feature = histogram:5FN-both histogram:5FN-minus histogram:5FN-plus
glyph = segments
bgcolor = \&log_score_to_color
fgcolor = \&log_score_to_color
balloon hover = \&get_heatmap_balloon
height = \&get_heatmap_height
strand_arrow = 1
sort_order = strand
group_on = strand
description = \&get_heatmap_description
label = 0
link =
[5FN_binbars]
feature = histogram:5FN-both
glyph = xyplot
graph_type = boxes
#bgcolor = \&log_score_to_color
#fgcolor = \&log_score_to_color
balloon hover = \&get_heatmap_detailed_balloon
bump = 0
height = 25
min_score = 0
max_score = \&max_score
scale = none
description = 0
label = \&get_heatmap_detailed_label
link =
[5FN_binbars_plus]
feature = histogram:5FN-plus
glyph = xyplot
graph_type = boxes
glyph = xyplot
graph_type = boxes
bgcolor = \&log_score_to_color
fgcolor = \&log_score_to_color
balloon hover = \&get_heatmap_detailed_balloon
bump = 0
height = 25
min_score = 0
max_score = \&max_score
scale = none
description = 0
label = \&get_heatmap_detailed_label
link =
[5FN_binbars_minus]
feature = histogram:5FN-minus
glyph = xyplot
graph_type = boxes
glyph = xyplot
graph_type = boxes
bgcolor = \&log_score_to_color
fgcolor = \&log_score_to_color
balloon hover = \&get_heatmap_detailed_balloon
bump = 0
height = 25
min_score = 0
max_score = \&max_score
scale = none
description = 0
label = \&get_heatmap_detailed_label
link =
[5FN_profile_hm]
feature = profile:5FN-both profile:5FN-minus profile:5FN-plus
glyph = segments
bgcolor = \&log_score_to_color
fgcolor = \&log_score_to_color
balloon hover = \&get_profile_balloon
height = 30
strand_arrow = 0
sort_order = strand
group_on = strand
description = \&get_profile_description
label = 0
link =
[5FN_profile_plot]
feature = profile:5FN-both profile:5FN-minus profile:5FN-plus
glyph = xyplot
graph_type = histogram
display = 0
max_score = 10
min_score = 0
bgcolor = blue
balloon hover = \&get_profile_balloon
height = 30
scale = both
sort_order = strand
group_on = strand
description = \&get_profile_description
label = 0
link =
[5FN_bins:region]
feature = histogram:5FN-both
glyph = xyplot
graph_type = boxes
max_score = \&max_score
min_score = 0
bgcolor = blue
fgcolor = blue
balloon hover = none
height = 30
group_on = display_name
label = 0
description = 1000bp windows. Logarithmic scale. (Height = log2(score+1) )
link =
[5FN_bins:overview]
feature = histogram:5FN-both
glyph = xyplot
graph_type = boxes
max_score = \&max_score
min_score = 0
bgcolor = blue
fgcolor = blue
balloon hover = none
height = 30
group_on = display_name
label = 0
description = 1000bp windows. Logarithmic scale. (Height = log2(score+1) )
link =
# This is an example gff file.
# It contains a (large) chromosom definition (without sequence)
# and some features for the firs 120000 bp.
#
#
# Chromosome:
Chr1 example contig 1 30426600 . . . Name=Chr1
#
# first dozens of example bins
# The score column ist the logarithm of the "sumScore" attribute. This attribute is the actual score.
# The "count" attribute denotes the number of features wich occured in that bin. The "singleMax" is the highest
# score for one single feature
Chr1 5FN-minus histogram 1 3000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 3001 4000 3.907 - . Name=5FN-minus-1000bp;sumScores=14;count=1;singleMax=14
Chr1 5FN-minus histogram 4001 5000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 5001 6000 2.000 - . Name=5FN-minus-1000bp;sumScores=3;count=2;singleMax=2
Chr1 5FN-minus histogram 6001 7000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 7001 8000 2.000 - . Name=5FN-minus-1000bp;sumScores=3;count=1;singleMax=3
Chr1 5FN-minus histogram 8001 9000 3.907 - . Name=5FN-minus-1000bp;sumScores=14;count=4;singleMax=7
Chr1 5FN-minus histogram 9001 11000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 11001 12000 9.264 - . Name=5FN-minus-1000bp;sumScores=614;count=6;singleMax=581
Chr1 5FN-minus histogram 12001 13000 2.807 - . Name=5FN-minus-1000bp;sumScores=6;count=2;singleMax=4
Chr1 5FN-minus histogram 13001 14000 7.755 - . Name=5FN-minus-1000bp;sumScores=215;count=19;singleMax=85
Chr1 5FN-minus histogram 14001 16000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 16001 17000 5.931 - . Name=5FN-minus-1000bp;sumScores=60;count=5;singleMax=20
Chr1 5FN-minus histogram 17001 31000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 31001 32000 1.000 - . Name=5FN-minus-1000bp;sumScores=1;count=1;singleMax=1
Chr1 5FN-minus histogram 32001 33000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 33001 34000 6.066 - . Name=5FN-minus-1000bp;sumScores=66;count=6;singleMax=24
Chr1 5FN-minus histogram 34001 35000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 35001 36000 2.585 - . Name=5FN-minus-1000bp;sumScores=5;count=1;singleMax=5
Chr1 5FN-minus histogram 36001 37000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 37001 38000 11.037 - . Name=5FN-minus-1000bp;sumScores=2100;count=27;singleMax=1487
Chr1 5FN-minus histogram 38001 40000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 40001 41000 2.322 - . Name=5FN-minus-1000bp;sumScores=4;count=1;singleMax=4
Chr1 5FN-minus histogram 41001 43000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 43001 44000 1.000 - . Name=5FN-minus-1000bp;sumScores=1;count=1;singleMax=1
Chr1 5FN-minus histogram 44001 46000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 46001 47000 7.901 - . Name=5FN-minus-1000bp;sumScores=238;count=21;singleMax=43
Chr1 5FN-minus histogram 47001 48000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 48001 49000 2.585 - . Name=5FN-minus-1000bp;sumScores=5;count=1;singleMax=5
Chr1 5FN-minus histogram 49001 50000 10.292 - . Name=5FN-minus-1000bp;sumScores=1253;count=33;singleMax=374
Chr1 5FN-minus histogram 50001 51000 2.322 - . Name=5FN-minus-1000bp;sumScores=4;count=1;singleMax=4
Chr1 5FN-minus histogram 51001 52000 13.136 - . Name=5FN-minus-1000bp;sumScores=9001;count=40;singleMax=6819
Chr1 5FN-minus histogram 52001 59000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 59001 60000 3.322 - . Name=5FN-minus-1000bp;sumScores=9;count=3;singleMax=6
Chr1 5FN-minus histogram 60001 61000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 61001 62000 4.000 - . Name=5FN-minus-1000bp;sumScores=15;count=7;singleMax=6
Chr1 5FN-minus histogram 62001 63000 6.340 - . Name=5FN-minus-1000bp;sumScores=80;count=5;singleMax=52
Chr1 5FN-minus histogram 63001 64000 4.858 - . Name=5FN-minus-1000bp;sumScores=28;count=5;singleMax=12
Chr1 5FN-minus histogram 64001 65000 6.229 - . Name=5FN-minus-1000bp;sumScores=74;count=4;singleMax=52
Chr1 5FN-minus histogram 65001 66000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 66001 67000 4.585 - . Name=5FN-minus-1000bp;sumScores=23;count=2;singleMax=14
Chr1 5FN-minus histogram 67001 68000 7.651 - . Name=5FN-minus-1000bp;sumScores=200;count=6;singleMax=153
Chr1 5FN-minus histogram 68001 69000 1.585 - . Name=5FN-minus-1000bp;sumScores=2;count=2;singleMax=1
Chr1 5FN-minus histogram 69001 71000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 71001 72000 1.585 - . Name=5FN-minus-1000bp;sumScores=2;count=1;singleMax=2
Chr1 5FN-minus histogram 72001 73000 7.883 - . Name=5FN-minus-1000bp;sumScores=235;count=11;singleMax=142
Chr1 5FN-minus histogram 73001 74000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 74001 75000 9.219 - . Name=5FN-minus-1000bp;sumScores=595;count=13;singleMax=445
Chr1 5FN-minus histogram 75001 76000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 76001 77000 4.755 - . Name=5FN-minus-1000bp;sumScores=26;count=2;singleMax=13
Chr1 5FN-minus histogram 77001 79000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 79001 80000 1.585 - . Name=5FN-minus-1000bp;sumScores=2;count=2;singleMax=1
Chr1 5FN-minus histogram 80001 84000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 84001 85000 5.358 - . Name=5FN-minus-1000bp;sumScores=40;count=5;singleMax=15
Chr1 5FN-minus histogram 85001 88000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 88001 89000 4.907 - . Name=5FN-minus-1000bp;sumScores=29;count=2;singleMax=22
Chr1 5FN-minus histogram 89001 90000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 90001 91000 2.322 - . Name=5FN-minus-1000bp;sumScores=4;count=2;singleMax=2
Chr1 5FN-minus histogram 91001 96000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 96001 97000 4.644 - . Name=5FN-minus-1000bp;sumScores=24;count=1;singleMax=24
Chr1 5FN-minus histogram 97001 98000 8.405 - . Name=5FN-minus-1000bp;sumScores=338;count=19;singleMax=102
Chr1 5FN-minus histogram 98001 99000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 99001 100000 5.728 - . Name=5FN-minus-1000bp;sumScores=52;count=8;singleMax=28
Chr1 5FN-minus histogram 100001 101000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 101001 102000 5.728 - . Name=5FN-minus-1000bp;sumScores=52;count=3;singleMax=42
Chr1 5FN-minus histogram 102001 104000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 104001 105000 2.000 - . Name=5FN-minus-1000bp;sumScores=3;count=2;singleMax=2
Chr1 5FN-minus histogram 105001 107000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 107001 108000 2.585 - . Name=5FN-minus-1000bp;sumScores=5;count=1;singleMax=5
Chr1 5FN-minus histogram 108001 109000 1.000 - . Name=5FN-minus-1000bp;sumScores=1;count=1;singleMax=1
Chr1 5FN-minus histogram 109001 110000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 110001 111000 1.000 - . Name=5FN-minus-1000bp;sumScores=1;count=1;singleMax=1
Chr1 5FN-minus histogram 111001 118000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-minus histogram 118001 119000 2.585 - . Name=5FN-minus-1000bp;sumScores=5;count=1;singleMax=5
Chr1 5FN-minus histogram 119001 122000 0 - . Name=5FN-minus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 1 3000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 3001 4000 5.426 + . Name=5FN-plus-1000bp;sumScores=42;count=6;singleMax=22
Chr1 5FN-plus histogram 4001 7000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 7001 8000 2.000 + . Name=5FN-plus-1000bp;sumScores=3;count=1;singleMax=3
Chr1 5FN-plus histogram 8001 9000 10.993 + . Name=5FN-plus-1000bp;sumScores=2037;count=13;singleMax=451
Chr1 5FN-plus histogram 9001 10000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 10001 11000 3.000 + . Name=5FN-plus-1000bp;sumScores=7;count=2;singleMax=6
Chr1 5FN-plus histogram 11001 12000 3.807 + . Name=5FN-plus-1000bp;sumScores=13;count=2;singleMax=9
Chr1 5FN-plus histogram 12001 13000 3.000 + . Name=5FN-plus-1000bp;sumScores=7;count=4;singleMax=3
Chr1 5FN-plus histogram 13001 14000 2.322 + . Name=5FN-plus-1000bp;sumScores=4;count=4;singleMax=1
Chr1 5FN-plus histogram 14001 15000 4.170 + . Name=5FN-plus-1000bp;sumScores=17;count=3;singleMax=8
Chr1 5FN-plus histogram 15001 16000 4.087 + . Name=5FN-plus-1000bp;sumScores=16;count=1;singleMax=16
Chr1 5FN-plus histogram 16001 17000 1.000 + . Name=5FN-plus-1000bp;sumScores=1;count=1;singleMax=1
Chr1 5FN-plus histogram 17001 23000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 23001 24000 2.322 + . Name=5FN-plus-1000bp;sumScores=4;count=2;singleMax=3
Chr1 5FN-plus histogram 24001 29000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 29001 30000 2.000 + . Name=5FN-plus-1000bp;sumScores=3;count=1;singleMax=3
Chr1 5FN-plus histogram 30001 37000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 37001 38000 10.929 + . Name=5FN-plus-1000bp;sumScores=1948;count=15;singleMax=383
Chr1 5FN-plus histogram 38001 44000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 44001 45000 1.000 + . Name=5FN-plus-1000bp;sumScores=1;count=1;singleMax=1
Chr1 5FN-plus histogram 45001 46000 3.170 + . Name=5FN-plus-1000bp;sumScores=8;count=1;singleMax=8
Chr1 5FN-plus histogram 46001 47000 5.248 + . Name=5FN-plus-1000bp;sumScores=37;count=1;singleMax=37
Chr1 5FN-plus histogram 47001 49000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 49001 50000 4.087 + . Name=5FN-plus-1000bp;sumScores=16;count=4;singleMax=12
Chr1 5FN-plus histogram 50001 52000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 52001 53000 4.700 + . Name=5FN-plus-1000bp;sumScores=25;count=2;singleMax=17
Chr1 5FN-plus histogram 53001 59000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 59001 60000 1.585 + . Name=5FN-plus-1000bp;sumScores=2;count=1;singleMax=2
Chr1 5FN-plus histogram 60001 62000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 62001 63000 10.845 + . Name=5FN-plus-1000bp;sumScores=1838;count=13;singleMax=383
Chr1 5FN-plus histogram 63001 64000 5.170 + . Name=5FN-plus-1000bp;sumScores=35;count=5;singleMax=13
Chr1 5FN-plus histogram 64001 65000 9.943 + . Name=5FN-plus-1000bp;sumScores=983;count=9;singleMax=383
Chr1 5FN-plus histogram 65001 72000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 72001 73000 9.592 + . Name=5FN-plus-1000bp;sumScores=771;count=12;singleMax=487
Chr1 5FN-plus histogram 73001 75000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 75001 76000 3.700 + . Name=5FN-plus-1000bp;sumScores=12;count=3;singleMax=7
Chr1 5FN-plus histogram 76001 77000 1.000 + . Name=5FN-plus-1000bp;sumScores=1;count=1;singleMax=1
Chr1 5FN-plus histogram 77001 78000 2.322 + . Name=5FN-plus-1000bp;sumScores=4;count=1;singleMax=4
Chr1 5FN-plus histogram 78001 82000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 82001 83000 2.585 + . Name=5FN-plus-1000bp;sumScores=5;count=1;singleMax=5
Chr1 5FN-plus histogram 83001 88000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 88001 89000 2.000 + . Name=5FN-plus-1000bp;sumScores=3;count=1;singleMax=3
Chr1 5FN-plus histogram 89001 90000 3.907 + . Name=5FN-plus-1000bp;sumScores=14;count=1;singleMax=14
Chr1 5FN-plus histogram 90001 91000 3.000 + . Name=5FN-plus-1000bp;sumScores=7;count=3;singleMax=3
Chr1 5FN-plus histogram 91001 92000 7.644 + . Name=5FN-plus-1000bp;sumScores=199;count=13;singleMax=84
Chr1 5FN-plus histogram 92001 95000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 95001 96000 3.459 + . Name=5FN-plus-1000bp;sumScores=10;count=1;singleMax=10
Chr1 5FN-plus histogram 96001 97000 4.585 + . Name=5FN-plus-1000bp;sumScores=23;count=4;singleMax=12
Chr1 5FN-plus histogram 97001 98000 7.994 + . Name=5FN-plus-1000bp;sumScores=254;count=20;singleMax=45
Chr1 5FN-plus histogram 98001 99000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 99001 100000 6.229 + . Name=5FN-plus-1000bp;sumScores=74;count=5;singleMax=29
Chr1 5FN-plus histogram 100001 101000 3.322 + . Name=5FN-plus-1000bp;sumScores=9;count=1;singleMax=9
Chr1 5FN-plus histogram 101001 102000 11.082 + . Name=5FN-plus-1000bp;sumScores=2167;count=13;singleMax=451
Chr1 5FN-plus histogram 102001 103000 1.000 + . Name=5FN-plus-1000bp;sumScores=1;count=1;singleMax=1
Chr1 5FN-plus histogram 103001 104000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 104001 105000 9.577 + . Name=5FN-plus-1000bp;sumScores=763;count=8;singleMax=510
Chr1 5FN-plus histogram 105001 106000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 106001 107000 3.459 + . Name=5FN-plus-1000bp;sumScores=10;count=1;singleMax=10
Chr1 5FN-plus histogram 107001 108000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 108001 109000 2.585 + . Name=5FN-plus-1000bp;sumScores=5;count=1;singleMax=5
Chr1 5FN-plus histogram 109001 110000 6.170 + . Name=5FN-plus-1000bp;sumScores=71;count=9;singleMax=23
Chr1 5FN-plus histogram 110001 111000 3.700 + . Name=5FN-plus-1000bp;sumScores=12;count=3;singleMax=10
Chr1 5FN-plus histogram 111001 114000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 114001 115000 6.322 + . Name=5FN-plus-1000bp;sumScores=79;count=3;singleMax=45
Chr1 5FN-plus histogram 115001 116000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 116001 117000 3.459 + . Name=5FN-plus-1000bp;sumScores=10;count=3;singleMax=5
Chr1 5FN-plus histogram 117001 118000 8.690 + . Name=5FN-plus-1000bp;sumScores=412;count=27;singleMax=101
Chr1 5FN-plus histogram 118001 120000 0 + . Name=5FN-plus-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-plus histogram 120001 121000 3.170 + . Name=5FN-plus-1000bp;sumScores=8;count=1;singleMax=8
Chr1 5FN-both histogram 1 3000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 3001 4000 5.833 . . Name=5FN-both-1000bp;sumScores=56;count=7;singleMax=22
Chr1 5FN-both histogram 4001 5000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 5001 6000 2.000 . . Name=5FN-both-1000bp;sumScores=3;count=2;singleMax=2
Chr1 5FN-both histogram 6001 7000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 7001 8000 2.807 . . Name=5FN-both-1000bp;sumScores=6;count=2;singleMax=3
Chr1 5FN-both histogram 8001 9000 11.003 . . Name=5FN-both-1000bp;sumScores=2051;count=17;singleMax=451
Chr1 5FN-both histogram 9001 10000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 10001 11000 3.000 . . Name=5FN-both-1000bp;sumScores=7;count=2;singleMax=6
Chr1 5FN-both histogram 11001 12000 9.295 . . Name=5FN-both-1000bp;sumScores=627;count=8;singleMax=581
Chr1 5FN-both histogram 12001 13000 3.807 . . Name=5FN-both-1000bp;sumScores=13;count=6;singleMax=4
Chr1 5FN-both histogram 13001 14000 7.781 . . Name=5FN-both-1000bp;sumScores=219;count=23;singleMax=85
Chr1 5FN-both histogram 14001 15000 4.170 . . Name=5FN-both-1000bp;sumScores=17;count=3;singleMax=8
Chr1 5FN-both histogram 15001 16000 4.087 . . Name=5FN-both-1000bp;sumScores=16;count=1;singleMax=16
Chr1 5FN-both histogram 16001 17000 5.954 . . Name=5FN-both-1000bp;sumScores=61;count=6;singleMax=20
Chr1 5FN-both histogram 17001 23000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 23001 24000 2.322 . . Name=5FN-both-1000bp;sumScores=4;count=2;singleMax=3
Chr1 5FN-both histogram 24001 29000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 29001 30000 2.000 . . Name=5FN-both-1000bp;sumScores=3;count=1;singleMax=3
Chr1 5FN-both histogram 30001 31000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 31001 32000 1.000 . . Name=5FN-both-1000bp;sumScores=1;count=1;singleMax=1
Chr1 5FN-both histogram 32001 33000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 33001 34000 6.066 . . Name=5FN-both-1000bp;sumScores=66;count=6;singleMax=24
Chr1 5FN-both histogram 34001 35000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 35001 36000 2.585 . . Name=5FN-both-1000bp;sumScores=5;count=1;singleMax=5
Chr1 5FN-both histogram 36001 37000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 37001 38000 11.983 . . Name=5FN-both-1000bp;sumScores=4048;count=42;singleMax=1487
Chr1 5FN-both histogram 38001 40000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 40001 41000 2.322 . . Name=5FN-both-1000bp;sumScores=4;count=1;singleMax=4
Chr1 5FN-both histogram 41001 43000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 43001 44000 1.000 . . Name=5FN-both-1000bp;sumScores=1;count=1;singleMax=1
Chr1 5FN-both histogram 44001 45000 1.000 . . Name=5FN-both-1000bp;sumScores=1;count=1;singleMax=1
Chr1 5FN-both histogram 45001 46000 3.170 . . Name=5FN-both-1000bp;sumScores=8;count=1;singleMax=8
Chr1 5FN-both histogram 46001 47000 8.109 . . Name=5FN-both-1000bp;sumScores=275;count=22;singleMax=43
Chr1 5FN-both histogram 47001 48000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 48001 49000 2.585 . . Name=5FN-both-1000bp;sumScores=5;count=1;singleMax=5
Chr1 5FN-both histogram 49001 50000 10.311 . . Name=5FN-both-1000bp;sumScores=1269;count=37;singleMax=374
Chr1 5FN-both histogram 50001 51000 2.322 . . Name=5FN-both-1000bp;sumScores=4;count=1;singleMax=4
Chr1 5FN-both histogram 51001 52000 13.136 . . Name=5FN-both-1000bp;sumScores=9001;count=40;singleMax=6819
Chr1 5FN-both histogram 52001 53000 4.700 . . Name=5FN-both-1000bp;sumScores=25;count=2;singleMax=17
Chr1 5FN-both histogram 53001 59000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 59001 60000 3.585 . . Name=5FN-both-1000bp;sumScores=11;count=4;singleMax=6
Chr1 5FN-both histogram 60001 61000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 61001 62000 4.000 . . Name=5FN-both-1000bp;sumScores=15;count=7;singleMax=6
Chr1 5FN-both histogram 62001 63000 10.906 . . Name=5FN-both-1000bp;sumScores=1918;count=18;singleMax=383
Chr1 5FN-both histogram 63001 64000 6.000 . . Name=5FN-both-1000bp;sumScores=63;count=10;singleMax=13
Chr1 5FN-both histogram 64001 65000 10.047 . . Name=5FN-both-1000bp;sumScores=1057;count=13;singleMax=383
Chr1 5FN-both histogram 65001 66000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 66001 67000 4.585 . . Name=5FN-both-1000bp;sumScores=23;count=2;singleMax=14
Chr1 5FN-both histogram 67001 68000 7.651 . . Name=5FN-both-1000bp;sumScores=200;count=6;singleMax=153
Chr1 5FN-both histogram 68001 69000 1.585 . . Name=5FN-both-1000bp;sumScores=2;count=2;singleMax=1
Chr1 5FN-both histogram 69001 71000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 71001 72000 1.585 . . Name=5FN-both-1000bp;sumScores=2;count=1;singleMax=2
Chr1 5FN-both histogram 72001 73000 9.976 . . Name=5FN-both-1000bp;sumScores=1006;count=23;singleMax=487
Chr1 5FN-both histogram 73001 74000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 74001 75000 9.219 . . Name=5FN-both-1000bp;sumScores=595;count=13;singleMax=445
Chr1 5FN-both histogram 75001 76000 3.700 . . Name=5FN-both-1000bp;sumScores=12;count=3;singleMax=7
Chr1 5FN-both histogram 76001 77000 4.807 . . Name=5FN-both-1000bp;sumScores=27;count=3;singleMax=13
Chr1 5FN-both histogram 77001 78000 2.322 . . Name=5FN-both-1000bp;sumScores=4;count=1;singleMax=4
Chr1 5FN-both histogram 78001 79000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 79001 80000 1.585 . . Name=5FN-both-1000bp;sumScores=2;count=2;singleMax=1
Chr1 5FN-both histogram 80001 82000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 82001 83000 2.585 . . Name=5FN-both-1000bp;sumScores=5;count=1;singleMax=5
Chr1 5FN-both histogram 83001 84000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 84001 85000 5.358 . . Name=5FN-both-1000bp;sumScores=40;count=5;singleMax=15
Chr1 5FN-both histogram 85001 88000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 88001 89000 5.044 . . Name=5FN-both-1000bp;sumScores=32;count=3;singleMax=22
Chr1 5FN-both histogram 89001 90000 3.907 . . Name=5FN-both-1000bp;sumScores=14;count=1;singleMax=14
Chr1 5FN-both histogram 90001 91000 3.585 . . Name=5FN-both-1000bp;sumScores=11;count=5;singleMax=3
Chr1 5FN-both histogram 91001 92000 7.644 . . Name=5FN-both-1000bp;sumScores=199;count=13;singleMax=84
Chr1 5FN-both histogram 92001 95000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 95001 96000 3.459 . . Name=5FN-both-1000bp;sumScores=10;count=1;singleMax=10
Chr1 5FN-both histogram 96001 97000 5.585 . . Name=5FN-both-1000bp;sumScores=47;count=5;singleMax=24
Chr1 5FN-both histogram 97001 98000 9.212 . . Name=5FN-both-1000bp;sumScores=592;count=39;singleMax=102
Chr1 5FN-both histogram 98001 99000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 99001 100000 6.989 . . Name=5FN-both-1000bp;sumScores=126;count=13;singleMax=29
Chr1 5FN-both histogram 100001 101000 3.322 . . Name=5FN-both-1000bp;sumScores=9;count=1;singleMax=9
Chr1 5FN-both histogram 101001 102000 11.116 . . Name=5FN-both-1000bp;sumScores=2219;count=16;singleMax=451
Chr1 5FN-both histogram 102001 103000 1.000 . . Name=5FN-both-1000bp;sumScores=1;count=1;singleMax=1
Chr1 5FN-both histogram 103001 104000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 104001 105000 9.583 . . Name=5FN-both-1000bp;sumScores=766;count=10;singleMax=510
Chr1 5FN-both histogram 105001 106000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 106001 107000 3.459 . . Name=5FN-both-1000bp;sumScores=10;count=1;singleMax=10
Chr1 5FN-both histogram 107001 108000 2.585 . . Name=5FN-both-1000bp;sumScores=5;count=1;singleMax=5
Chr1 5FN-both histogram 108001 109000 2.807 . . Name=5FN-both-1000bp;sumScores=6;count=2;singleMax=5
Chr1 5FN-both histogram 109001 110000 6.170 . . Name=5FN-both-1000bp;sumScores=71;count=9;singleMax=23
Chr1 5FN-both histogram 110001 111000 3.807 . . Name=5FN-both-1000bp;sumScores=13;count=4;singleMax=10
Chr1 5FN-both histogram 111001 114000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 114001 115000 6.322 . . Name=5FN-both-1000bp;sumScores=79;count=3;singleMax=45
Chr1 5FN-both histogram 115001 116000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 116001 117000 3.459 . . Name=5FN-both-1000bp;sumScores=10;count=3;singleMax=5
Chr1 5FN-both histogram 117001 118000 8.690 . . Name=5FN-both-1000bp;sumScores=412;count=27;singleMax=101
Chr1 5FN-both histogram 118001 119000 2.585 . . Name=5FN-both-1000bp;sumScores=5;count=1;singleMax=5
Chr1 5FN-both histogram 119001 120000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 120001 121000 3.170 . . Name=5FN-both-1000bp;sumScores=8;count=1;singleMax=8
Chr1 5FN-both histogram 121001 122000 0 . . Name=5FN-both-1000bp;sumScores=0;count=0;singleMax=0
Chr1 5FN-both histogram 122001 123000 3.000 . . Name=5FN-both-1000bp;sumScores=7;count=5;singleMax=2
#
#
# the first hundreds finer grained features.
# the attribute "sumScore" is the sum of all scores for all features on this position.
# the attribute "count" is the number of features which account for the sumScore
# e.g.
# Input:
# start:10, ende:20, score:11
# start:12, ende:22, score:9
# start:16, ende 26, score:7
# Output:
# start:10, ende:11, sumScore:11, count:1
# start:12, ende:15, sumScore:20, count:2
# start:16, ende:19, sumScore:27, count:3
# start:20, ende:21, sumScore:16, count:2
# start:22, ende:26, sumScore:7, count:1
#
Chr1 5FN-minus profile 1 3971 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 3972 3988 3.907 - . Name=5FN-minus-profile;sumScores=14;count=1
Chr1 5FN-minus profile 3989 5679 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 5680 5696 2.000 - . Name=5FN-minus-profile;sumScores=3;count=2
Chr1 5FN-minus profile 5697 5697 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 5698 7991 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 7992 8008 2.000 - . Name=5FN-minus-profile;sumScores=3;count=1
Chr1 5FN-minus profile 8009 8664 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 8665 8667 3.000 - . Name=5FN-minus-profile;sumScores=7;count=1
Chr1 5FN-minus profile 8668 8682 3.459 - . Name=5FN-minus-profile;sumScores=10;count=3
Chr1 5FN-minus profile 8683 8683 2.000 - . Name=5FN-minus-profile;sumScores=3;count=2
Chr1 5FN-minus profile 8684 8684 3.000 - . Name=5FN-minus-profile;sumScores=7;count=3
Chr1 5FN-minus profile 8685 8685 2.585 - . Name=5FN-minus-profile;sumScores=5;count=2
Chr1 5FN-minus profile 8686 8701 2.322 - . Name=5FN-minus-profile;sumScores=4;count=1
Chr1 5FN-minus profile 8702 11455 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 11456 11472 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 11473 11983 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 11984 11984 3.000 - . Name=5FN-minus-profile;sumScores=7;count=2
Chr1 5FN-minus profile 11985 11985 9.202 - . Name=5FN-minus-profile;sumScores=588;count=3
Chr1 5FN-minus profile 11986 12000 9.262 - . Name=5FN-minus-profile;sumScores=613;count=5
Chr1 5FN-minus profile 12001 12001 9.248 - . Name=5FN-minus-profile;sumScores=607;count=4
Chr1 5FN-minus profile 12002 12002 4.700 - . Name=5FN-minus-profile;sumScores=25;count=2
Chr1 5FN-minus profile 12003 12003 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 12004 12316 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 12317 12334 2.322 - . Name=5FN-minus-profile;sumScores=4;count=1
Chr1 5FN-minus profile 12335 12998 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 12999 12999 1.585 - . Name=5FN-minus-profile;sumScores=2;count=1
Chr1 5FN-minus profile 13000 13000 3.700 - . Name=5FN-minus-profile;sumScores=12;count=3
Chr1 5FN-minus profile 13001 13001 3.907 - . Name=5FN-minus-profile;sumScores=14;count=4
Chr1 5FN-minus profile 13002 13002 4.170 - . Name=5FN-minus-profile;sumScores=17;count=5
Chr1 5FN-minus profile 13003 13005 4.248 - . Name=5FN-minus-profile;sumScores=18;count=6
Chr1 5FN-minus profile 13006 13016 4.392 - . Name=5FN-minus-profile;sumScores=20;count=7
Chr1 5FN-minus profile 13017 13017 3.700 - . Name=5FN-minus-profile;sumScores=12;count=5
Chr1 5FN-minus profile 13018 13018 2.807 - . Name=5FN-minus-profile;sumScores=6;count=3
Chr1 5FN-minus profile 13019 13019 2.000 - . Name=5FN-minus-profile;sumScores=3;count=2
Chr1 5FN-minus profile 13020 13022 1.585 - . Name=5FN-minus-profile;sumScores=2;count=1
Chr1 5FN-minus profile 13023 13149 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 13150 13167 4.248 - . Name=5FN-minus-profile;sumScores=18;count=1
Chr1 5FN-minus profile 13168 13180 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 13181 13197 2.322 - . Name=5FN-minus-profile;sumScores=4;count=1
Chr1 5FN-minus profile 13198 13347 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 13348 13350 4.000 - . Name=5FN-minus-profile;sumScores=15;count=1
Chr1 5FN-minus profile 13351 13351 5.087 - . Name=5FN-minus-profile;sumScores=33;count=2
Chr1 5FN-minus profile 13352 13353 5.209 - . Name=5FN-minus-profile;sumScores=36;count=3
Chr1 5FN-minus profile 13354 13364 5.248 - . Name=5FN-minus-profile;sumScores=37;count=4
Chr1 5FN-minus profile 13365 13368 4.524 - . Name=5FN-minus-profile;sumScores=22;count=3
Chr1 5FN-minus profile 13369 13371 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 13372 13556 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 13557 13559 6.426 - . Name=5FN-minus-profile;sumScores=85;count=1
Chr1 5FN-minus profile 13560 13560 6.931 - . Name=5FN-minus-profile;sumScores=121;count=2
Chr1 5FN-minus profile 13561 13573 7.011 - . Name=5FN-minus-profile;sumScores=128;count=3
Chr1 5FN-minus profile 13574 13576 5.459 - . Name=5FN-minus-profile;sumScores=43;count=2
Chr1 5FN-minus profile 13577 13577 3.000 - . Name=5FN-minus-profile;sumScores=7;count=1
Chr1 5FN-minus profile 13578 13594 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 13595 13612 2.585 - . Name=5FN-minus-profile;sumScores=5;count=1
Chr1 5FN-minus profile 13613 13614 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 13615 13631 1.585 - . Name=5FN-minus-profile;sumScores=2;count=1
Chr1 5FN-minus profile 13632 13658 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 13659 13663 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 13664 13676 2.000 - . Name=5FN-minus-profile;sumScores=3;count=2
Chr1 5FN-minus profile 13677 13680 1.585 - . Name=5FN-minus-profile;sumScores=2;count=1
Chr1 5FN-minus profile 13681 16801 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 16802 16802 3.907 - . Name=5FN-minus-profile;sumScores=14;count=1
Chr1 5FN-minus profile 16803 16803 5.129 - . Name=5FN-minus-profile;sumScores=34;count=2
Chr1 5FN-minus profile 16804 16804 5.644 - . Name=5FN-minus-profile;sumScores=49;count=3
Chr1 5FN-minus profile 16805 16805 5.672 - . Name=5FN-minus-profile;sumScores=50;count=4
Chr1 5FN-minus profile 16806 16819 5.931 - . Name=5FN-minus-profile;sumScores=60;count=5
Chr1 5FN-minus profile 16820 16821 4.755 - . Name=5FN-minus-profile;sumScores=26;count=3
Chr1 5FN-minus profile 16822 16822 3.459 - . Name=5FN-minus-profile;sumScores=10;count=1
Chr1 5FN-minus profile 16823 31066 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 31067 31083 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 31084 33085 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 33086 33089 3.907 - . Name=5FN-minus-profile;sumScores=14;count=1
Chr1 5FN-minus profile 33090 33095 4.392 - . Name=5FN-minus-profile;sumScores=20;count=2
Chr1 5FN-minus profile 33096 33099 4.858 - . Name=5FN-minus-profile;sumScores=28;count=3
Chr1 5FN-minus profile 33100 33102 5.728 - . Name=5FN-minus-profile;sumScores=52;count=4
Chr1 5FN-minus profile 33103 33103 5.285 - . Name=5FN-minus-profile;sumScores=38;count=3
Chr1 5FN-minus profile 33104 33106 5.459 - . Name=5FN-minus-profile;sumScores=43;count=4
Chr1 5FN-minus profile 33107 33113 5.248 - . Name=5FN-minus-profile;sumScores=37;count=3
Chr1 5FN-minus profile 33114 33114 4.907 - . Name=5FN-minus-profile;sumScores=29;count=2
Chr1 5FN-minus profile 33115 33116 5.285 - . Name=5FN-minus-profile;sumScores=38;count=3
Chr1 5FN-minus profile 33117 33121 3.907 - . Name=5FN-minus-profile;sumScores=14;count=2
Chr1 5FN-minus profile 33122 33132 3.322 - . Name=5FN-minus-profile;sumScores=9;count=1
Chr1 5FN-minus profile 33133 35604 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 35605 35622 2.585 - . Name=5FN-minus-profile;sumScores=5;count=1
Chr1 5FN-minus profile 35623 37710 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 37711 37712 4.700 - . Name=5FN-minus-profile;sumScores=25;count=1
Chr1 5FN-minus profile 37713 37716 5.248 - . Name=5FN-minus-profile;sumScores=37;count=2
Chr1 5FN-minus profile 37717 37719 7.907 - . Name=5FN-minus-profile;sumScores=239;count=3
Chr1 5FN-minus profile 37720 37726 8.000 - . Name=5FN-minus-profile;sumScores=255;count=4
Chr1 5FN-minus profile 37727 37727 8.061 - . Name=5FN-minus-profile;sumScores=266;count=5
Chr1 5FN-minus profile 37728 37729 7.919 - . Name=5FN-minus-profile;sumScores=241;count=4
Chr1 5FN-minus profile 37730 37730 7.972 - . Name=5FN-minus-profile;sumScores=250;count=5
Chr1 5FN-minus profile 37731 37734 7.901 - . Name=5FN-minus-profile;sumScores=238;count=4
Chr1 5FN-minus profile 37735 37737 5.807 - . Name=5FN-minus-profile;sumScores=55;count=5
Chr1 5FN-minus profile 37738 37744 5.322 - . Name=5FN-minus-profile;sumScores=39;count=4
Chr1 5FN-minus profile 37745 37747 4.858 - . Name=5FN-minus-profile;sumScores=28;count=3
Chr1 5FN-minus profile 37748 37751 4.322 - . Name=5FN-minus-profile;sumScores=19;count=2
Chr1 5FN-minus profile 37752 37752 3.807 - . Name=5FN-minus-profile;sumScores=13;count=1
Chr1 5FN-minus profile 37753 37757 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 37758 37758 4.755 - . Name=5FN-minus-profile;sumScores=26;count=2
Chr1 5FN-minus profile 37759 37759 4.858 - . Name=5FN-minus-profile;sumScores=28;count=3
Chr1 5FN-minus profile 37760 37760 5.492 - . Name=5FN-minus-profile;sumScores=44;count=4
Chr1 5FN-minus profile 37761 37761 10.625 - . Name=5FN-minus-profile;sumScores=1578;count=6
Chr1 5FN-minus profile 37762 37763 10.727 - . Name=5FN-minus-profile;sumScores=1694;count=7
Chr1 5FN-minus profile 37764 37774 10.732 - . Name=5FN-minus-profile;sumScores=1700;count=8
Chr1 5FN-minus profile 37775 37775 10.724 - . Name=5FN-minus-profile;sumScores=1690;count=7
Chr1 5FN-minus profile 37776 37777 10.708 - . Name=5FN-minus-profile;sumScores=1672;count=5
Chr1 5FN-minus profile 37778 37778 10.653 - . Name=5FN-minus-profile;sumScores=1609;count=3
Chr1 5FN-minus profile 37779 37781 2.807 - . Name=5FN-minus-profile;sumScores=6;count=1
Chr1 5FN-minus profile 37782 37800 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 37801 37804 3.000 - . Name=5FN-minus-profile;sumScores=7;count=1
Chr1 5FN-minus profile 37805 37807 3.459 - . Name=5FN-minus-profile;sumScores=10;count=2
Chr1 5FN-minus profile 37808 37817 4.700 - . Name=5FN-minus-profile;sumScores=25;count=3
Chr1 5FN-minus profile 37818 37819 4.248 - . Name=5FN-minus-profile;sumScores=18;count=2
Chr1 5FN-minus profile 37820 37820 4.755 - . Name=5FN-minus-profile;sumScores=26;count=3
Chr1 5FN-minus profile 37821 37821 4.954 - . Name=5FN-minus-profile;sumScores=30;count=4
Chr1 5FN-minus profile 37822 37822 4.807 - . Name=5FN-minus-profile;sumScores=27;count=3
Chr1 5FN-minus profile 37823 37825 5.170 - . Name=5FN-minus-profile;sumScores=35;count=4
Chr1 5FN-minus profile 37826 37826 4.392 - . Name=5FN-minus-profile;sumScores=20;count=3
Chr1 5FN-minus profile 37827 37834 4.755 - . Name=5FN-minus-profile;sumScores=26;count=4
Chr1 5FN-minus profile 37835 37835 5.807 - . Name=5FN-minus-profile;sumScores=55;count=5
Chr1 5FN-minus profile 37836 37837 6.209 - . Name=5FN-minus-profile;sumScores=73;count=6
Chr1 5FN-minus profile 37838 37838 5.954 - . Name=5FN-minus-profile;sumScores=61;count=4
Chr1 5FN-minus profile 37839 37840 6.022 - . Name=5FN-minus-profile;sumScores=64;count=5
Chr1 5FN-minus profile 37841 37841 5.833 - . Name=5FN-minus-profile;sumScores=56;count=4
Chr1 5FN-minus profile 37842 37843 5.954 - . Name=5FN-minus-profile;sumScores=61;count=5
Chr1 5FN-minus profile 37844 37852 5.807 - . Name=5FN-minus-profile;sumScores=55;count=4
Chr1 5FN-minus profile 37853 37856 3.170 - . Name=5FN-minus-profile;sumScores=8;count=2
Chr1 5FN-minus profile 37857 37859 2.585 - . Name=5FN-minus-profile;sumScores=5;count=1
Chr1 5FN-minus profile 37860 40925 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 40926 40943 2.322 - . Name=5FN-minus-profile;sumScores=4;count=1
Chr1 5FN-minus profile 40944 43874 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 43875 43891 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 43892 46542 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 46543 46543 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 46544 46559 3.322 - . Name=5FN-minus-profile;sumScores=9;count=2
Chr1 5FN-minus profile 46560 46560 3.170 - . Name=5FN-minus-profile;sumScores=8;count=1
Chr1 5FN-minus profile 46561 46689 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 46690 46707 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 46708 46711 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 46712 46712 3.700 - . Name=5FN-minus-profile;sumScores=12;count=1
Chr1 5FN-minus profile 46713 46729 5.129 - . Name=5FN-minus-profile;sumScores=34;count=2
Chr1 5FN-minus profile 46730 46742 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 46743 46752 5.459 - . Name=5FN-minus-profile;sumScores=43;count=1
Chr1 5FN-minus profile 46753 46759 5.728 - . Name=5FN-minus-profile;sumScores=52;count=2
Chr1 5FN-minus profile 46760 46765 3.322 - . Name=5FN-minus-profile;sumScores=9;count=1
Chr1 5FN-minus profile 46766 46770 3.807 - . Name=5FN-minus-profile;sumScores=13;count=2
Chr1 5FN-minus profile 46771 46771 2.322 - . Name=5FN-minus-profile;sumScores=4;count=1
Chr1 5FN-minus profile 46772 46783 2.585 - . Name=5FN-minus-profile;sumScores=5;count=2
Chr1 5FN-minus profile 46784 46785 2.322 - . Name=5FN-minus-profile;sumScores=4;count=2
Chr1 5FN-minus profile 46786 46786 2.585 - . Name=5FN-minus-profile;sumScores=5;count=3
Chr1 5FN-minus profile 46787 46789 4.807 - . Name=5FN-minus-profile;sumScores=27;count=4
Chr1 5FN-minus profile 46790 46794 4.755 - . Name=5FN-minus-profile;sumScores=26;count=3
Chr1 5FN-minus profile 46795 46798 5.129 - . Name=5FN-minus-profile;sumScores=34;count=4
Chr1 5FN-minus profile 46799 46799 5.615 - . Name=5FN-minus-profile;sumScores=48;count=5
Chr1 5FN-minus profile 46800 46800 5.807 - . Name=5FN-minus-profile;sumScores=55;count=6
Chr1 5FN-minus profile 46801 46801 6.539 - . Name=5FN-minus-profile;sumScores=92;count=6
Chr1 5FN-minus profile 46802 46803 6.658 - . Name=5FN-minus-profile;sumScores=100;count=7
Chr1 5FN-minus profile 46804 46807 6.285 - . Name=5FN-minus-profile;sumScores=77;count=5
Chr1 5FN-minus profile 46808 46810 6.539 - . Name=5FN-minus-profile;sumScores=92;count=7
Chr1 5FN-minus profile 46811 46812 6.555 - . Name=5FN-minus-profile;sumScores=93;count=8
Chr1 5FN-minus profile 46813 46816 6.700 - . Name=5FN-minus-profile;sumScores=103;count=8
Chr1 5FN-minus profile 46817 46818 6.375 - . Name=5FN-minus-profile;sumScores=82;count=6
Chr1 5FN-minus profile 46819 46819 5.426 - . Name=5FN-minus-profile;sumScores=42;count=5
Chr1 5FN-minus profile 46820 46824 5.129 - . Name=5FN-minus-profile;sumScores=34;count=4
Chr1 5FN-minus profile 46825 46825 4.858 - . Name=5FN-minus-profile;sumScores=28;count=3
Chr1 5FN-minus profile 46826 46828 4.322 - . Name=5FN-minus-profile;sumScores=19;count=2
Chr1 5FN-minus profile 46829 46829 4.248 - . Name=5FN-minus-profile;sumScores=18;count=1
Chr1 5FN-minus profile 46830 48210 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 48211 48228 2.585 - . Name=5FN-minus-profile;sumScores=5;count=1
Chr1 5FN-minus profile 48229 49185 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 49186 49191 6.229 - . Name=5FN-minus-profile;sumScores=74;count=2
Chr1 5FN-minus profile 49192 49202 6.492 - . Name=5FN-minus-profile;sumScores=89;count=3
Chr1 5FN-minus profile 49203 49203 6.426 - . Name=5FN-minus-profile;sumScores=85;count=2
Chr1 5FN-minus profile 49204 49205 4.000 - . Name=5FN-minus-profile;sumScores=15;count=1
Chr1 5FN-minus profile 49206 49207 4.087 - . Name=5FN-minus-profile;sumScores=16;count=2
Chr1 5FN-minus profile 49208 49208 4.170 - . Name=5FN-minus-profile;sumScores=17;count=3
Chr1 5FN-minus profile 49209 49218 1.585 - . Name=5FN-minus-profile;sumScores=2;count=2
Chr1 5FN-minus profile 49219 49222 3.459 - . Name=5FN-minus-profile;sumScores=10;count=3
Chr1 5FN-minus profile 49223 49224 3.322 - . Name=5FN-minus-profile;sumScores=9;count=2
Chr1 5FN-minus profile 49225 49235 3.170 - . Name=5FN-minus-profile;sumScores=8;count=1
Chr1 5FN-minus profile 49236 49246 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 49247 49247 5.170 - . Name=5FN-minus-profile;sumScores=35;count=1
Chr1 5FN-minus profile 49248 49253 5.644 - . Name=5FN-minus-profile;sumScores=49;count=2
Chr1 5FN-minus profile 49254 49254 5.700 - . Name=5FN-minus-profile;sumScores=51;count=3
Chr1 5FN-minus profile 49255 49255 7.459 - . Name=5FN-minus-profile;sumScores=175;count=4
Chr1 5FN-minus profile 49256 49256 7.615 - . Name=5FN-minus-profile;sumScores=195;count=5
Chr1 5FN-minus profile 49257 49258 8.039 - . Name=5FN-minus-profile;sumScores=262;count=7
Chr1 5FN-minus profile 49259 49259 8.077 - . Name=5FN-minus-profile;sumScores=269;count=8
Chr1 5FN-minus profile 49260 49260 8.087 - . Name=5FN-minus-profile;sumScores=271;count=9
Chr1 5FN-minus profile 49261 49261 9.335 - . Name=5FN-minus-profile;sumScores=645;count=10
Chr1 5FN-minus profile 49262 49262 9.403 - . Name=5FN-minus-profile;sumScores=676;count=11
Chr1 5FN-minus profile 49263 49263 9.564 - . Name=5FN-minus-profile;sumScores=756;count=13
Chr1 5FN-minus profile 49264 49264 9.570 - . Name=5FN-minus-profile;sumScores=759;count=14
Chr1 5FN-minus profile 49265 49265 9.482 - . Name=5FN-minus-profile;sumScores=714;count=13
Chr1 5FN-minus profile 49266 49267 9.706 - . Name=5FN-minus-profile;sumScores=834;count=15
Chr1 5FN-minus profile 49268 49268 9.731 - . Name=5FN-minus-profile;sumScores=849;count=17
Chr1 5FN-minus profile 49269 49269 9.781 - . Name=5FN-minus-profile;sumScores=879;count=18
Chr1 5FN-minus profile 49270 49270 9.845 - . Name=5FN-minus-profile;sumScores=919;count=19
Chr1 5FN-minus profile 49271 49271 10.051 - . Name=5FN-minus-profile;sumScores=1060;count=21
Chr1 5FN-minus profile 49272 49273 9.893 - . Name=5FN-minus-profile;sumScores=950;count=20
Chr1 5FN-minus profile 49274 49274 9.814 - . Name=5FN-minus-profile;sumScores=899;count=18
Chr1 5FN-minus profile 49275 49276 9.755 - . Name=5FN-minus-profile;sumScores=863;count=17
Chr1 5FN-minus profile 49277 49278 9.740 - . Name=5FN-minus-profile;sumScores=854;count=15
Chr1 5FN-minus profile 49279 49279 8.814 - . Name=5FN-minus-profile;sumScores=449;count=13
Chr1 5FN-minus profile 49280 49280 8.693 - . Name=5FN-minus-profile;sumScores=413;count=13
Chr1 5FN-minus profile 49281 49282 8.585 - . Name=5FN-minus-profile;sumScores=383;count=11
Chr1 5FN-minus profile 49283 49283 8.055 - . Name=5FN-minus-profile;sumScores=265;count=9
Chr1 5FN-minus profile 49284 49284 8.022 - . Name=5FN-minus-profile;sumScores=259;count=8
Chr1 5FN-minus profile 49285 49285 7.954 - . Name=5FN-minus-profile;sumScores=247;count=7
Chr1 5FN-minus profile 49286 49287 7.748 - . Name=5FN-minus-profile;sumScores=214;count=5
Chr1 5FN-minus profile 49288 49288 6.728 - . Name=5FN-minus-profile;sumScores=105;count=3
Chr1 5FN-minus profile 49289 49297 4.170 - . Name=5FN-minus-profile;sumScores=17;count=1
Chr1 5FN-minus profile 49298 49298 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 49299 49300 3.170 - . Name=5FN-minus-profile;sumScores=8;count=1
Chr1 5FN-minus profile 49301 49315 3.700 - . Name=5FN-minus-profile;sumScores=12;count=2
Chr1 5FN-minus profile 49316 49317 2.322 - . Name=5FN-minus-profile;sumScores=4;count=1
Chr1 5FN-minus profile 49318 50601 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 50602 50619 2.322 - . Name=5FN-minus-profile;sumScores=4;count=1
Chr1 5FN-minus profile 50620 51056 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 51057 51067 1.585 - . Name=5FN-minus-profile;sumScores=2;count=1
Chr1 5FN-minus profile 51068 51074 3.000 - . Name=5FN-minus-profile;sumScores=7;count=2
Chr1 5FN-minus profile 51075 51078 2.585 - . Name=5FN-minus-profile;sumScores=5;count=1
Chr1 5FN-minus profile 51079 51082 2.807 - . Name=5FN-minus-profile;sumScores=6;count=2
Chr1 5FN-minus profile 51083 51085 3.000 - . Name=5FN-minus-profile;sumScores=7;count=3
Chr1 5FN-minus profile 51086 51086 1.585 - . Name=5FN-minus-profile;sumScores=2;count=2
Chr1 5FN-minus profile 51087 51096 4.000 - . Name=5FN-minus-profile;sumScores=15;count=3
Chr1 5FN-minus profile 51097 51100 3.907 - . Name=5FN-minus-profile;sumScores=14;count=2
Chr1 5FN-minus profile 51101 51103 3.807 - . Name=5FN-minus-profile;sumScores=13;count=1
Chr1 5FN-minus profile 51104 51104 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 51105 51122 4.700 - . Name=5FN-minus-profile;sumScores=25;count=1
Chr1 5FN-minus profile 51123 51126 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 51127 51127 2.000 - . Name=5FN-minus-profile;sumScores=3;count=1
Chr1 5FN-minus profile 51128 51132 5.358 - . Name=5FN-minus-profile;sumScores=40;count=2
Chr1 5FN-minus profile 51133 51144 5.524 - . Name=5FN-minus-profile;sumScores=45;count=3
Chr1 5FN-minus profile 51145 51150 2.585 - . Name=5FN-minus-profile;sumScores=5;count=1
Chr1 5FN-minus profile 51151 51152 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 51153 51153 4.000 - . Name=5FN-minus-profile;sumScores=15;count=1
Chr1 5FN-minus profile 51154 51159 5.087 - . Name=5FN-minus-profile;sumScores=33;count=2
Chr1 5FN-minus profile 51160 51161 5.170 - . Name=5FN-minus-profile;sumScores=35;count=3
Chr1 5FN-minus profile 51162 51162 6.895 - . Name=5FN-minus-profile;sumScores=118;count=4
Chr1 5FN-minus profile 51163 51163 10.046 - . Name=5FN-minus-profile;sumScores=1056;count=6
Chr1 5FN-minus profile 51164 51164 10.051 - . Name=5FN-minus-profile;sumScores=1060;count=7
Chr1 5FN-minus profile 51165 51165 10.150 - . Name=5FN-minus-profile;sumScores=1135;count=8
Chr1 5FN-minus profile 51166 51166 10.174 - . Name=5FN-minus-profile;sumScores=1154;count=9
Chr1 5FN-minus profile 51167 51167 10.185 - . Name=5FN-minus-profile;sumScores=1163;count=11
Chr1 5FN-minus profile 51168 51168 10.503 - . Name=5FN-minus-profile;sumScores=1450;count=13
Chr1 5FN-minus profile 51169 51169 10.632 - . Name=5FN-minus-profile;sumScores=1586;count=15
Chr1 5FN-minus profile 51170 51170 13.044 - . Name=5FN-minus-profile;sumScores=8446;count=17
Chr1 5FN-minus profile 51171 51171 13.042 - . Name=5FN-minus-profile;sumScores=8435;count=16
Chr1 5FN-minus profile 51172 51172 13.081 - . Name=5FN-minus-profile;sumScores=8667;count=17
Chr1 5FN-minus profile 51173 51173 13.082 - . Name=5FN-minus-profile;sumScores=8670;count=18
Chr1 5FN-minus profile 51174 51176 13.084 - . Name=5FN-minus-profile;sumScores=8684;count=19
Chr1 5FN-minus profile 51177 51177 13.088 - . Name=5FN-minus-profile;sumScores=8704;count=21
Chr1 5FN-minus profile 51178 51178 13.087 - . Name=5FN-minus-profile;sumScores=8702;count=20
Chr1 5FN-minus profile 51179 51179 13.090 - . Name=5FN-minus-profile;sumScores=8721;count=21
Chr1 5FN-minus profile 51180 51180 12.923 - . Name=5FN-minus-profile;sumScores=7763;count=21
Chr1 5FN-minus profile 51181 51181 12.926 - . Name=5FN-minus-profile;sumScores=7780;count=21
Chr1 5FN-minus profile 51182 51182 12.915 - . Name=5FN-minus-profile;sumScores=7722;count=20
Chr1 5FN-minus profile 51183 51183 12.911 - . Name=5FN-minus-profile;sumScores=7703;count=19
Chr1 5FN-minus profile 51184 51184 12.910 - . Name=5FN-minus-profile;sumScores=7698;count=18
Chr1 5FN-minus profile 51185 51185 12.860 - . Name=5FN-minus-profile;sumScores=7433;count=16
Chr1 5FN-minus profile 51186 51186 12.847 - . Name=5FN-minus-profile;sumScores=7368;count=14
Chr1 5FN-minus profile 51187 51187 8.823 - . Name=5FN-minus-profile;sumScores=452;count=12
Chr1 5FN-minus profile 51188 51188 8.607 - . Name=5FN-minus-profile;sumScores=389;count=10
Chr1 5FN-minus profile 51189 51189 7.304 - . Name=5FN-minus-profile;sumScores=157;count=9
Chr1 5FN-minus profile 51190 51190 7.349 - . Name=5FN-minus-profile;sumScores=162;count=10
Chr1 5FN-minus profile 51191 51193 7.190 - . Name=5FN-minus-profile;sumScores=145;count=8
Chr1 5FN-minus profile 51194 51194 7.000 - . Name=5FN-minus-profile;sumScores=127;count=7
Chr1 5FN-minus profile 51195 51195 6.977 - . Name=5FN-minus-profile;sumScores=125;count=6
Chr1 5FN-minus profile 51196 51196 6.741 - . Name=5FN-minus-profile;sumScores=106;count=5
Chr1 5FN-minus profile 51197 51197 6.129 - . Name=5FN-minus-profile;sumScores=69;count=4
Chr1 5FN-minus profile 51198 51198 5.672 - . Name=5FN-minus-profile;sumScores=50;count=3
Chr1 5FN-minus profile 51199 51199 2.585 - . Name=5FN-minus-profile;sumScores=5;count=1
Chr1 5FN-minus profile 51200 51207 5.209 - . Name=5FN-minus-profile;sumScores=36;count=2
Chr1 5FN-minus profile 51208 51208 5.000 - . Name=5FN-minus-profile;sumScores=31;count=1
Chr1 5FN-minus profile 51209 51216 5.585 - . Name=5FN-minus-profile;sumScores=47;count=2
Chr1 5FN-minus profile 51217 51225 4.087 - . Name=5FN-minus-profile;sumScores=16;count=1
Chr1 5FN-minus profile 51226 59108 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 59109 59109 1.585 - . Name=5FN-minus-profile;sumScores=2;count=1
Chr1 5FN-minus profile 59110 59126 3.170 - . Name=5FN-minus-profile;sumScores=8;count=2
Chr1 5FN-minus profile 59127 59213 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 59214 59230 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 59231 61024 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 61025 61041 2.807 - . Name=5FN-minus-profile;sumScores=6;count=1
Chr1 5FN-minus profile 61042 61863 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 61864 61864 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 61865 61866 1.585 - . Name=5FN-minus-profile;sumScores=2;count=2
Chr1 5FN-minus profile 61867 61867 2.807 - . Name=5FN-minus-profile;sumScores=6;count=4
Chr1 5FN-minus profile 61868 61868 3.170 - . Name=5FN-minus-profile;sumScores=8;count=5
Chr1 5FN-minus profile 61869 61880 3.322 - . Name=5FN-minus-profile;sumScores=9;count=6
Chr1 5FN-minus profile 61881 61881 3.170 - . Name=5FN-minus-profile;sumScores=8;count=5
Chr1 5FN-minus profile 61882 61883 3.000 - . Name=5FN-minus-profile;sumScores=7;count=4
Chr1 5FN-minus profile 61884 61884 2.322 - . Name=5FN-minus-profile;sumScores=4;count=3
Chr1 5FN-minus profile 61885 61885 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 61886 62340 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 62341 62345 2.807 - . Name=5FN-minus-profile;sumScores=6;count=1
Chr1 5FN-minus profile 62346 62354 3.585 - . Name=5FN-minus-profile;sumScores=11;count=3
Chr1 5FN-minus profile 62355 62355 4.858 - . Name=5FN-minus-profile;sumScores=28;count=4
Chr1 5FN-minus profile 62356 62357 6.340 - . Name=5FN-minus-profile;sumScores=80;count=5
Chr1 5FN-minus profile 62358 62362 6.229 - . Name=5FN-minus-profile;sumScores=74;count=4
Chr1 5FN-minus profile 62363 62363 6.209 - . Name=5FN-minus-profile;sumScores=73;count=3
Chr1 5FN-minus profile 62364 62372 6.129 - . Name=5FN-minus-profile;sumScores=69;count=2
Chr1 5FN-minus profile 62373 63121 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 63122 63138 3.700 - . Name=5FN-minus-profile;sumScores=12;count=1
Chr1 5FN-minus profile 63139 63506 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 63507 63512 2.807 - . Name=5FN-minus-profile;sumScores=6;count=1
Chr1 5FN-minus profile 63513 63523 3.700 - . Name=5FN-minus-profile;sumScores=12;count=2
Chr1 5FN-minus profile 63524 63529 2.807 - . Name=5FN-minus-profile;sumScores=6;count=1
Chr1 5FN-minus profile 63530 63881 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 63882 63899 2.000 - . Name=5FN-minus-profile;sumScores=3;count=1
Chr1 5FN-minus profile 63900 63982 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 63983 63999 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 64000 64871 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 64872 64877 2.585 - . Name=5FN-minus-profile;sumScores=5;count=2
Chr1 5FN-minus profile 64878 64878 4.524 - . Name=5FN-minus-profile;sumScores=22;count=3
Chr1 5FN-minus profile 64879 64888 6.229 - . Name=5FN-minus-profile;sumScores=74;count=4
Chr1 5FN-minus profile 64889 64889 6.209 - . Name=5FN-minus-profile;sumScores=73;count=3
Chr1 5FN-minus profile 64890 64895 6.129 - . Name=5FN-minus-profile;sumScores=69;count=2
Chr1 5FN-minus profile 64896 66591 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 66592 66593 3.907 - . Name=5FN-minus-profile;sumScores=14;count=1
Chr1 5FN-minus profile 66594 66609 4.585 - . Name=5FN-minus-profile;sumScores=23;count=2
Chr1 5FN-minus profile 66610 66610 3.322 - . Name=5FN-minus-profile;sumScores=9;count=1
Chr1 5FN-minus profile 66611 67565 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 67566 67568 3.322 - . Name=5FN-minus-profile;sumScores=9;count=1
Chr1 5FN-minus profile 67569 67569 4.524 - . Name=5FN-minus-profile;sumScores=22;count=2
Chr1 5FN-minus profile 67570 67583 4.954 - . Name=5FN-minus-profile;sumScores=30;count=3
Chr1 5FN-minus profile 67584 67586 4.459 - . Name=5FN-minus-profile;sumScores=21;count=2
Chr1 5FN-minus profile 67587 67606 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 67607 67607 4.000 - . Name=5FN-minus-profile;sumScores=15;count=1
Chr1 5FN-minus profile 67608 67608 7.401 - . Name=5FN-minus-profile;sumScores=168;count=2
Chr1 5FN-minus profile 67609 67624 7.418 - . Name=5FN-minus-profile;sumScores=170;count=3
Chr1 5FN-minus profile 67625 67625 1.585 - . Name=5FN-minus-profile;sumScores=2;count=1
Chr1 5FN-minus profile 67626 68937 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 68938 68938 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 68939 68955 1.585 - . Name=5FN-minus-profile;sumScores=2;count=2
Chr1 5FN-minus profile 68956 71951 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 71952 71969 1.585 - . Name=5FN-minus-profile;sumScores=2;count=1
Chr1 5FN-minus profile 71970 72348 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 72349 72350 3.000 - . Name=5FN-minus-profile;sumScores=7;count=2
Chr1 5FN-minus profile 72351 72351 5.555 - . Name=5FN-minus-profile;sumScores=46;count=3
Chr1 5FN-minus profile 72352 72352 7.562 - . Name=5FN-minus-profile;sumScores=188;count=4
Chr1 5FN-minus profile 72353 72353 7.755 - . Name=5FN-minus-profile;sumScores=215;count=6
Chr1 5FN-minus profile 72354 72354 7.827 - . Name=5FN-minus-profile;sumScores=226;count=8
Chr1 5FN-minus profile 72355 72355 7.870 - . Name=5FN-minus-profile;sumScores=233;count=10
Chr1 5FN-minus profile 72356 72365 7.883 - . Name=5FN-minus-profile;sumScores=235;count=11
Chr1 5FN-minus profile 72366 72366 7.877 - . Name=5FN-minus-profile;sumScores=234;count=10
Chr1 5FN-minus profile 72367 72368 7.839 - . Name=5FN-minus-profile;sumScores=228;count=9
Chr1 5FN-minus profile 72369 72369 5.585 - . Name=5FN-minus-profile;sumScores=47;count=7
Chr1 5FN-minus profile 72370 72370 5.392 - . Name=5FN-minus-profile;sumScores=41;count=6
Chr1 5FN-minus profile 72371 72371 4.248 - . Name=5FN-minus-profile;sumScores=18;count=4
Chr1 5FN-minus profile 72372 72372 3.170 - . Name=5FN-minus-profile;sumScores=8;count=2
Chr1 5FN-minus profile 72373 74646 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 74647 74663 3.459 - . Name=5FN-minus-profile;sumScores=10;count=1
Chr1 5FN-minus profile 74664 74702 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 74703 74703 5.977 - . Name=5FN-minus-profile;sumScores=62;count=1
Chr1 5FN-minus profile 74704 74705 6.150 - . Name=5FN-minus-profile;sumScores=70;count=2
Chr1 5FN-minus profile 74706 74706 6.209 - . Name=5FN-minus-profile;sumScores=73;count=3
Chr1 5FN-minus profile 74707 74707 6.229 - . Name=5FN-minus-profile;sumScores=74;count=4
Chr1 5FN-minus profile 74708 74712 6.248 - . Name=5FN-minus-profile;sumScores=75;count=5
Chr1 5FN-minus profile 74713 74713 6.459 - . Name=5FN-minus-profile;sumScores=87;count=6
Chr1 5FN-minus profile 74714 74716 9.082 - . Name=5FN-minus-profile;sumScores=541;count=8
Chr1 5FN-minus profile 74717 74717 9.109 - . Name=5FN-minus-profile;sumScores=551;count=9
Chr1 5FN-minus profile 74718 74718 9.160 - . Name=5FN-minus-profile;sumScores=571;count=10
Chr1 5FN-minus profile 74719 74720 9.167 - . Name=5FN-minus-profile;sumScores=574;count=11
Chr1 5FN-minus profile 74721 74723 8.980 - . Name=5FN-minus-profile;sumScores=504;count=9
Chr1 5FN-minus profile 74724 74724 8.969 - . Name=5FN-minus-profile;sumScores=500;count=7
Chr1 5FN-minus profile 74725 74730 8.966 - . Name=5FN-minus-profile;sumScores=499;count=6
Chr1 5FN-minus profile 74731 74731 5.426 - . Name=5FN-minus-profile;sumScores=42;count=4
Chr1 5FN-minus profile 74732 74734 5.087 - . Name=5FN-minus-profile;sumScores=33;count=3
Chr1 5FN-minus profile 74735 74736 2.000 - . Name=5FN-minus-profile;sumScores=3;count=1
Chr1 5FN-minus profile 74737 74877 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 74878 74894 3.585 - . Name=5FN-minus-profile;sumScores=11;count=1
Chr1 5FN-minus profile 74895 76535 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 76536 76549 3.807 - . Name=5FN-minus-profile;sumScores=13;count=1
Chr1 5FN-minus profile 76550 76553 4.755 - . Name=5FN-minus-profile;sumScores=26;count=2
Chr1 5FN-minus profile 76554 76566 3.807 - . Name=5FN-minus-profile;sumScores=13;count=1
Chr1 5FN-minus profile 76567 79104 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 79105 79108 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 79109 79122 1.585 - . Name=5FN-minus-profile;sumScores=2;count=2
Chr1 5FN-minus profile 79123 79125 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 79126 84539 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 84540 84557 3.322 - . Name=5FN-minus-profile;sumScores=9;count=1
Chr1 5FN-minus profile 84558 84895 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 84896 84896 2.322 - . Name=5FN-minus-profile;sumScores=4;count=1
Chr1 5FN-minus profile 84897 84912 3.000 - . Name=5FN-minus-profile;sumScores=7;count=2
Chr1 5FN-minus profile 84913 84913 2.000 - . Name=5FN-minus-profile;sumScores=3;count=1
Chr1 5FN-minus profile 84914 84935 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 84936 84952 3.322 - . Name=5FN-minus-profile;sumScores=9;count=1
Chr1 5FN-minus profile 84953 84989 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 84990 85007 4.000 - . Name=5FN-minus-profile;sumScores=15;count=1
Chr1 5FN-minus profile 85008 88135 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 88136 88139 4.524 - . Name=5FN-minus-profile;sumScores=22;count=1
Chr1 5FN-minus profile 88140 88153 4.907 - . Name=5FN-minus-profile;sumScores=29;count=2
Chr1 5FN-minus profile 88154 88156 3.000 - . Name=5FN-minus-profile;sumScores=7;count=1
Chr1 5FN-minus profile 88157 90876 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 90877 90893 2.322 - . Name=5FN-minus-profile;sumScores=4;count=2
Chr1 5FN-minus profile 90894 90894 1.585 - . Name=5FN-minus-profile;sumScores=2;count=1
Chr1 5FN-minus profile 90895 96043 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 96044 96060 4.644 - . Name=5FN-minus-profile;sumScores=24;count=1
Chr1 5FN-minus profile 96061 97184 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 97185 97187 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 97188 97188 3.000 - . Name=5FN-minus-profile;sumScores=7;count=2
Chr1 5FN-minus profile 97189 97189 6.781 - . Name=5FN-minus-profile;sumScores=109;count=3
Chr1 5FN-minus profile 97190 97191 7.170 - . Name=5FN-minus-profile;sumScores=143;count=5
Chr1 5FN-minus profile 97192 97192 7.257 - . Name=5FN-minus-profile;sumScores=152;count=6
Chr1 5FN-minus profile 97193 97194 7.426 - . Name=5FN-minus-profile;sumScores=171;count=7
Chr1 5FN-minus profile 97195 97195 7.468 - . Name=5FN-minus-profile;sumScores=176;count=8
Chr1 5FN-minus profile 97196 97196 7.629 - . Name=5FN-minus-profile;sumScores=197;count=10
Chr1 5FN-minus profile 97197 97197 7.714 - . Name=5FN-minus-profile;sumScores=209;count=11
Chr1 5FN-minus profile 97198 97198 7.913 - . Name=5FN-minus-profile;sumScores=240;count=13
Chr1 5FN-minus profile 97199 97199 8.331 - . Name=5FN-minus-profile;sumScores=321;count=15
Chr1 5FN-minus profile 97200 97200 8.358 - . Name=5FN-minus-profile;sumScores=327;count=16
Chr1 5FN-minus profile 97201 97201 8.397 - . Name=5FN-minus-profile;sumScores=336;count=17
Chr1 5FN-minus profile 97202 97202 8.405 - . Name=5FN-minus-profile;sumScores=338;count=19
Chr1 5FN-minus profile 97203 97204 8.401 - . Name=5FN-minus-profile;sumScores=337;count=18
Chr1 5FN-minus profile 97205 97205 8.375 - . Name=5FN-minus-profile;sumScores=331;count=17
Chr1 5FN-minus profile 97206 97206 7.845 - . Name=5FN-minus-profile;sumScores=229;count=16
Chr1 5FN-minus profile 97207 97207 7.665 - . Name=5FN-minus-profile;sumScores=202;count=15
Chr1 5FN-minus profile 97208 97208 7.615 - . Name=5FN-minus-profile;sumScores=195;count=14
Chr1 5FN-minus profile 97209 97209 7.547 - . Name=5FN-minus-profile;sumScores=186;count=13
Chr1 5FN-minus profile 97210 97211 7.392 - . Name=5FN-minus-profile;sumScores=167;count=12
Chr1 5FN-minus profile 97212 97212 7.349 - . Name=5FN-minus-profile;sumScores=162;count=11
Chr1 5FN-minus profile 97213 97213 7.285 - . Name=5FN-minus-profile;sumScores=155;count=10
Chr1 5FN-minus profile 97214 97214 7.150 - . Name=5FN-minus-profile;sumScores=141;count=9
Chr1 5FN-minus profile 97215 97215 6.820 - . Name=5FN-minus-profile;sumScores=112;count=7
Chr1 5FN-minus profile 97216 97216 5.781 - . Name=5FN-minus-profile;sumScores=54;count=5
Chr1 5FN-minus profile 97217 97217 3.585 - . Name=5FN-minus-profile;sumScores=11;count=3
Chr1 5FN-minus profile 97218 97218 1.585 - . Name=5FN-minus-profile;sumScores=2;count=2
Chr1 5FN-minus profile 97219 97219 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 97220 99664 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 99665 99665 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 99666 99666 2.000 - . Name=5FN-minus-profile;sumScores=3;count=2
Chr1 5FN-minus profile 99667 99667 5.322 - . Name=5FN-minus-profile;sumScores=39;count=4
Chr1 5FN-minus profile 99668 99668 5.392 - . Name=5FN-minus-profile;sumScores=41;count=5
Chr1 5FN-minus profile 99669 99669 5.555 - . Name=5FN-minus-profile;sumScores=46;count=6
Chr1 5FN-minus profile 99670 99670 5.700 - . Name=5FN-minus-profile;sumScores=51;count=7
Chr1 5FN-minus profile 99671 99682 5.728 - . Name=5FN-minus-profile;sumScores=52;count=8
Chr1 5FN-minus profile 99683 99683 5.644 - . Name=5FN-minus-profile;sumScores=49;count=6
Chr1 5FN-minus profile 99684 99684 4.459 - . Name=5FN-minus-profile;sumScores=21;count=5
Chr1 5FN-minus profile 99685 99685 3.807 - . Name=5FN-minus-profile;sumScores=13;count=4
Chr1 5FN-minus profile 99686 99686 3.585 - . Name=5FN-minus-profile;sumScores=11;count=3
Chr1 5FN-minus profile 99687 99687 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 99688 101834 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 101835 101837 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 101838 101844 5.459 - . Name=5FN-minus-profile;sumScores=43;count=2
Chr1 5FN-minus profile 101845 101851 5.728 - . Name=5FN-minus-profile;sumScores=52;count=3
Chr1 5FN-minus profile 101852 101854 5.700 - . Name=5FN-minus-profile;sumScores=51;count=2
Chr1 5FN-minus profile 101855 101862 3.322 - . Name=5FN-minus-profile;sumScores=9;count=1
Chr1 5FN-minus profile 101863 104029 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 104030 104030 1.585 - . Name=5FN-minus-profile;sumScores=2;count=1
Chr1 5FN-minus profile 104031 104047 2.000 - . Name=5FN-minus-profile;sumScores=3;count=2
Chr1 5FN-minus profile 104048 107003 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 107004 107021 2.585 - . Name=5FN-minus-profile;sumScores=5;count=1
Chr1 5FN-minus profile 107022 108123 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 108124 108140 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 108141 110435 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 110436 110452 1.000 - . Name=5FN-minus-profile;sumScores=1;count=1
Chr1 5FN-minus profile 110453 118571 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-minus profile 118572 118588 2.585 - . Name=5FN-minus-profile;sumScores=5;count=1
Chr1 5FN-minus profile 118589 122333 0.000 - . Name=5FN-minus-profile;sumScores=0;count=0
Chr1 5FN-both profile 1 3635 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 3636 3652 3.170 . . Name=5FN-both-profile;sumScores=8;count=2
Chr1 5FN-both profile 3653 3653 2.585 . . Name=5FN-both-profile;sumScores=5;count=1
Chr1 5FN-both profile 3654 3667 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 3668 3669 4.524 . . Name=5FN-both-profile;sumScores=22;count=1
Chr1 5FN-both profile 3670 3673 4.585 . . Name=5FN-both-profile;sumScores=23;count=2
Chr1 5FN-both profile 3674 3684 4.907 . . Name=5FN-both-profile;sumScores=29;count=3
Chr1 5FN-both profile 3685 3687 3.000 . . Name=5FN-both-profile;sumScores=7;count=2
Chr1 5FN-both profile 3688 3690 2.807 . . Name=5FN-both-profile;sumScores=6;count=1
Chr1 5FN-both profile 3691 3697 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 3698 3715 2.585 . . Name=5FN-both-profile;sumScores=5;count=1
Chr1 5FN-both profile 3716 3971 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 3972 3988 3.907 . . Name=5FN-both-profile;sumScores=14;count=1
Chr1 5FN-both profile 3989 5679 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 5680 5696 2.000 . . Name=5FN-both-profile;sumScores=3;count=2
Chr1 5FN-both profile 5697 5697 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 5698 7991 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 7992 7993 2.000 . . Name=5FN-both-profile;sumScores=3;count=1
Chr1 5FN-both profile 7994 8003 2.807 . . Name=5FN-both-profile;sumScores=6;count=2
Chr1 5FN-both profile 8004 8008 3.000 . . Name=5FN-both-profile;sumScores=7;count=3
Chr1 5FN-both profile 8009 8010 2.322 . . Name=5FN-both-profile;sumScores=4;count=2
Chr1 5FN-both profile 8011 8020 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 8021 8664 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 8665 8667 4.000 . . Name=5FN-both-profile;sumScores=15;count=3
Chr1 5FN-both profile 8668 8668 4.248 . . Name=5FN-both-profile;sumScores=18;count=5
Chr1 5FN-both profile 8669 8669 9.014 . . Name=5FN-both-profile;sumScores=516;count=7
Chr1 5FN-both profile 8670 8672 9.974 . . Name=5FN-both-profile;sumScores=1005;count=9
Chr1 5FN-both profile 8673 8673 10.555 . . Name=5FN-both-profile;sumScores=1503;count=11
Chr1 5FN-both profile 8674 8681 10.961 . . Name=5FN-both-profile;sumScores=1992;count=13
Chr1 5FN-both profile 8682 8682 10.972 . . Name=5FN-both-profile;sumScores=2007;count=13
Chr1 5FN-both profile 8683 8683 10.989 . . Name=5FN-both-profile;sumScores=2031;count=12
Chr1 5FN-both profile 8684 8684 10.992 . . Name=5FN-both-profile;sumScores=2035;count=13
Chr1 5FN-both profile 8685 8685 10.990 . . Name=5FN-both-profile;sumScores=2033;count=12
Chr1 5FN-both profile 8686 8686 10.628 . . Name=5FN-both-profile;sumScores=1581;count=10
Chr1 5FN-both profile 8687 8687 10.526 . . Name=5FN-both-profile;sumScores=1474;count=8
Chr1 5FN-both profile 8688 8689 10.031 . . Name=5FN-both-profile;sumScores=1045;count=7
Chr1 5FN-both profile 8690 8690 9.217 . . Name=5FN-both-profile;sumScores=594;count=6
Chr1 5FN-both profile 8691 8691 8.931 . . Name=5FN-both-profile;sumScores=487;count=4
Chr1 5FN-both profile 8692 8699 5.883 . . Name=5FN-both-profile;sumScores=58;count=3
Chr1 5FN-both profile 8700 8701 2.322 . . Name=5FN-both-profile;sumScores=4;count=1
Chr1 5FN-both profile 8702 10576 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 10577 10582 2.807 . . Name=5FN-both-profile;sumScores=6;count=1
Chr1 5FN-both profile 10583 10593 3.000 . . Name=5FN-both-profile;sumScores=7;count=2
Chr1 5FN-both profile 10594 10599 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 10600 11455 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 11456 11472 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 11473 11981 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 11982 11983 2.322 . . Name=5FN-both-profile;sumScores=4;count=1
Chr1 5FN-both profile 11984 11984 3.585 . . Name=5FN-both-profile;sumScores=11;count=3
Chr1 5FN-both profile 11985 11985 9.234 . . Name=5FN-both-profile;sumScores=601;count=5
Chr1 5FN-both profile 11986 11998 9.292 . . Name=5FN-both-profile;sumScores=626;count=7
Chr1 5FN-both profile 11999 12000 9.283 . . Name=5FN-both-profile;sumScores=622;count=6
Chr1 5FN-both profile 12001 12001 9.269 . . Name=5FN-both-profile;sumScores=616;count=5
Chr1 5FN-both profile 12002 12002 4.700 . . Name=5FN-both-profile;sumScores=25;count=2
Chr1 5FN-both profile 12003 12003 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 12004 12316 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 12317 12334 2.322 . . Name=5FN-both-profile;sumScores=4;count=1
Chr1 5FN-both profile 12335 12994 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 12995 12995 2.000 . . Name=5FN-both-profile;sumScores=3;count=2
Chr1 5FN-both profile 12996 12996 2.322 . . Name=5FN-both-profile;sumScores=4;count=3
Chr1 5FN-both profile 12997 12998 3.000 . . Name=5FN-both-profile;sumScores=7;count=4
Chr1 5FN-both profile 12999 12999 3.322 . . Name=5FN-both-profile;sumScores=9;count=5
Chr1 5FN-both profile 13000 13000 4.322 . . Name=5FN-both-profile;sumScores=19;count=7
Chr1 5FN-both profile 13001 13001 4.459 . . Name=5FN-both-profile;sumScores=21;count=8
Chr1 5FN-both profile 13002 13002 4.644 . . Name=5FN-both-profile;sumScores=24;count=9
Chr1 5FN-both profile 13003 13005 4.700 . . Name=5FN-both-profile;sumScores=25;count=10
Chr1 5FN-both profile 13006 13011 4.807 . . Name=5FN-both-profile;sumScores=27;count=11
Chr1 5FN-both profile 13012 13012 4.755 . . Name=5FN-both-profile;sumScores=26;count=10
Chr1 5FN-both profile 13013 13013 4.585 . . Name=5FN-both-profile;sumScores=23;count=8
Chr1 5FN-both profile 13014 13016 4.392 . . Name=5FN-both-profile;sumScores=20;count=7
Chr1 5FN-both profile 13017 13017 3.700 . . Name=5FN-both-profile;sumScores=12;count=5
Chr1 5FN-both profile 13018 13018 2.807 . . Name=5FN-both-profile;sumScores=6;count=3
Chr1 5FN-both profile 13019 13019 2.000 . . Name=5FN-both-profile;sumScores=3;count=2
Chr1 5FN-both profile 13020 13022 1.585 . . Name=5FN-both-profile;sumScores=2;count=1
Chr1 5FN-both profile 13023 13149 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 13150 13167 4.248 . . Name=5FN-both-profile;sumScores=18;count=1
Chr1 5FN-both profile 13168 13180 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 13181 13197 2.322 . . Name=5FN-both-profile;sumScores=4;count=1
Chr1 5FN-both profile 13198 13345 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 13346 13347 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 13348 13349 4.087 . . Name=5FN-both-profile;sumScores=16;count=2
Chr1 5FN-both profile 13350 13350 4.170 . . Name=5FN-both-profile;sumScores=17;count=3
Chr1 5FN-both profile 13351 13351 5.209 . . Name=5FN-both-profile;sumScores=36;count=5
Chr1 5FN-both profile 13352 13353 5.322 . . Name=5FN-both-profile;sumScores=39;count=6
Chr1 5FN-both profile 13354 13363 5.358 . . Name=5FN-both-profile;sumScores=40;count=7
Chr1 5FN-both profile 13364 13364 5.322 . . Name=5FN-both-profile;sumScores=39;count=6
Chr1 5FN-both profile 13365 13367 4.644 . . Name=5FN-both-profile;sumScores=24;count=5
Chr1 5FN-both profile 13368 13368 4.524 . . Name=5FN-both-profile;sumScores=22;count=3
Chr1 5FN-both profile 13369 13371 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 13372 13556 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 13557 13559 6.426 . . Name=5FN-both-profile;sumScores=85;count=1
Chr1 5FN-both profile 13560 13560 6.931 . . Name=5FN-both-profile;sumScores=121;count=2
Chr1 5FN-both profile 13561 13573 7.011 . . Name=5FN-both-profile;sumScores=128;count=3
Chr1 5FN-both profile 13574 13576 5.459 . . Name=5FN-both-profile;sumScores=43;count=2
Chr1 5FN-both profile 13577 13577 3.000 . . Name=5FN-both-profile;sumScores=7;count=1
Chr1 5FN-both profile 13578 13587 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 13588 13594 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 13595 13604 2.807 . . Name=5FN-both-profile;sumScores=6;count=2
Chr1 5FN-both profile 13605 13612 2.585 . . Name=5FN-both-profile;sumScores=5;count=1
Chr1 5FN-both profile 13613 13614 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 13615 13631 1.585 . . Name=5FN-both-profile;sumScores=2;count=1
Chr1 5FN-both profile 13632 13658 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 13659 13663 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 13664 13676 2.000 . . Name=5FN-both-profile;sumScores=3;count=2
Chr1 5FN-both profile 13677 13680 1.585 . . Name=5FN-both-profile;sumScores=2;count=1
Chr1 5FN-both profile 13681 14988 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 14989 14989 3.322 . . Name=5FN-both-profile;sumScores=9;count=2
Chr1 5FN-both profile 14990 15005 4.170 . . Name=5FN-both-profile;sumScores=17;count=3
Chr1 5FN-both profile 15006 15006 3.459 . . Name=5FN-both-profile;sumScores=10;count=2
Chr1 5FN-both profile 15007 15214 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 15215 15231 4.087 . . Name=5FN-both-profile;sumScores=16;count=1
Chr1 5FN-both profile 15232 16801 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 16802 16802 3.907 . . Name=5FN-both-profile;sumScores=14;count=1
Chr1 5FN-both profile 16803 16803 5.129 . . Name=5FN-both-profile;sumScores=34;count=2
Chr1 5FN-both profile 16804 16804 5.644 . . Name=5FN-both-profile;sumScores=49;count=3
Chr1 5FN-both profile 16805 16805 5.672 . . Name=5FN-both-profile;sumScores=50;count=4
Chr1 5FN-both profile 16806 16819 5.954 . . Name=5FN-both-profile;sumScores=61;count=6
Chr1 5FN-both profile 16820 16821 4.807 . . Name=5FN-both-profile;sumScores=27;count=4
Chr1 5FN-both profile 16822 16822 3.585 . . Name=5FN-both-profile;sumScores=11;count=2
Chr1 5FN-both profile 16823 23075 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 23076 23092 2.000 . . Name=5FN-both-profile;sumScores=3;count=1
Chr1 5FN-both profile 23093 23098 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 23099 23115 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 23116 29106 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 29107 29123 2.000 . . Name=5FN-both-profile;sumScores=3;count=1
Chr1 5FN-both profile 29124 31066 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 31067 31083 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 31084 33085 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 33086 33089 3.907 . . Name=5FN-both-profile;sumScores=14;count=1
Chr1 5FN-both profile 33090 33095 4.392 . . Name=5FN-both-profile;sumScores=20;count=2
Chr1 5FN-both profile 33096 33099 4.858 . . Name=5FN-both-profile;sumScores=28;count=3
Chr1 5FN-both profile 33100 33102 5.728 . . Name=5FN-both-profile;sumScores=52;count=4
Chr1 5FN-both profile 33103 33103 5.285 . . Name=5FN-both-profile;sumScores=38;count=3
Chr1 5FN-both profile 33104 33106 5.459 . . Name=5FN-both-profile;sumScores=43;count=4
Chr1 5FN-both profile 33107 33113 5.248 . . Name=5FN-both-profile;sumScores=37;count=3
Chr1 5FN-both profile 33114 33114 4.907 . . Name=5FN-both-profile;sumScores=29;count=2
Chr1 5FN-both profile 33115 33116 5.285 . . Name=5FN-both-profile;sumScores=38;count=3
Chr1 5FN-both profile 33117 33121 3.907 . . Name=5FN-both-profile;sumScores=14;count=2
Chr1 5FN-both profile 33122 33132 3.322 . . Name=5FN-both-profile;sumScores=9;count=1
Chr1 5FN-both profile 33133 35604 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 35605 35622 2.585 . . Name=5FN-both-profile;sumScores=5;count=1
Chr1 5FN-both profile 35623 37672 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 37673 37689 2.322 . . Name=5FN-both-profile;sumScores=4;count=1
Chr1 5FN-both profile 37690 37710 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 37711 37712 4.700 . . Name=5FN-both-profile;sumScores=25;count=1
Chr1 5FN-both profile 37713 37716 5.248 . . Name=5FN-both-profile;sumScores=37;count=2
Chr1 5FN-both profile 37717 37719 7.907 . . Name=5FN-both-profile;sumScores=239;count=3
Chr1 5FN-both profile 37720 37726 8.000 . . Name=5FN-both-profile;sumScores=255;count=4
Chr1 5FN-both profile 37727 37727 8.061 . . Name=5FN-both-profile;sumScores=266;count=5
Chr1 5FN-both profile 37728 37729 7.919 . . Name=5FN-both-profile;sumScores=241;count=4
Chr1 5FN-both profile 37730 37730 7.972 . . Name=5FN-both-profile;sumScores=250;count=5
Chr1 5FN-both profile 37731 37731 7.901 . . Name=5FN-both-profile;sumScores=238;count=4
Chr1 5FN-both profile 37732 37734 7.907 . . Name=5FN-both-profile;sumScores=239;count=5
Chr1 5FN-both profile 37735 37735 5.858 . . Name=5FN-both-profile;sumScores=57;count=7
Chr1 5FN-both profile 37736 37736 9.119 . . Name=5FN-both-profile;sumScores=555;count=9
Chr1 5FN-both profile 37737 37737 9.301 . . Name=5FN-both-profile;sumScores=630;count=11
Chr1 5FN-both profile 37738 37744 9.984 . . Name=5FN-both-profile;sumScores=1012;count=12
Chr1 5FN-both profile 37745 37745 10.551 . . Name=5FN-both-profile;sumScores=1499;count=13
Chr1 5FN-both profile 37746 37746 10.621 . . Name=5FN-both-profile;sumScores=1574;count=15
Chr1 5FN-both profile 37747 37747 10.946 . . Name=5FN-both-profile;sumScores=1972;count=17
Chr1 5FN-both profile 37748 37749 10.940 . . Name=5FN-both-profile;sumScores=1963;count=16
Chr1 5FN-both profile 37750 37751 10.939 . . Name=5FN-both-profile;sumScores=1962;count=15
Chr1 5FN-both profile 37752 37752 10.934 . . Name=5FN-both-profile;sumScores=1956;count=14
Chr1 5FN-both profile 37753 37753 10.607 . . Name=5FN-both-profile;sumScores=1559;count=11
Chr1 5FN-both profile 37754 37754 10.421 . . Name=5FN-both-profile;sumScores=1370;count=9
Chr1 5FN-both profile 37755 37755 10.146 . . Name=5FN-both-profile;sumScores=1132;count=7
Chr1 5FN-both profile 37756 37757 9.925 . . Name=5FN-both-profile;sumScores=971;count=6
Chr1 5FN-both profile 37758 37758 9.963 . . Name=5FN-both-profile;sumScores=997;count=8
Chr1 5FN-both profile 37759 37759 9.966 . . Name=5FN-both-profile;sumScores=999;count=9
Chr1 5FN-both profile 37760 37760 9.989 . . Name=5FN-both-profile;sumScores=1015;count=10
Chr1 5FN-both profile 37761 37761 11.316 . . Name=5FN-both-profile;sumScores=2549;count=12
Chr1 5FN-both profile 37762 37762 11.157 . . Name=5FN-both-profile;sumScores=2282;count=12
Chr1 5FN-both profile 37763 37763 11.032 . . Name=5FN-both-profile;sumScores=2093;count=10
Chr1 5FN-both profile 37764 37764 10.863 . . Name=5FN-both-profile;sumScores=1861;count=9
Chr1 5FN-both profile 37765 37774 10.732 . . Name=5FN-both-profile;sumScores=1700;count=8
Chr1 5FN-both profile 37775 37775 10.724 . . Name=5FN-both-profile;sumScores=1690;count=7
Chr1 5FN-both profile 37776 37777 10.708 . . Name=5FN-both-profile;sumScores=1672;count=5
Chr1 5FN-both profile 37778 37778 10.653 . . Name=5FN-both-profile;sumScores=1609;count=3
Chr1 5FN-both profile 37779 37781 2.807 . . Name=5FN-both-profile;sumScores=6;count=1
Chr1 5FN-both profile 37782 37800 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 37801 37804 3.000 . . Name=5FN-both-profile;sumScores=7;count=1
Chr1 5FN-both profile 37805 37807 3.459 . . Name=5FN-both-profile;sumScores=10;count=2
Chr1 5FN-both profile 37808 37817 4.700 . . Name=5FN-both-profile;sumScores=25;count=3
Chr1 5FN-both profile 37818 37819 4.248 . . Name=5FN-both-profile;sumScores=18;count=2
Chr1 5FN-both profile 37820 37820 4.755 . . Name=5FN-both-profile;sumScores=26;count=3
Chr1 5FN-both profile 37821 37821 4.954 . . Name=5FN-both-profile;sumScores=30;count=4
Chr1 5FN-both profile 37822 37822 4.807 . . Name=5FN-both-profile;sumScores=27;count=3
Chr1 5FN-both profile 37823 37825 5.170 . . Name=5FN-both-profile;sumScores=35;count=4
Chr1 5FN-both profile 37826 37826 4.392 . . Name=5FN-both-profile;sumScores=20;count=3
Chr1 5FN-both profile 37827 37834 4.755 . . Name=5FN-both-profile;sumScores=26;count=4
Chr1 5FN-both profile 37835 37835 5.807 . . Name=5FN-both-profile;sumScores=55;count=5
Chr1 5FN-both profile 37836 37837 6.209 . . Name=5FN-both-profile;sumScores=73;count=6
Chr1 5FN-both profile 37838 37838 5.954 . . Name=5FN-both-profile;sumScores=61;count=4
Chr1 5FN-both profile 37839 37840 6.022 . . Name=5FN-both-profile;sumScores=64;count=5
Chr1 5FN-both profile 37841 37841 5.833 . . Name=5FN-both-profile;sumScores=56;count=4
Chr1 5FN-both profile 37842 37843 5.954 . . Name=5FN-both-profile;sumScores=61;count=5
Chr1 5FN-both profile 37844 37852 5.807 . . Name=5FN-both-profile;sumScores=55;count=4
Chr1 5FN-both profile 37853 37856 3.170 . . Name=5FN-both-profile;sumScores=8;count=2
Chr1 5FN-both profile 37857 37859 2.585 . . Name=5FN-both-profile;sumScores=5;count=1
Chr1 5FN-both profile 37860 40925 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 40926 40943 2.322 . . Name=5FN-both-profile;sumScores=4;count=1
Chr1 5FN-both profile 40944 43874 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 43875 43891 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 43892 44934 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 44935 44951 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 44952 45103 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 45104 45120 3.170 . . Name=5FN-both-profile;sumScores=8;count=1
Chr1 5FN-both profile 45121 46542 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 46543 46543 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 46544 46559 5.555 . . Name=5FN-both-profile;sumScores=46;count=3
Chr1 5FN-both profile 46560 46560 5.524 . . Name=5FN-both-profile;sumScores=45;count=2
Chr1 5FN-both profile 46561 46689 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 46690 46707 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 46708 46711 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 46712 46712 3.700 . . Name=5FN-both-profile;sumScores=12;count=1
Chr1 5FN-both profile 46713 46729 5.129 . . Name=5FN-both-profile;sumScores=34;count=2
Chr1 5FN-both profile 46730 46742 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 46743 46752 5.459 . . Name=5FN-both-profile;sumScores=43;count=1
Chr1 5FN-both profile 46753 46759 5.728 . . Name=5FN-both-profile;sumScores=52;count=2
Chr1 5FN-both profile 46760 46765 3.322 . . Name=5FN-both-profile;sumScores=9;count=1
Chr1 5FN-both profile 46766 46770 3.807 . . Name=5FN-both-profile;sumScores=13;count=2
Chr1 5FN-both profile 46771 46771 2.322 . . Name=5FN-both-profile;sumScores=4;count=1
Chr1 5FN-both profile 46772 46783 2.585 . . Name=5FN-both-profile;sumScores=5;count=2
Chr1 5FN-both profile 46784 46785 2.322 . . Name=5FN-both-profile;sumScores=4;count=2
Chr1 5FN-both profile 46786 46786 2.585 . . Name=5FN-both-profile;sumScores=5;count=3
Chr1 5FN-both profile 46787 46789 4.807 . . Name=5FN-both-profile;sumScores=27;count=4
Chr1 5FN-both profile 46790 46794 4.755 . . Name=5FN-both-profile;sumScores=26;count=3
Chr1 5FN-both profile 46795 46798 5.129 . . Name=5FN-both-profile;sumScores=34;count=4
Chr1 5FN-both profile 46799 46799 5.615 . . Name=5FN-both-profile;sumScores=48;count=5
Chr1 5FN-both profile 46800 46800 5.807 . . Name=5FN-both-profile;sumScores=55;count=6
Chr1 5FN-both profile 46801 46801 6.539 . . Name=5FN-both-profile;sumScores=92;count=6
Chr1 5FN-both profile 46802 46803 6.658 . . Name=5FN-both-profile;sumScores=100;count=7
Chr1 5FN-both profile 46804 46807 6.285 . . Name=5FN-both-profile;sumScores=77;count=5
Chr1 5FN-both profile 46808 46810 6.539 . . Name=5FN-both-profile;sumScores=92;count=7
Chr1 5FN-both profile 46811 46812 6.555 . . Name=5FN-both-profile;sumScores=93;count=8
Chr1 5FN-both profile 46813 46816 6.700 . . Name=5FN-both-profile;sumScores=103;count=8
Chr1 5FN-both profile 46817 46818 6.375 . . Name=5FN-both-profile;sumScores=82;count=6
Chr1 5FN-both profile 46819 46819 5.426 . . Name=5FN-both-profile;sumScores=42;count=5
Chr1 5FN-both profile 46820 46824 5.129 . . Name=5FN-both-profile;sumScores=34;count=4
Chr1 5FN-both profile 46825 46825 4.858 . . Name=5FN-both-profile;sumScores=28;count=3
Chr1 5FN-both profile 46826 46828 4.322 . . Name=5FN-both-profile;sumScores=19;count=2
Chr1 5FN-both profile 46829 46829 4.248 . . Name=5FN-both-profile;sumScores=18;count=1
Chr1 5FN-both profile 46830 48210 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 48211 48228 2.585 . . Name=5FN-both-profile;sumScores=5;count=1
Chr1 5FN-both profile 48229 49185 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 49186 49191 6.229 . . Name=5FN-both-profile;sumScores=74;count=2
Chr1 5FN-both profile 49192 49202 6.492 . . Name=5FN-both-profile;sumScores=89;count=3
Chr1 5FN-both profile 49203 49203 6.426 . . Name=5FN-both-profile;sumScores=85;count=2
Chr1 5FN-both profile 49204 49205 4.000 . . Name=5FN-both-profile;sumScores=15;count=1
Chr1 5FN-both profile 49206 49206 4.087 . . Name=5FN-both-profile;sumScores=16;count=2
Chr1 5FN-both profile 49207 49207 4.858 . . Name=5FN-both-profile;sumScores=28;count=3
Chr1 5FN-both profile 49208 49208 4.954 . . Name=5FN-both-profile;sumScores=30;count=5
Chr1 5FN-both profile 49209 49209 4.170 . . Name=5FN-both-profile;sumScores=17;count=5
Chr1 5FN-both profile 49210 49218 4.248 . . Name=5FN-both-profile;sumScores=18;count=6
Chr1 5FN-both profile 49219 49222 4.755 . . Name=5FN-both-profile;sumScores=26;count=7
Chr1 5FN-both profile 49223 49223 4.700 . . Name=5FN-both-profile;sumScores=25;count=6
Chr1 5FN-both profile 49224 49224 3.807 . . Name=5FN-both-profile;sumScores=13;count=5
Chr1 5FN-both profile 49225 49225 3.585 . . Name=5FN-both-profile;sumScores=11;count=3
Chr1 5FN-both profile 49226 49226 3.322 . . Name=5FN-both-profile;sumScores=9;count=2
Chr1 5FN-both profile 49227 49235 3.170 . . Name=5FN-both-profile;sumScores=8;count=1
Chr1 5FN-both profile 49236 49246 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 49247 49247 5.170 . . Name=5FN-both-profile;sumScores=35;count=1
Chr1 5FN-both profile 49248 49253 5.644 . . Name=5FN-both-profile;sumScores=49;count=2
Chr1 5FN-both profile 49254 49254 5.700 . . Name=5FN-both-profile;sumScores=51;count=3
Chr1 5FN-both profile 49255 49255 7.459 . . Name=5FN-both-profile;sumScores=175;count=4
Chr1 5FN-both profile 49256 49256 7.615 . . Name=5FN-both-profile;sumScores=195;count=5
Chr1 5FN-both profile 49257 49258 8.039 . . Name=5FN-both-profile;sumScores=262;count=7
Chr1 5FN-both profile 49259 49259 8.077 . . Name=5FN-both-profile;sumScores=269;count=8
Chr1 5FN-both profile 49260 49260 8.087 . . Name=5FN-both-profile;sumScores=271;count=9
Chr1 5FN-both profile 49261 49261 9.335 . . Name=5FN-both-profile;sumScores=645;count=10
Chr1 5FN-both profile 49262 49262 9.403 . . Name=5FN-both-profile;sumScores=676;count=11
Chr1 5FN-both profile 49263 49263 9.564 . . Name=5FN-both-profile;sumScores=756;count=13
Chr1 5FN-both profile 49264 49264 9.570 . . Name=5FN-both-profile;sumScores=759;count=14
Chr1 5FN-both profile 49265 49265 9.482 . . Name=5FN-both-profile;sumScores=714;count=13
Chr1 5FN-both profile 49266 49267 9.706 . . Name=5FN-both-profile;sumScores=834;count=15
Chr1 5FN-both profile 49268 49268 9.731 . . Name=5FN-both-profile;sumScores=849;count=17
Chr1 5FN-both profile 49269 49269 9.781 . . Name=5FN-both-profile;sumScores=879;count=18
Chr1 5FN-both profile 49270 49270 9.845 . . Name=5FN-both-profile;sumScores=919;count=19
Chr1 5FN-both profile 49271 49271 10.051 . . Name=5FN-both-profile;sumScores=1060;count=21
Chr1 5FN-both profile 49272 49273 9.893 . . Name=5FN-both-profile;sumScores=950;count=20
Chr1 5FN-both profile 49274 49274 9.814 . . Name=5FN-both-profile;sumScores=899;count=18
Chr1 5FN-both profile 49275 49276 9.755 . . Name=5FN-both-profile;sumScores=863;count=17
Chr1 5FN-both profile 49277 49278 9.740 . . Name=5FN-both-profile;sumScores=854;count=15
Chr1 5FN-both profile 49279 49279 8.814 . . Name=5FN-both-profile;sumScores=449;count=13
Chr1 5FN-both profile 49280 49280 8.693 . . Name=5FN-both-profile;sumScores=413;count=13
Chr1 5FN-both profile 49281 49282 8.585 . . Name=5FN-both-profile;sumScores=383;count=11
Chr1 5FN-both profile 49283 49283 8.055 . . Name=5FN-both-profile;sumScores=265;count=9
Chr1 5FN-both profile 49284 49284 8.022 . . Name=5FN-both-profile;sumScores=259;count=8
Chr1 5FN-both profile 49285 49285 7.954 . . Name=5FN-both-profile;sumScores=247;count=7
Chr1 5FN-both profile 49286 49287 7.748 . . Name=5FN-both-profile;sumScores=214;count=5
Chr1 5FN-both profile 49288 49288 6.728 . . Name=5FN-both-profile;sumScores=105;count=3
Chr1 5FN-both profile 49289 49297 4.170 . . Name=5FN-both-profile;sumScores=17;count=1
Chr1 5FN-both profile 49298 49298 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 49299 49300 3.170 . . Name=5FN-both-profile;sumScores=8;count=1
Chr1 5FN-both profile 49301 49315 3.700 . . Name=5FN-both-profile;sumScores=12;count=2
Chr1 5FN-both profile 49316 49317 2.322 . . Name=5FN-both-profile;sumScores=4;count=1
Chr1 5FN-both profile 49318 50601 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 50602 50619 2.322 . . Name=5FN-both-profile;sumScores=4;count=1
Chr1 5FN-both profile 50620 51056 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 51057 51067 1.585 . . Name=5FN-both-profile;sumScores=2;count=1
Chr1 5FN-both profile 51068 51074 3.000 . . Name=5FN-both-profile;sumScores=7;count=2
Chr1 5FN-both profile 51075 51078 2.585 . . Name=5FN-both-profile;sumScores=5;count=1
Chr1 5FN-both profile 51079 51082 2.807 . . Name=5FN-both-profile;sumScores=6;count=2
Chr1 5FN-both profile 51083 51085 3.000 . . Name=5FN-both-profile;sumScores=7;count=3
Chr1 5FN-both profile 51086 51086 1.585 . . Name=5FN-both-profile;sumScores=2;count=2
Chr1 5FN-both profile 51087 51096 4.000 . . Name=5FN-both-profile;sumScores=15;count=3
Chr1 5FN-both profile 51097 51100 3.907 . . Name=5FN-both-profile;sumScores=14;count=2
Chr1 5FN-both profile 51101 51103 3.807 . . Name=5FN-both-profile;sumScores=13;count=1
Chr1 5FN-both profile 51104 51104 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 51105 51122 4.700 . . Name=5FN-both-profile;sumScores=25;count=1
Chr1 5FN-both profile 51123 51126 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 51127 51127 2.000 . . Name=5FN-both-profile;sumScores=3;count=1
Chr1 5FN-both profile 51128 51132 5.358 . . Name=5FN-both-profile;sumScores=40;count=2
Chr1 5FN-both profile 51133 51144 5.524 . . Name=5FN-both-profile;sumScores=45;count=3
Chr1 5FN-both profile 51145 51150 2.585 . . Name=5FN-both-profile;sumScores=5;count=1
Chr1 5FN-both profile 51151 51152 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 51153 51153 4.000 . . Name=5FN-both-profile;sumScores=15;count=1
Chr1 5FN-both profile 51154 51159 5.087 . . Name=5FN-both-profile;sumScores=33;count=2
Chr1 5FN-both profile 51160 51161 5.170 . . Name=5FN-both-profile;sumScores=35;count=3
Chr1 5FN-both profile 51162 51162 6.895 . . Name=5FN-both-profile;sumScores=118;count=4
Chr1 5FN-both profile 51163 51163 10.046 . . Name=5FN-both-profile;sumScores=1056;count=6
Chr1 5FN-both profile 51164 51164 10.051 . . Name=5FN-both-profile;sumScores=1060;count=7
Chr1 5FN-both profile 51165 51165 10.150 . . Name=5FN-both-profile;sumScores=1135;count=8
Chr1 5FN-both profile 51166 51166 10.174 . . Name=5FN-both-profile;sumScores=1154;count=9
Chr1 5FN-both profile 51167 51167 10.185 . . Name=5FN-both-profile;sumScores=1163;count=11
Chr1 5FN-both profile 51168 51168 10.503 . . Name=5FN-both-profile;sumScores=1450;count=13
Chr1 5FN-both profile 51169 51169 10.632 . . Name=5FN-both-profile;sumScores=1586;count=15
Chr1 5FN-both profile 51170 51170 13.044 . . Name=5FN-both-profile;sumScores=8446;count=17
Chr1 5FN-both profile 51171 51171 13.042 . . Name=5FN-both-profile;sumScores=8435;count=16
Chr1 5FN-both profile 51172 51172 13.081 . . Name=5FN-both-profile;sumScores=8667;count=17
Chr1 5FN-both profile 51173 51173 13.082 . . Name=5FN-both-profile;sumScores=8670;count=18
Chr1 5FN-both profile 51174 51176 13.084 . . Name=5FN-both-profile;sumScores=8684;count=19
Chr1 5FN-both profile 51177 51177 13.088 . . Name=5FN-both-profile;sumScores=8704;count=21
Chr1 5FN-both profile 51178 51178 13.087 . . Name=5FN-both-profile;sumScores=8702;count=20
Chr1 5FN-both profile 51179 51179 13.090 . . Name=5FN-both-profile;sumScores=8721;count=21
Chr1 5FN-both profile 51180 51180 12.923 . . Name=5FN-both-profile;sumScores=7763;count=21
Chr1 5FN-both profile 51181 51181 12.926 . . Name=5FN-both-profile;sumScores=7780;count=21
Chr1 5FN-both profile 51182 51182 12.915 . . Name=5FN-both-profile;sumScores=7722;count=20
Chr1 5FN-both profile 51183 51183 12.911 . . Name=5FN-both-profile;sumScores=7703;count=19
Chr1 5FN-both profile 51184 51184 12.910 . . Name=5FN-both-profile;sumScores=7698;count=18
Chr1 5FN-both profile 51185 51185 12.860 . . Name=5FN-both-profile;sumScores=7433;count=16
Chr1 5FN-both profile 51186 51186 12.847 . . Name=5FN-both-profile;sumScores=7368;count=14
Chr1 5FN-both profile 51187 51187 8.823 . . Name=5FN-both-profile;sumScores=452;count=12
Chr1 5FN-both profile 51188 51188 8.607 . . Name=5FN-both-profile;sumScores=389;count=10
Chr1 5FN-both profile 51189 51189 7.304 . . Name=5FN-both-profile;sumScores=157;count=9
Chr1 5FN-both profile 51190 51190 7.349 . . Name=5FN-both-profile;sumScores=162;count=10
Chr1 5FN-both profile 51191 51193 7.190 . . Name=5FN-both-profile;sumScores=145;count=8
Chr1 5FN-both profile 51194 51194 7.000 . . Name=5FN-both-profile;sumScores=127;count=7
Chr1 5FN-both profile 51195 51195 6.977 . . Name=5FN-both-profile;sumScores=125;count=6
Chr1 5FN-both profile 51196 51196 6.741 . . Name=5FN-both-profile;sumScores=106;count=5
Chr1 5FN-both profile 51197 51197 6.129 . . Name=5FN-both-profile;sumScores=69;count=4
Chr1 5FN-both profile 51198 51198 5.672 . . Name=5FN-both-profile;sumScores=50;count=3
Chr1 5FN-both profile 51199 51199 2.585 . . Name=5FN-both-profile;sumScores=5;count=1
Chr1 5FN-both profile 51200 51207 5.209 . . Name=5FN-both-profile;sumScores=36;count=2
Chr1 5FN-both profile 51208 51208 5.000 . . Name=5FN-both-profile;sumScores=31;count=1
Chr1 5FN-both profile 51209 51216 5.585 . . Name=5FN-both-profile;sumScores=47;count=2
Chr1 5FN-both profile 51217 51225 4.087 . . Name=5FN-both-profile;sumScores=16;count=1
Chr1 5FN-both profile 51226 52026 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 52027 52043 4.170 . . Name=5FN-both-profile;sumScores=17;count=1
Chr1 5FN-both profile 52044 52047 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 52048 52065 3.170 . . Name=5FN-both-profile;sumScores=8;count=1
Chr1 5FN-both profile 52066 59108 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 59109 59109 1.585 . . Name=5FN-both-profile;sumScores=2;count=1
Chr1 5FN-both profile 59110 59126 3.170 . . Name=5FN-both-profile;sumScores=8;count=2
Chr1 5FN-both profile 59127 59213 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 59214 59230 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 59231 59482 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 59483 59499 1.585 . . Name=5FN-both-profile;sumScores=2;count=1
Chr1 5FN-both profile 59500 61024 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 61025 61041 2.807 . . Name=5FN-both-profile;sumScores=6;count=1
Chr1 5FN-both profile 61042 61863 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 61864 61864 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 61865 61866 1.585 . . Name=5FN-both-profile;sumScores=2;count=2
Chr1 5FN-both profile 61867 61867 2.807 . . Name=5FN-both-profile;sumScores=6;count=4
Chr1 5FN-both profile 61868 61868 3.170 . . Name=5FN-both-profile;sumScores=8;count=5
Chr1 5FN-both profile 61869 61880 3.322 . . Name=5FN-both-profile;sumScores=9;count=6
Chr1 5FN-both profile 61881 61881 3.170 . . Name=5FN-both-profile;sumScores=8;count=5
Chr1 5FN-both profile 61882 61883 3.000 . . Name=5FN-both-profile;sumScores=7;count=4
Chr1 5FN-both profile 61884 61884 2.322 . . Name=5FN-both-profile;sumScores=4;count=3
Chr1 5FN-both profile 61885 61885 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 61886 62340 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 62341 62343 2.807 . . Name=5FN-both-profile;sumScores=6;count=1
Chr1 5FN-both profile 62344 62345 4.000 . . Name=5FN-both-profile;sumScores=15;count=2
Chr1 5FN-both profile 62346 62346 4.392 . . Name=5FN-both-profile;sumScores=20;count=4
Chr1 5FN-both profile 62347 62347 6.585 . . Name=5FN-both-profile;sumScores=95;count=6
Chr1 5FN-both profile 62348 62348 8.948 . . Name=5FN-both-profile;sumScores=493;count=8
Chr1 5FN-both profile 62349 62352 9.954 . . Name=5FN-both-profile;sumScores=991;count=10
Chr1 5FN-both profile 62353 62353 10.059 . . Name=5FN-both-profile;sumScores=1066;count=12
Chr1 5FN-both profile 62354 62354 10.517 . . Name=5FN-both-profile;sumScores=1464;count=14
Chr1 5FN-both profile 62355 62355 10.867 . . Name=5FN-both-profile;sumScores=1866;count=17
Chr1 5FN-both profile 62356 62357 10.906 . . Name=5FN-both-profile;sumScores=1918;count=18
Chr1 5FN-both profile 62358 62360 10.902 . . Name=5FN-both-profile;sumScores=1912;count=17
Chr1 5FN-both profile 62361 62362 10.895 . . Name=5FN-both-profile;sumScores=1903;count=16
Chr1 5FN-both profile 62363 62363 10.894 . . Name=5FN-both-profile;sumScores=1902;count=15
Chr1 5FN-both profile 62364 62364 10.834 . . Name=5FN-both-profile;sumScores=1824;count=13
Chr1 5FN-both profile 62365 62365 10.632 . . Name=5FN-both-profile;sumScores=1586;count=11
Chr1 5FN-both profile 62366 62366 10.027 . . Name=5FN-both-profile;sumScores=1042;count=9
Chr1 5FN-both profile 62367 62369 9.858 . . Name=5FN-both-profile;sumScores=927;count=8
Chr1 5FN-both profile 62370 62370 9.738 . . Name=5FN-both-profile;sumScores=853;count=7
Chr1 5FN-both profile 62371 62371 9.267 . . Name=5FN-both-profile;sumScores=615;count=5
Chr1 5FN-both profile 62372 62372 6.170 . . Name=5FN-both-profile;sumScores=71;count=3
Chr1 5FN-both profile 62373 63121 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 63122 63138 3.700 . . Name=5FN-both-profile;sumScores=12;count=1
Chr1 5FN-both profile 63139 63502 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 63503 63503 2.322 . . Name=5FN-both-profile;sumScores=4;count=2
Chr1 5FN-both profile 63504 63506 4.087 . . Name=5FN-both-profile;sumScores=16;count=3
Chr1 5FN-both profile 63507 63511 4.524 . . Name=5FN-both-profile;sumScores=22;count=4
Chr1 5FN-both profile 63512 63512 4.858 . . Name=5FN-both-profile;sumScores=28;count=5
Chr1 5FN-both profile 63513 63519 5.129 . . Name=5FN-both-profile;sumScores=34;count=6
Chr1 5FN-both profile 63520 63520 5.000 . . Name=5FN-both-profile;sumScores=31;count=5
Chr1 5FN-both profile 63521 63523 4.248 . . Name=5FN-both-profile;sumScores=18;count=3
Chr1 5FN-both profile 63524 63529 3.700 . . Name=5FN-both-profile;sumScores=12;count=2
Chr1 5FN-both profile 63530 63532 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 63533 63549 3.807 . . Name=5FN-both-profile;sumScores=13;count=1
Chr1 5FN-both profile 63550 63881 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 63882 63899 2.000 . . Name=5FN-both-profile;sumScores=3;count=1
Chr1 5FN-both profile 63900 63982 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 63983 63999 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 64000 64869 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 64870 64871 3.322 . . Name=5FN-both-profile;sumScores=9;count=1
Chr1 5FN-both profile 64872 64872 3.907 . . Name=5FN-both-profile;sumScores=14;count=3
Chr1 5FN-both profile 64873 64873 6.492 . . Name=5FN-both-profile;sumScores=89;count=5
Chr1 5FN-both profile 64874 64874 8.931 . . Name=5FN-both-profile;sumScores=487;count=7
Chr1 5FN-both profile 64875 64877 9.945 . . Name=5FN-both-profile;sumScores=985;count=9
Chr1 5FN-both profile 64878 64878 9.973 . . Name=5FN-both-profile;sumScores=1004;count=11
Chr1 5FN-both profile 64879 64880 10.046 . . Name=5FN-both-profile;sumScores=1056;count=12
Chr1 5FN-both profile 64881 64886 10.047 . . Name=5FN-both-profile;sumScores=1057;count=13
Chr1 5FN-both profile 64887 64888 10.035 . . Name=5FN-both-profile;sumScores=1048;count=12
Chr1 5FN-both profile 64889 64889 10.033 . . Name=5FN-both-profile;sumScores=1047;count=11
Chr1 5FN-both profile 64890 64890 9.922 . . Name=5FN-both-profile;sumScores=969;count=9
Chr1 5FN-both profile 64891 64891 9.516 . . Name=5FN-both-profile;sumScores=731;count=7
Chr1 5FN-both profile 64892 64892 7.555 . . Name=5FN-both-profile;sumScores=187;count=5
Chr1 5FN-both profile 64893 64895 6.190 . . Name=5FN-both-profile;sumScores=72;count=4
Chr1 5FN-both profile 64896 64897 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 64898 66591 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 66592 66593 3.907 . . Name=5FN-both-profile;sumScores=14;count=1
Chr1 5FN-both profile 66594 66609 4.585 . . Name=5FN-both-profile;sumScores=23;count=2
Chr1 5FN-both profile 66610 66610 3.322 . . Name=5FN-both-profile;sumScores=9;count=1
Chr1 5FN-both profile 66611 67565 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 67566 67568 3.322 . . Name=5FN-both-profile;sumScores=9;count=1
Chr1 5FN-both profile 67569 67569 4.524 . . Name=5FN-both-profile;sumScores=22;count=2
Chr1 5FN-both profile 67570 67583 4.954 . . Name=5FN-both-profile;sumScores=30;count=3
Chr1 5FN-both profile 67584 67586 4.459 . . Name=5FN-both-profile;sumScores=21;count=2
Chr1 5FN-both profile 67587 67606 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 67607 67607 4.000 . . Name=5FN-both-profile;sumScores=15;count=1
Chr1 5FN-both profile 67608 67608 7.401 . . Name=5FN-both-profile;sumScores=168;count=2
Chr1 5FN-both profile 67609 67624 7.418 . . Name=5FN-both-profile;sumScores=170;count=3
Chr1 5FN-both profile 67625 67625 1.585 . . Name=5FN-both-profile;sumScores=2;count=1
Chr1 5FN-both profile 67626 68937 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 68938 68938 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 68939 68955 1.585 . . Name=5FN-both-profile;sumScores=2;count=2
Chr1 5FN-both profile 68956 71951 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 71952 71969 1.585 . . Name=5FN-both-profile;sumScores=2;count=1
Chr1 5FN-both profile 71970 72338 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 72339 72342 3.907 . . Name=5FN-both-profile;sumScores=14;count=1
Chr1 5FN-both profile 72343 72346 4.087 . . Name=5FN-both-profile;sumScores=16;count=2
Chr1 5FN-both profile 72347 72348 5.248 . . Name=5FN-both-profile;sumScores=37;count=3
Chr1 5FN-both profile 72349 72349 5.555 . . Name=5FN-both-profile;sumScores=46;count=6
Chr1 5FN-both profile 72350 72350 9.238 . . Name=5FN-both-profile;sumScores=603;count=8
Chr1 5FN-both profile 72351 72351 9.533 . . Name=5FN-both-profile;sumScores=740;count=10
Chr1 5FN-both profile 72352 72352 9.853 . . Name=5FN-both-profile;sumScores=924;count=12
Chr1 5FN-both profile 72353 72353 9.926 . . Name=5FN-both-profile;sumScores=972;count=15
Chr1 5FN-both profile 72354 72354 9.948 . . Name=5FN-both-profile;sumScores=987;count=19
Chr1 5FN-both profile 72355 72355 9.959 . . Name=5FN-both-profile;sumScores=994;count=21
Chr1 5FN-both profile 72356 72359 9.941 . . Name=5FN-both-profile;sumScores=982;count=21
Chr1 5FN-both profile 72360 72363 9.938 . . Name=5FN-both-profile;sumScores=980;count=20
Chr1 5FN-both profile 72364 72364 9.907 . . Name=5FN-both-profile;sumScores=959;count=19
Chr1 5FN-both profile 72365 72365 9.922 . . Name=5FN-both-profile;sumScores=969;count=20
Chr1 5FN-both profile 72366 72366 9.920 . . Name=5FN-both-profile;sumScores=968;count=19
Chr1 5FN-both profile 72367 72367 9.799 . . Name=5FN-both-profile;sumScores=890;count=16
Chr1 5FN-both profile 72368 72368 8.257 . . Name=5FN-both-profile;sumScores=305;count=14
Chr1 5FN-both profile 72369 72369 6.375 . . Name=5FN-both-profile;sumScores=82;count=11
Chr1 5FN-both profile 72370 72370 5.807 . . Name=5FN-both-profile;sumScores=55;count=9
Chr1 5FN-both profile 72371 72371 5.000 . . Name=5FN-both-profile;sumScores=31;count=6
Chr1 5FN-both profile 72372 72372 4.248 . . Name=5FN-both-profile;sumScores=18;count=3
Chr1 5FN-both profile 72373 72381 3.459 . . Name=5FN-both-profile;sumScores=10;count=1
Chr1 5FN-both profile 72382 74646 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 74647 74663 3.459 . . Name=5FN-both-profile;sumScores=10;count=1
Chr1 5FN-both profile 74664 74702 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 74703 74703 5.977 . . Name=5FN-both-profile;sumScores=62;count=1
Chr1 5FN-both profile 74704 74705 6.150 . . Name=5FN-both-profile;sumScores=70;count=2
Chr1 5FN-both profile 74706 74706 6.209 . . Name=5FN-both-profile;sumScores=73;count=3
Chr1 5FN-both profile 74707 74707 6.229 . . Name=5FN-both-profile;sumScores=74;count=4
Chr1 5FN-both profile 74708 74712 6.248 . . Name=5FN-both-profile;sumScores=75;count=5
Chr1 5FN-both profile 74713 74713 6.459 . . Name=5FN-both-profile;sumScores=87;count=6
Chr1 5FN-both profile 74714 74716 9.082 . . Name=5FN-both-profile;sumScores=541;count=8
Chr1 5FN-both profile 74717 74717 9.109 . . Name=5FN-both-profile;sumScores=551;count=9
Chr1 5FN-both profile 74718 74718 9.160 . . Name=5FN-both-profile;sumScores=571;count=10
Chr1 5FN-both profile 74719 74720 9.167 . . Name=5FN-both-profile;sumScores=574;count=11
Chr1 5FN-both profile 74721 74723 8.980 . . Name=5FN-both-profile;sumScores=504;count=9
Chr1 5FN-both profile 74724 74724 8.969 . . Name=5FN-both-profile;sumScores=500;count=7
Chr1 5FN-both profile 74725 74730 8.966 . . Name=5FN-both-profile;sumScores=499;count=6
Chr1 5FN-both profile 74731 74731 5.426 . . Name=5FN-both-profile;sumScores=42;count=4
Chr1 5FN-both profile 74732 74734 5.087 . . Name=5FN-both-profile;sumScores=33;count=3
Chr1 5FN-both profile 74735 74736 2.000 . . Name=5FN-both-profile;sumScores=3;count=1
Chr1 5FN-both profile 74737 74877 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 74878 74894 3.585 . . Name=5FN-both-profile;sumScores=11;count=1
Chr1 5FN-both profile 74895 75474 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 75475 75491 2.000 . . Name=5FN-both-profile;sumScores=3;count=1
Chr1 5FN-both profile 75492 75584 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 75585 75601 1.585 . . Name=5FN-both-profile;sumScores=2;count=1
Chr1 5FN-both profile 75602 75682 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 75683 75700 3.000 . . Name=5FN-both-profile;sumScores=7;count=1
Chr1 5FN-both profile 75701 76535 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 76536 76549 3.807 . . Name=5FN-both-profile;sumScores=13;count=1
Chr1 5FN-both profile 76550 76553 4.755 . . Name=5FN-both-profile;sumScores=26;count=2
Chr1 5FN-both profile 76554 76566 3.807 . . Name=5FN-both-profile;sumScores=13;count=1
Chr1 5FN-both profile 76567 76785 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 76786 76802 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 76803 77543 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 77544 77560 2.322 . . Name=5FN-both-profile;sumScores=4;count=1
Chr1 5FN-both profile 77561 79104 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 79105 79108 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 79109 79122 1.585 . . Name=5FN-both-profile;sumScores=2;count=2
Chr1 5FN-both profile 79123 79125 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 79126 82961 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 82962 82978 2.585 . . Name=5FN-both-profile;sumScores=5;count=1
Chr1 5FN-both profile 82979 84539 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 84540 84557 3.322 . . Name=5FN-both-profile;sumScores=9;count=1
Chr1 5FN-both profile 84558 84895 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 84896 84896 2.322 . . Name=5FN-both-profile;sumScores=4;count=1
Chr1 5FN-both profile 84897 84912 3.000 . . Name=5FN-both-profile;sumScores=7;count=2
Chr1 5FN-both profile 84913 84913 2.000 . . Name=5FN-both-profile;sumScores=3;count=1
Chr1 5FN-both profile 84914 84935 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 84936 84952 3.322 . . Name=5FN-both-profile;sumScores=9;count=1
Chr1 5FN-both profile 84953 84989 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 84990 85007 4.000 . . Name=5FN-both-profile;sumScores=15;count=1
Chr1 5FN-both profile 85008 88135 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 88136 88139 4.524 . . Name=5FN-both-profile;sumScores=22;count=1
Chr1 5FN-both profile 88140 88153 4.907 . . Name=5FN-both-profile;sumScores=29;count=2
Chr1 5FN-both profile 88154 88156 3.000 . . Name=5FN-both-profile;sumScores=7;count=1
Chr1 5FN-both profile 88157 88895 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 88896 88912 2.000 . . Name=5FN-both-profile;sumScores=3;count=1
Chr1 5FN-both profile 88913 89617 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 89618 89635 3.907 . . Name=5FN-both-profile;sumScores=14;count=1
Chr1 5FN-both profile 89636 90876 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 90877 90877 3.000 . . Name=5FN-both-profile;sumScores=7;count=3
Chr1 5FN-both profile 90878 90878 3.170 . . Name=5FN-both-profile;sumScores=8;count=4
Chr1 5FN-both profile 90879 90893 3.585 . . Name=5FN-both-profile;sumScores=11;count=5
Chr1 5FN-both profile 90894 90894 2.807 . . Name=5FN-both-profile;sumScores=6;count=3
Chr1 5FN-both profile 90895 90895 2.000 . . Name=5FN-both-profile;sumScores=3;count=1
Chr1 5FN-both profile 90896 91363 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 91364 91379 2.322 . . Name=5FN-both-profile;sumScores=4;count=1
Chr1 5FN-both profile 91380 91380 4.807 . . Name=5FN-both-profile;sumScores=27;count=2
Chr1 5FN-both profile 91381 91381 4.858 . . Name=5FN-both-profile;sumScores=28;count=3
Chr1 5FN-both profile 91382 91382 4.644 . . Name=5FN-both-profile;sumScores=24;count=2
Chr1 5FN-both profile 91383 91387 5.358 . . Name=5FN-both-profile;sumScores=40;count=3
Chr1 5FN-both profile 91388 91397 7.200 . . Name=5FN-both-profile;sumScores=146;count=5
Chr1 5FN-both profile 91398 91399 6.943 . . Name=5FN-both-profile;sumScores=122;count=3
Chr1 5FN-both profile 91400 91404 6.741 . . Name=5FN-both-profile;sumScores=106;count=2
Chr1 5FN-both profile 91405 91405 6.409 . . Name=5FN-both-profile;sumScores=84;count=1
Chr1 5FN-both profile 91406 91413 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 91414 91430 2.000 . . Name=5FN-both-profile;sumScores=3;count=1
Chr1 5FN-both profile 91431 91461 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 91462 91479 3.907 . . Name=5FN-both-profile;sumScores=14;count=1
Chr1 5FN-both profile 91480 91650 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 91651 91655 4.322 . . Name=5FN-both-profile;sumScores=19;count=1
Chr1 5FN-both profile 91656 91665 4.392 . . Name=5FN-both-profile;sumScores=20;count=2
Chr1 5FN-both profile 91666 91667 4.524 . . Name=5FN-both-profile;sumScores=22;count=3
Chr1 5FN-both profile 91668 91673 2.000 . . Name=5FN-both-profile;sumScores=3;count=2
Chr1 5FN-both profile 91674 91682 1.585 . . Name=5FN-both-profile;sumScores=2;count=1
Chr1 5FN-both profile 91683 91778 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 91779 91795 3.459 . . Name=5FN-both-profile;sumScores=10;count=2
Chr1 5FN-both profile 91796 91796 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 91797 95598 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 95599 95615 3.459 . . Name=5FN-both-profile;sumScores=10;count=1
Chr1 5FN-both profile 95616 96019 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 96020 96036 2.807 . . Name=5FN-both-profile;sumScores=6;count=1
Chr1 5FN-both profile 96037 96041 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 96042 96042 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 96043 96043 2.585 . . Name=5FN-both-profile;sumScores=5;count=2
Chr1 5FN-both profile 96044 96058 5.392 . . Name=5FN-both-profile;sumScores=41;count=4
Chr1 5FN-both profile 96059 96060 5.358 . . Name=5FN-both-profile;sumScores=40;count=3
Chr1 5FN-both profile 96061 97184 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 97185 97187 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 97188 97188 3.000 . . Name=5FN-both-profile;sumScores=7;count=2
Chr1 5FN-both profile 97189 97189 7.219 . . Name=5FN-both-profile;sumScores=148;count=5
Chr1 5FN-both profile 97190 97191 7.516 . . Name=5FN-both-profile;sumScores=182;count=7
Chr1 5FN-both profile 97192 97192 7.585 . . Name=5FN-both-profile;sumScores=191;count=8
Chr1 5FN-both profile 97193 97194 7.775 . . Name=5FN-both-profile;sumScores=218;count=11
Chr1 5FN-both profile 97195 97195 7.807 . . Name=5FN-both-profile;sumScores=223;count=12
Chr1 5FN-both profile 97196 97196 7.937 . . Name=5FN-both-profile;sumScores=244;count=14
Chr1 5FN-both profile 97197 97197 8.044 . . Name=5FN-both-profile;sumScores=263;count=16
Chr1 5FN-both profile 97198 97198 8.209 . . Name=5FN-both-profile;sumScores=295;count=19
Chr1 5FN-both profile 97199 97199 8.577 . . Name=5FN-both-profile;sumScores=381;count=22
Chr1 5FN-both profile 97200 97200 8.738 . . Name=5FN-both-profile;sumScores=426;count=24
Chr1 5FN-both profile 97201 97201 8.768 . . Name=5FN-both-profile;sumScores=435;count=25
Chr1 5FN-both profile 97202 97202 8.775 . . Name=5FN-both-profile;sumScores=437;count=27
Chr1 5FN-both profile 97203 97204 8.771 . . Name=5FN-both-profile;sumScores=436;count=26
Chr1 5FN-both profile 97205 97205 8.752 . . Name=5FN-both-profile;sumScores=430;count=25
Chr1 5FN-both profile 97206 97206 8.205 . . Name=5FN-both-profile;sumScores=294;count=23
Chr1 5FN-both profile 97207 97207 8.039 . . Name=5FN-both-profile;sumScores=262;count=21
Chr1 5FN-both profile 97208 97208 8.000 . . Name=5FN-both-profile;sumScores=255;count=20
Chr1 5FN-both profile 97209 97209 7.948 . . Name=5FN-both-profile;sumScores=246;count=19
Chr1 5FN-both profile 97210 97210 7.807 . . Name=5FN-both-profile;sumScores=223;count=17
Chr1 5FN-both profile 97211 97211 7.781 . . Name=5FN-both-profile;sumScores=219;count=16
Chr1 5FN-both profile 97212 97212 7.748 . . Name=5FN-both-profile;sumScores=214;count=15
Chr1 5FN-both profile 97213 97213 7.700 . . Name=5FN-both-profile;sumScores=207;count=14
Chr1 5FN-both profile 97214 97214 7.547 . . Name=5FN-both-profile;sumScores=186;count=12
Chr1 5FN-both profile 97215 97215 7.304 . . Name=5FN-both-profile;sumScores=157;count=10
Chr1 5FN-both profile 97216 97216 6.629 . . Name=5FN-both-profile;sumScores=98;count=7
Chr1 5FN-both profile 97217 97217 3.585 . . Name=5FN-both-profile;sumScores=11;count=3
Chr1 5FN-both profile 97218 97218 1.585 . . Name=5FN-both-profile;sumScores=2;count=2
Chr1 5FN-both profile 97219 97219 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 97220 97403 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 97404 97420 3.170 . . Name=5FN-both-profile;sumScores=8;count=1
Chr1 5FN-both profile 97421 97438 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 97439 97448 3.000 . . Name=5FN-both-profile;sumScores=7;count=1
Chr1 5FN-both profile 97449 97451 3.322 . . Name=5FN-both-profile;sumScores=9;count=2
Chr1 5FN-both profile 97452 97456 5.170 . . Name=5FN-both-profile;sumScores=35;count=3
Chr1 5FN-both profile 97457 97465 4.858 . . Name=5FN-both-profile;sumScores=28;count=2
Chr1 5FN-both profile 97466 97466 4.954 . . Name=5FN-both-profile;sumScores=30;count=3
Chr1 5FN-both profile 97467 97468 4.858 . . Name=5FN-both-profile;sumScores=28;count=2
Chr1 5FN-both profile 97469 97471 1.585 . . Name=5FN-both-profile;sumScores=2;count=1
Chr1 5FN-both profile 97472 97475 5.585 . . Name=5FN-both-profile;sumScores=47;count=2
Chr1 5FN-both profile 97476 97483 5.977 . . Name=5FN-both-profile;sumScores=62;count=3
Chr1 5FN-both profile 97484 97486 5.931 . . Name=5FN-both-profile;sumScores=60;count=2
Chr1 5FN-both profile 97487 97488 6.066 . . Name=5FN-both-profile;sumScores=66;count=3
Chr1 5FN-both profile 97489 97489 4.459 . . Name=5FN-both-profile;sumScores=21;count=2
Chr1 5FN-both profile 97490 97492 4.858 . . Name=5FN-both-profile;sumScores=28;count=3
Chr1 5FN-both profile 97493 97494 3.807 . . Name=5FN-both-profile;sumScores=13;count=2
Chr1 5FN-both profile 97495 97504 4.248 . . Name=5FN-both-profile;sumScores=18;count=3
Chr1 5FN-both profile 97505 97506 3.700 . . Name=5FN-both-profile;sumScores=12;count=2
Chr1 5FN-both profile 97507 97511 2.585 . . Name=5FN-both-profile;sumScores=5;count=1
Chr1 5FN-both profile 97512 97512 5.087 . . Name=5FN-both-profile;sumScores=33;count=2
Chr1 5FN-both profile 97513 97519 4.858 . . Name=5FN-both-profile;sumScores=28;count=1
Chr1 5FN-both profile 97520 97528 5.044 . . Name=5FN-both-profile;sumScores=32;count=2
Chr1 5FN-both profile 97529 97536 2.322 . . Name=5FN-both-profile;sumScores=4;count=1
Chr1 5FN-both profile 97537 99664 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 99665 99665 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 99666 99666 2.000 . . Name=5FN-both-profile;sumScores=3;count=2
Chr1 5FN-both profile 99667 99667 5.322 . . Name=5FN-both-profile;sumScores=39;count=4
Chr1 5FN-both profile 99668 99668 5.392 . . Name=5FN-both-profile;sumScores=41;count=5
Chr1 5FN-both profile 99669 99669 5.555 . . Name=5FN-both-profile;sumScores=46;count=6
Chr1 5FN-both profile 99670 99670 5.700 . . Name=5FN-both-profile;sumScores=51;count=7
Chr1 5FN-both profile 99671 99682 5.728 . . Name=5FN-both-profile;sumScores=52;count=8
Chr1 5FN-both profile 99683 99683 5.644 . . Name=5FN-both-profile;sumScores=49;count=6
Chr1 5FN-both profile 99684 99684 4.459 . . Name=5FN-both-profile;sumScores=21;count=5
Chr1 5FN-both profile 99685 99685 3.807 . . Name=5FN-both-profile;sumScores=13;count=4
Chr1 5FN-both profile 99686 99686 3.585 . . Name=5FN-both-profile;sumScores=11;count=3
Chr1 5FN-both profile 99687 99687 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 99688 99904 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 99905 99921 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 99922 99928 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 99929 99945 4.000 . . Name=5FN-both-profile;sumScores=15;count=1
Chr1 5FN-both profile 99946 99966 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 99967 99984 3.907 . . Name=5FN-both-profile;sumScores=14;count=1
Chr1 5FN-both profile 99985 99989 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 99990 100006 5.492 . . Name=5FN-both-profile;sumScores=44;count=2
Chr1 5FN-both profile 100007 100007 4.907 . . Name=5FN-both-profile;sumScores=29;count=1
Chr1 5FN-both profile 100008 100054 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 100055 100071 3.322 . . Name=5FN-both-profile;sumScores=9;count=1
Chr1 5FN-both profile 100072 101834 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 101835 101835 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 101836 101837 2.322 . . Name=5FN-both-profile;sumScores=4;count=2
Chr1 5FN-both profile 101838 101838 7.833 . . Name=5FN-both-profile;sumScores=227;count=5
Chr1 5FN-both profile 101839 101839 9.486 . . Name=5FN-both-profile;sumScores=716;count=7
Chr1 5FN-both profile 101840 101840 10.247 . . Name=5FN-both-profile;sumScores=1214;count=9
Chr1 5FN-both profile 101841 101841 10.735 . . Name=5FN-both-profile;sumScores=1703;count=11
Chr1 5FN-both profile 101842 101843 11.105 . . Name=5FN-both-profile;sumScores=2201;count=13
Chr1 5FN-both profile 101844 101844 11.105 . . Name=5FN-both-profile;sumScores=2202;count=14
Chr1 5FN-both profile 101845 101845 11.111 . . Name=5FN-both-profile;sumScores=2211;count=15
Chr1 5FN-both profile 101846 101851 11.116 . . Name=5FN-both-profile;sumScores=2219;count=16
Chr1 5FN-both profile 101852 101852 11.116 . . Name=5FN-both-profile;sumScores=2218;count=15
Chr1 5FN-both profile 101853 101854 11.114 . . Name=5FN-both-profile;sumScores=2215;count=14
Chr1 5FN-both profile 101855 101855 10.989 . . Name=5FN-both-profile;sumScores=2031;count=12
Chr1 5FN-both profile 101856 101856 10.917 . . Name=5FN-both-profile;sumScores=1932;count=10
Chr1 5FN-both profile 101857 101857 10.040 . . Name=5FN-both-profile;sumScores=1052;count=8
Chr1 5FN-both profile 101858 101858 9.886 . . Name=5FN-both-profile;sumScores=945;count=6
Chr1 5FN-both profile 101859 101859 6.044 . . Name=5FN-both-profile;sumScores=65;count=4
Chr1 5FN-both profile 101860 101861 4.248 . . Name=5FN-both-profile;sumScores=18;count=3
Chr1 5FN-both profile 101862 101862 4.170 . . Name=5FN-both-profile;sumScores=17;count=2
Chr1 5FN-both profile 101863 102325 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 102326 102342 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 102343 104022 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 104023 104023 2.585 . . Name=5FN-both-profile;sumScores=5;count=2
Chr1 5FN-both profile 104024 104027 9.522 . . Name=5FN-both-profile;sumScores=734;count=4
Chr1 5FN-both profile 104028 104028 9.539 . . Name=5FN-both-profile;sumScores=743;count=5
Chr1 5FN-both profile 104029 104029 9.568 . . Name=5FN-both-profile;sumScores=758;count=7
Chr1 5FN-both profile 104030 104030 9.581 . . Name=5FN-both-profile;sumScores=765;count=9
Chr1 5FN-both profile 104031 104039 9.583 . . Name=5FN-both-profile;sumScores=766;count=10
Chr1 5FN-both profile 104040 104040 9.576 . . Name=5FN-both-profile;sumScores=762;count=9
Chr1 5FN-both profile 104041 104041 7.977 . . Name=5FN-both-profile;sumScores=251;count=7
Chr1 5FN-both profile 104042 104045 5.044 . . Name=5FN-both-profile;sumScores=32;count=6
Chr1 5FN-both profile 104046 104046 3.585 . . Name=5FN-both-profile;sumScores=11;count=4
Chr1 5FN-both profile 104047 104047 2.000 . . Name=5FN-both-profile;sumScores=3;count=2
Chr1 5FN-both profile 104048 106305 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 106306 106322 3.459 . . Name=5FN-both-profile;sumScores=10;count=1
Chr1 5FN-both profile 106323 107003 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 107004 107021 2.585 . . Name=5FN-both-profile;sumScores=5;count=1
Chr1 5FN-both profile 107022 108123 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 108124 108140 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 108141 108998 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 108999 109015 2.585 . . Name=5FN-both-profile;sumScores=5;count=1
Chr1 5FN-both profile 109016 109035 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 109036 109036 4.170 . . Name=5FN-both-profile;sumScores=17;count=1
Chr1 5FN-both profile 109037 109043 5.358 . . Name=5FN-both-profile;sumScores=40;count=2
Chr1 5FN-both profile 109044 109052 5.555 . . Name=5FN-both-profile;sumScores=46;count=3
Chr1 5FN-both profile 109053 109053 4.907 . . Name=5FN-both-profile;sumScores=29;count=2
Chr1 5FN-both profile 109054 109060 2.807 . . Name=5FN-both-profile;sumScores=6;count=1
Chr1 5FN-both profile 109061 109077 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 109078 109087 2.322 . . Name=5FN-both-profile;sumScores=4;count=1
Chr1 5FN-both profile 109088 109094 3.000 . . Name=5FN-both-profile;sumScores=7;count=2
Chr1 5FN-both profile 109095 109104 2.000 . . Name=5FN-both-profile;sumScores=3;count=1
Chr1 5FN-both profile 109105 109132 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 109133 109148 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 109149 109149 2.585 . . Name=5FN-both-profile;sumScores=5;count=2
Chr1 5FN-both profile 109150 109165 2.322 . . Name=5FN-both-profile;sumScores=4;count=1
Chr1 5FN-both profile 109166 109186 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 109187 109203 2.585 . . Name=5FN-both-profile;sumScores=5;count=1
Chr1 5FN-both profile 109204 109526 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 109527 109544 3.170 . . Name=5FN-both-profile;sumScores=8;count=1
Chr1 5FN-both profile 109545 110432 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 110433 110435 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 110436 110436 3.700 . . Name=5FN-both-profile;sumScores=12;count=3
Chr1 5FN-both profile 110437 110449 3.807 . . Name=5FN-both-profile;sumScores=13;count=4
Chr1 5FN-both profile 110450 110452 3.700 . . Name=5FN-both-profile;sumScores=12;count=3
Chr1 5FN-both profile 110453 110454 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 110455 114259 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 114260 114276 3.585 . . Name=5FN-both-profile;sumScores=11;count=1
Chr1 5FN-both profile 114277 114288 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 114289 114290 4.585 . . Name=5FN-both-profile;sumScores=23;count=1
Chr1 5FN-both profile 114291 114305 6.109 . . Name=5FN-both-profile;sumScores=68;count=2
Chr1 5FN-both profile 114306 114308 5.524 . . Name=5FN-both-profile;sumScores=45;count=1
Chr1 5FN-both profile 114309 116796 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 116797 116813 1.585 . . Name=5FN-both-profile;sumScores=2;count=1
Chr1 5FN-both profile 116814 116894 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 116895 116912 2.585 . . Name=5FN-both-profile;sumScores=5;count=1
Chr1 5FN-both profile 116913 116979 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 116980 116996 2.000 . . Name=5FN-both-profile;sumScores=3;count=1
Chr1 5FN-both profile 116997 117009 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 117010 117023 2.000 . . Name=5FN-both-profile;sumScores=3;count=1
Chr1 5FN-both profile 117024 117026 3.322 . . Name=5FN-both-profile;sumScores=9;count=2
Chr1 5FN-both profile 117027 117027 4.322 . . Name=5FN-both-profile;sumScores=19;count=2
Chr1 5FN-both profile 117028 117029 6.087 . . Name=5FN-both-profile;sumScores=67;count=3
Chr1 5FN-both profile 117030 117033 6.304 . . Name=5FN-both-profile;sumScores=78;count=4
Chr1 5FN-both profile 117034 117035 7.735 . . Name=5FN-both-profile;sumScores=212;count=6
Chr1 5FN-both profile 117036 117036 8.103 . . Name=5FN-both-profile;sumScores=274;count=7
Chr1 5FN-both profile 117037 117041 8.109 . . Name=5FN-both-profile;sumScores=275;count=8
Chr1 5FN-both profile 117042 117044 8.077 . . Name=5FN-both-profile;sumScores=269;count=7
Chr1 5FN-both profile 117045 117045 7.707 . . Name=5FN-both-profile;sumScores=208;count=5
Chr1 5FN-both profile 117046 117046 7.735 . . Name=5FN-both-profile;sumScores=212;count=6
Chr1 5FN-both profile 117047 117048 7.658 . . Name=5FN-both-profile;sumScores=201;count=5
Chr1 5FN-both profile 117049 117050 7.687 . . Name=5FN-both-profile;sumScores=205;count=6
Chr1 5FN-both profile 117051 117051 6.714 . . Name=5FN-both-profile;sumScores=104;count=5
Chr1 5FN-both profile 117052 117052 6.170 . . Name=5FN-both-profile;sumScores=71;count=4
Chr1 5FN-both profile 117053 117053 3.322 . . Name=5FN-both-profile;sumScores=9;count=3
Chr1 5FN-both profile 117054 117062 4.585 . . Name=5FN-both-profile;sumScores=23;count=3
Chr1 5FN-both profile 117063 117065 4.322 . . Name=5FN-both-profile;sumScores=19;count=2
Chr1 5FN-both profile 117066 117070 4.000 . . Name=5FN-both-profile;sumScores=15;count=1
Chr1 5FN-both profile 117071 117076 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 117077 117078 5.555 . . Name=5FN-both-profile;sumScores=46;count=1
Chr1 5FN-both profile 117079 117079 5.755 . . Name=5FN-both-profile;sumScores=53;count=2
Chr1 5FN-both profile 117080 117081 6.022 . . Name=5FN-both-profile;sumScores=64;count=3
Chr1 5FN-both profile 117082 117087 6.229 . . Name=5FN-both-profile;sumScores=74;count=4
Chr1 5FN-both profile 117088 117094 6.426 . . Name=5FN-both-profile;sumScores=85;count=6
Chr1 5FN-both profile 117095 117096 5.322 . . Name=5FN-both-profile;sumScores=39;count=5
Chr1 5FN-both profile 117097 117098 4.459 . . Name=5FN-both-profile;sumScores=21;count=3
Chr1 5FN-both profile 117099 117104 3.585 . . Name=5FN-both-profile;sumScores=11;count=2
Chr1 5FN-both profile 117105 117105 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 117106 117108 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 117109 117110 1.585 . . Name=5FN-both-profile;sumScores=2;count=2
Chr1 5FN-both profile 117111 117125 3.000 . . Name=5FN-both-profile;sumScores=7;count=3
Chr1 5FN-both profile 117126 117126 2.807 . . Name=5FN-both-profile;sumScores=6;count=2
Chr1 5FN-both profile 117127 117128 2.585 . . Name=5FN-both-profile;sumScores=5;count=1
Chr1 5FN-both profile 117129 117141 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 117142 117156 3.000 . . Name=5FN-both-profile;sumScores=7;count=1
Chr1 5FN-both profile 117157 117159 3.322 . . Name=5FN-both-profile;sumScores=9;count=2
Chr1 5FN-both profile 117160 117161 1.585 . . Name=5FN-both-profile;sumScores=2;count=1
Chr1 5FN-both profile 117162 117163 2.000 . . Name=5FN-both-profile;sumScores=3;count=2
Chr1 5FN-both profile 117164 117174 2.585 . . Name=5FN-both-profile;sumScores=5;count=3
Chr1 5FN-both profile 117175 117178 2.000 . . Name=5FN-both-profile;sumScores=3;count=2
Chr1 5FN-both profile 117179 117181 1.585 . . Name=5FN-both-profile;sumScores=2;count=1
Chr1 5FN-both profile 117182 117352 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 117353 117369 1.585 . . Name=5FN-both-profile;sumScores=2;count=1
Chr1 5FN-both profile 117370 117384 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 117385 117402 2.585 . . Name=5FN-both-profile;sumScores=5;count=1
Chr1 5FN-both profile 117403 118571 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 118572 118588 2.585 . . Name=5FN-both-profile;sumScores=5;count=1
Chr1 5FN-both profile 118589 120982 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 120983 121000 3.170 . . Name=5FN-both-profile;sumScores=8;count=1
Chr1 5FN-both profile 121001 122333 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 122334 122351 1.585 . . Name=5FN-both-profile;sumScores=2;count=1
Chr1 5FN-both profile 122352 122468 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 122469 122485 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 122486 122807 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 122808 122824 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 122825 122996 0.000 . . Name=5FN-both-profile;sumScores=0;count=0
Chr1 5FN-both profile 122997 122997 1.000 . . Name=5FN-both-profile;sumScores=1;count=1
Chr1 5FN-both profile 122998 123014 2.000 . . Name=5FN-both-profile;sumScores=3;count=2
Chr1 5FN-plus profile 1 3635 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 3636 3652 3.170 + . Name=5FN-plus-profile;sumScores=8;count=2
Chr1 5FN-plus profile 3653 3653 2.585 + . Name=5FN-plus-profile;sumScores=5;count=1
Chr1 5FN-plus profile 3654 3667 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 3668 3669 4.524 + . Name=5FN-plus-profile;sumScores=22;count=1
Chr1 5FN-plus profile 3670 3673 4.585 + . Name=5FN-plus-profile;sumScores=23;count=2
Chr1 5FN-plus profile 3674 3684 4.907 + . Name=5FN-plus-profile;sumScores=29;count=3
Chr1 5FN-plus profile 3685 3687 3.000 + . Name=5FN-plus-profile;sumScores=7;count=2
Chr1 5FN-plus profile 3688 3690 2.807 + . Name=5FN-plus-profile;sumScores=6;count=1
Chr1 5FN-plus profile 3691 3697 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 3698 3715 2.585 + . Name=5FN-plus-profile;sumScores=5;count=1
Chr1 5FN-plus profile 3716 7993 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 7994 8003 2.000 + . Name=5FN-plus-profile;sumScores=3;count=1
Chr1 5FN-plus profile 8004 8010 2.322 + . Name=5FN-plus-profile;sumScores=4;count=2
Chr1 5FN-plus profile 8011 8020 1.000 + . Name=5FN-plus-profile;sumScores=1;count=1
Chr1 5FN-plus profile 8021 8664 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 8665 8668 3.170 + . Name=5FN-plus-profile;sumScores=8;count=2
Chr1 5FN-plus profile 8669 8669 8.986 + . Name=5FN-plus-profile;sumScores=506;count=4
Chr1 5FN-plus profile 8670 8672 9.960 + . Name=5FN-plus-profile;sumScores=995;count=6
Chr1 5FN-plus profile 8673 8673 10.545 + . Name=5FN-plus-profile;sumScores=1493;count=8
Chr1 5FN-plus profile 8674 8681 10.953 + . Name=5FN-plus-profile;sumScores=1982;count=10
Chr1 5FN-plus profile 8682 8682 10.964 + . Name=5FN-plus-profile;sumScores=1997;count=10
Chr1 5FN-plus profile 8683 8685 10.987 + . Name=5FN-plus-profile;sumScores=2028;count=10
Chr1 5FN-plus profile 8686 8686 10.624 + . Name=5FN-plus-profile;sumScores=1577;count=9
Chr1 5FN-plus profile 8687 8687 10.523 + . Name=5FN-plus-profile;sumScores=1470;count=7
Chr1 5FN-plus profile 8688 8689 10.025 + . Name=5FN-plus-profile;sumScores=1041;count=6
Chr1 5FN-plus profile 8690 8690 9.207 + . Name=5FN-plus-profile;sumScores=590;count=5
Chr1 5FN-plus profile 8691 8691 8.919 + . Name=5FN-plus-profile;sumScores=483;count=3
Chr1 5FN-plus profile 8692 8699 5.781 + . Name=5FN-plus-profile;sumScores=54;count=2
Chr1 5FN-plus profile 8700 10576 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 10577 10582 2.807 + . Name=5FN-plus-profile;sumScores=6;count=1
Chr1 5FN-plus profile 10583 10593 3.000 + . Name=5FN-plus-profile;sumScores=7;count=2
Chr1 5FN-plus profile 10594 10599 1.000 + . Name=5FN-plus-profile;sumScores=1;count=1
Chr1 5FN-plus profile 10600 11981 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 11982 11984 2.322 + . Name=5FN-plus-profile;sumScores=4;count=1
Chr1 5FN-plus profile 11985 11998 3.807 + . Name=5FN-plus-profile;sumScores=13;count=2
Chr1 5FN-plus profile 11999 12001 3.322 + . Name=5FN-plus-profile;sumScores=9;count=1
Chr1 5FN-plus profile 12002 12994 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 12995 12995 2.000 + . Name=5FN-plus-profile;sumScores=3;count=2
Chr1 5FN-plus profile 12996 12996 2.322 + . Name=5FN-plus-profile;sumScores=4;count=3
Chr1 5FN-plus profile 12997 13011 3.000 + . Name=5FN-plus-profile;sumScores=7;count=4
Chr1 5FN-plus profile 13012 13012 2.807 + . Name=5FN-plus-profile;sumScores=6;count=3
Chr1 5FN-plus profile 13013 13013 2.000 + . Name=5FN-plus-profile;sumScores=3;count=1
Chr1 5FN-plus profile 13014 13345 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 13346 13349 1.000 + . Name=5FN-plus-profile;sumScores=1;count=1
Chr1 5FN-plus profile 13350 13350 1.585 + . Name=5FN-plus-profile;sumScores=2;count=2
Chr1 5FN-plus profile 13351 13363 2.000 + . Name=5FN-plus-profile;sumScores=3;count=3
Chr1 5FN-plus profile 13364 13367 1.585 + . Name=5FN-plus-profile;sumScores=2;count=2
Chr1 5FN-plus profile 13368 13587 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 13588 13604 1.000 + . Name=5FN-plus-profile;sumScores=1;count=1
Chr1 5FN-plus profile 13605 14988 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 14989 14989 3.322 + . Name=5FN-plus-profile;sumScores=9;count=2
Chr1 5FN-plus profile 14990 15005 4.170 + . Name=5FN-plus-profile;sumScores=17;count=3
Chr1 5FN-plus profile 15006 15006 3.459 + . Name=5FN-plus-profile;sumScores=10;count=2
Chr1 5FN-plus profile 15007 15214 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 15215 15231 4.087 + . Name=5FN-plus-profile;sumScores=16;count=1
Chr1 5FN-plus profile 15232 16805 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 16806 16822 1.000 + . Name=5FN-plus-profile;sumScores=1;count=1
Chr1 5FN-plus profile 16823 23075 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 23076 23092 2.000 + . Name=5FN-plus-profile;sumScores=3;count=1
Chr1 5FN-plus profile 23093 23098 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 23099 23115 1.000 + . Name=5FN-plus-profile;sumScores=1;count=1
Chr1 5FN-plus profile 23116 29106 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 29107 29123 2.000 + . Name=5FN-plus-profile;sumScores=3;count=1
Chr1 5FN-plus profile 29124 37672 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 37673 37689 2.322 + . Name=5FN-plus-profile;sumScores=4;count=1
Chr1 5FN-plus profile 37690 37731 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 37732 37734 1.000 + . Name=5FN-plus-profile;sumScores=1;count=1
Chr1 5FN-plus profile 37735 37735 1.585 + . Name=5FN-plus-profile;sumScores=2;count=2
Chr1 5FN-plus profile 37736 37736 8.969 + . Name=5FN-plus-profile;sumScores=500;count=4
Chr1 5FN-plus profile 37737 37737 9.170 + . Name=5FN-plus-profile;sumScores=575;count=6
Chr1 5FN-plus profile 37738 37744 9.928 + . Name=5FN-plus-profile;sumScores=973;count=8
Chr1 5FN-plus profile 37745 37745 10.524 + . Name=5FN-plus-profile;sumScores=1471;count=10
Chr1 5FN-plus profile 37746 37746 10.595 + . Name=5FN-plus-profile;sumScores=1546;count=12
Chr1 5FN-plus profile 37747 37749 10.926 + . Name=5FN-plus-profile;sumScores=1944;count=14
Chr1 5FN-plus profile 37750 37752 10.925 + . Name=5FN-plus-profile;sumScores=1943;count=13
Chr1 5FN-plus profile 37753 37753 10.607 + . Name=5FN-plus-profile;sumScores=1559;count=11
Chr1 5FN-plus profile 37754 37754 10.421 + . Name=5FN-plus-profile;sumScores=1370;count=9
Chr1 5FN-plus profile 37755 37755 10.146 + . Name=5FN-plus-profile;sumScores=1132;count=7
Chr1 5FN-plus profile 37756 37761 9.925 + . Name=5FN-plus-profile;sumScores=971;count=6
Chr1 5FN-plus profile 37762 37762 9.202 + . Name=5FN-plus-profile;sumScores=588;count=5
Chr1 5FN-plus profile 37763 37763 8.644 + . Name=5FN-plus-profile;sumScores=399;count=3
Chr1 5FN-plus profile 37764 37764 7.340 + . Name=5FN-plus-profile;sumScores=161;count=1
Chr1 5FN-plus profile 37765 44934 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 44935 44951 1.000 + . Name=5FN-plus-profile;sumScores=1;count=1
Chr1 5FN-plus profile 44952 45103 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 45104 45120 3.170 + . Name=5FN-plus-profile;sumScores=8;count=1
Chr1 5FN-plus profile 45121 46543 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 46544 46560 5.248 + . Name=5FN-plus-profile;sumScores=37;count=1
Chr1 5FN-plus profile 46561 49206 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 49207 49207 3.700 + . Name=5FN-plus-profile;sumScores=12;count=1
Chr1 5FN-plus profile 49208 49208 3.807 + . Name=5FN-plus-profile;sumScores=13;count=2
Chr1 5FN-plus profile 49209 49209 4.000 + . Name=5FN-plus-profile;sumScores=15;count=3
Chr1 5FN-plus profile 49210 49223 4.087 + . Name=5FN-plus-profile;sumScores=16;count=4
Chr1 5FN-plus profile 49224 49224 2.322 + . Name=5FN-plus-profile;sumScores=4;count=3
Chr1 5FN-plus profile 49225 49225 2.000 + . Name=5FN-plus-profile;sumScores=3;count=2
Chr1 5FN-plus profile 49226 49226 1.000 + . Name=5FN-plus-profile;sumScores=1;count=1
Chr1 5FN-plus profile 49227 52026 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 52027 52043 4.170 + . Name=5FN-plus-profile;sumScores=17;count=1
Chr1 5FN-plus profile 52044 52047 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 52048 52065 3.170 + . Name=5FN-plus-profile;sumScores=8;count=1
Chr1 5FN-plus profile 52066 59482 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 59483 59499 1.585 + . Name=5FN-plus-profile;sumScores=2;count=1
Chr1 5FN-plus profile 59500 62343 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 62344 62346 3.322 + . Name=5FN-plus-profile;sumScores=9;count=1
Chr1 5FN-plus profile 62347 62347 6.409 + . Name=5FN-plus-profile;sumScores=84;count=3
Chr1 5FN-plus profile 62348 62348 8.916 + . Name=5FN-plus-profile;sumScores=482;count=5
Chr1 5FN-plus profile 62349 62352 9.938 + . Name=5FN-plus-profile;sumScores=980;count=7
Chr1 5FN-plus profile 62353 62353 10.044 + . Name=5FN-plus-profile;sumScores=1055;count=9
Chr1 5FN-plus profile 62354 62354 10.506 + . Name=5FN-plus-profile;sumScores=1453;count=11
Chr1 5FN-plus profile 62355 62360 10.845 + . Name=5FN-plus-profile;sumScores=1838;count=13
Chr1 5FN-plus profile 62361 62363 10.838 + . Name=5FN-plus-profile;sumScores=1829;count=12
Chr1 5FN-plus profile 62364 62364 10.778 + . Name=5FN-plus-profile;sumScores=1755;count=11
Chr1 5FN-plus profile 62365 62365 10.568 + . Name=5FN-plus-profile;sumScores=1517;count=9
Chr1 5FN-plus profile 62366 62366 9.928 + . Name=5FN-plus-profile;sumScores=973;count=7
Chr1 5FN-plus profile 62367 62369 9.747 + . Name=5FN-plus-profile;sumScores=858;count=6
Chr1 5FN-plus profile 62370 62370 9.617 + . Name=5FN-plus-profile;sumScores=784;count=5
Chr1 5FN-plus profile 62371 62371 9.095 + . Name=5FN-plus-profile;sumScores=546;count=3
Chr1 5FN-plus profile 62372 62372 1.585 + . Name=5FN-plus-profile;sumScores=2;count=1
Chr1 5FN-plus profile 62373 63502 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 63503 63503 2.322 + . Name=5FN-plus-profile;sumScores=4;count=2
Chr1 5FN-plus profile 63504 63511 4.087 + . Name=5FN-plus-profile;sumScores=16;count=3
Chr1 5FN-plus profile 63512 63519 4.524 + . Name=5FN-plus-profile;sumScores=22;count=4
Chr1 5FN-plus profile 63520 63520 4.322 + . Name=5FN-plus-profile;sumScores=19;count=3
Chr1 5FN-plus profile 63521 63529 2.807 + . Name=5FN-plus-profile;sumScores=6;count=1
Chr1 5FN-plus profile 63530 63532 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 63533 63549 3.807 + . Name=5FN-plus-profile;sumScores=13;count=1
Chr1 5FN-plus profile 63550 64869 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 64870 64872 3.322 + . Name=5FN-plus-profile;sumScores=9;count=1
Chr1 5FN-plus profile 64873 64873 6.409 + . Name=5FN-plus-profile;sumScores=84;count=3
Chr1 5FN-plus profile 64874 64874 8.916 + . Name=5FN-plus-profile;sumScores=482;count=5
Chr1 5FN-plus profile 64875 64877 9.938 + . Name=5FN-plus-profile;sumScores=980;count=7
Chr1 5FN-plus profile 64878 64880 9.941 + . Name=5FN-plus-profile;sumScores=982;count=8
Chr1 5FN-plus profile 64881 64886 9.943 + . Name=5FN-plus-profile;sumScores=983;count=9
Chr1 5FN-plus profile 64887 64889 9.929 + . Name=5FN-plus-profile;sumScores=974;count=8
Chr1 5FN-plus profile 64890 64890 9.815 + . Name=5FN-plus-profile;sumScores=900;count=7
Chr1 5FN-plus profile 64891 64891 9.373 + . Name=5FN-plus-profile;sumScores=662;count=5
Chr1 5FN-plus profile 64892 64892 6.895 + . Name=5FN-plus-profile;sumScores=118;count=3
Chr1 5FN-plus profile 64893 64895 2.000 + . Name=5FN-plus-profile;sumScores=3;count=2
Chr1 5FN-plus profile 64896 64897 1.000 + . Name=5FN-plus-profile;sumScores=1;count=1
Chr1 5FN-plus profile 64898 72338 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 72339 72342 3.907 + . Name=5FN-plus-profile;sumScores=14;count=1
Chr1 5FN-plus profile 72343 72346 4.087 + . Name=5FN-plus-profile;sumScores=16;count=2
Chr1 5FN-plus profile 72347 72348 5.248 + . Name=5FN-plus-profile;sumScores=37;count=3
Chr1 5FN-plus profile 72349 72349 5.322 + . Name=5FN-plus-profile;sumScores=39;count=4
Chr1 5FN-plus profile 72350 72350 9.222 + . Name=5FN-plus-profile;sumScores=596;count=6
Chr1 5FN-plus profile 72351 72351 9.441 + . Name=5FN-plus-profile;sumScores=694;count=7
Chr1 5FN-plus profile 72352 72352 9.526 + . Name=5FN-plus-profile;sumScores=736;count=8
Chr1 5FN-plus profile 72353 72353 9.566 + . Name=5FN-plus-profile;sumScores=757;count=9
Chr1 5FN-plus profile 72354 72355 9.574 + . Name=5FN-plus-profile;sumScores=761;count=11
Chr1 5FN-plus profile 72356 72359 9.547 + . Name=5FN-plus-profile;sumScores=747;count=10
Chr1 5FN-plus profile 72360 72363 9.543 + . Name=5FN-plus-profile;sumScores=745;count=9
Chr1 5FN-plus profile 72364 72364 9.502 + . Name=5FN-plus-profile;sumScores=724;count=8
Chr1 5FN-plus profile 72365 72366 9.522 + . Name=5FN-plus-profile;sumScores=734;count=9
Chr1 5FN-plus profile 72367 72367 9.373 + . Name=5FN-plus-profile;sumScores=662;count=7
Chr1 5FN-plus profile 72368 72368 6.285 + . Name=5FN-plus-profile;sumScores=77;count=5
Chr1 5FN-plus profile 72369 72369 5.170 + . Name=5FN-plus-profile;sumScores=35;count=4
Chr1 5FN-plus profile 72370 72370 3.907 + . Name=5FN-plus-profile;sumScores=14;count=3
Chr1 5FN-plus profile 72371 72371 3.807 + . Name=5FN-plus-profile;sumScores=13;count=2
Chr1 5FN-plus profile 72372 72381 3.459 + . Name=5FN-plus-profile;sumScores=10;count=1
Chr1 5FN-plus profile 72382 75474 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 75475 75491 2.000 + . Name=5FN-plus-profile;sumScores=3;count=1
Chr1 5FN-plus profile 75492 75584 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 75585 75601 1.585 + . Name=5FN-plus-profile;sumScores=2;count=1
Chr1 5FN-plus profile 75602 75682 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 75683 75700 3.000 + . Name=5FN-plus-profile;sumScores=7;count=1
Chr1 5FN-plus profile 75701 76785 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 76786 76802 1.000 + . Name=5FN-plus-profile;sumScores=1;count=1
Chr1 5FN-plus profile 76803 77543 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 77544 77560 2.322 + . Name=5FN-plus-profile;sumScores=4;count=1
Chr1 5FN-plus profile 77561 82961 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 82962 82978 2.585 + . Name=5FN-plus-profile;sumScores=5;count=1
Chr1 5FN-plus profile 82979 88895 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 88896 88912 2.000 + . Name=5FN-plus-profile;sumScores=3;count=1
Chr1 5FN-plus profile 88913 89617 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 89618 89635 3.907 + . Name=5FN-plus-profile;sumScores=14;count=1
Chr1 5FN-plus profile 89636 90876 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 90877 90877 2.000 + . Name=5FN-plus-profile;sumScores=3;count=1
Chr1 5FN-plus profile 90878 90878 2.322 + . Name=5FN-plus-profile;sumScores=4;count=2
Chr1 5FN-plus profile 90879 90893 3.000 + . Name=5FN-plus-profile;sumScores=7;count=3
Chr1 5FN-plus profile 90894 90894 2.322 + . Name=5FN-plus-profile;sumScores=4;count=2
Chr1 5FN-plus profile 90895 90895 2.000 + . Name=5FN-plus-profile;sumScores=3;count=1
Chr1 5FN-plus profile 90896 91363 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 91364 91379 2.322 + . Name=5FN-plus-profile;sumScores=4;count=1
Chr1 5FN-plus profile 91380 91380 4.807 + . Name=5FN-plus-profile;sumScores=27;count=2
Chr1 5FN-plus profile 91381 91381 4.858 + . Name=5FN-plus-profile;sumScores=28;count=3
Chr1 5FN-plus profile 91382 91382 4.644 + . Name=5FN-plus-profile;sumScores=24;count=2
Chr1 5FN-plus profile 91383 91387 5.358 + . Name=5FN-plus-profile;sumScores=40;count=3
Chr1 5FN-plus profile 91388 91397 7.200 + . Name=5FN-plus-profile;sumScores=146;count=5
Chr1 5FN-plus profile 91398 91399 6.943 + . Name=5FN-plus-profile;sumScores=122;count=3
Chr1 5FN-plus profile 91400 91404 6.741 + . Name=5FN-plus-profile;sumScores=106;count=2
Chr1 5FN-plus profile 91405 91405 6.409 + . Name=5FN-plus-profile;sumScores=84;count=1
Chr1 5FN-plus profile 91406 91413 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 91414 91430 2.000 + . Name=5FN-plus-profile;sumScores=3;count=1
Chr1 5FN-plus profile 91431 91461 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 91462 91479 3.907 + . Name=5FN-plus-profile;sumScores=14;count=1
Chr1 5FN-plus profile 91480 91650 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 91651 91655 4.322 + . Name=5FN-plus-profile;sumScores=19;count=1
Chr1 5FN-plus profile 91656 91665 4.392 + . Name=5FN-plus-profile;sumScores=20;count=2
Chr1 5FN-plus profile 91666 91667 4.524 + . Name=5FN-plus-profile;sumScores=22;count=3
Chr1 5FN-plus profile 91668 91673 2.000 + . Name=5FN-plus-profile;sumScores=3;count=2
Chr1 5FN-plus profile 91674 91682 1.585 + . Name=5FN-plus-profile;sumScores=2;count=1
Chr1 5FN-plus profile 91683 91778 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 91779 91795 3.459 + . Name=5FN-plus-profile;sumScores=10;count=2
Chr1 5FN-plus profile 91796 91796 1.000 + . Name=5FN-plus-profile;sumScores=1;count=1
Chr1 5FN-plus profile 91797 95598 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 95599 95615 3.459 + . Name=5FN-plus-profile;sumScores=10;count=1
Chr1 5FN-plus profile 95616 96019 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 96020 96036 2.807 + . Name=5FN-plus-profile;sumScores=6;count=1
Chr1 5FN-plus profile 96037 96041 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 96042 96042 1.000 + . Name=5FN-plus-profile;sumScores=1;count=1
Chr1 5FN-plus profile 96043 96043 2.585 + . Name=5FN-plus-profile;sumScores=5;count=2
Chr1 5FN-plus profile 96044 96058 4.170 + . Name=5FN-plus-profile;sumScores=17;count=3
Chr1 5FN-plus profile 96059 96060 4.087 + . Name=5FN-plus-profile;sumScores=16;count=2
Chr1 5FN-plus profile 96061 97188 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 97189 97192 5.322 + . Name=5FN-plus-profile;sumScores=39;count=2
Chr1 5FN-plus profile 97193 97196 5.585 + . Name=5FN-plus-profile;sumScores=47;count=4
Chr1 5FN-plus profile 97197 97197 5.781 + . Name=5FN-plus-profile;sumScores=54;count=5
Chr1 5FN-plus profile 97198 97198 5.807 + . Name=5FN-plus-profile;sumScores=55;count=6
Chr1 5FN-plus profile 97199 97199 5.931 + . Name=5FN-plus-profile;sumScores=60;count=7
Chr1 5FN-plus profile 97200 97205 6.644 + . Name=5FN-plus-profile;sumScores=99;count=8
Chr1 5FN-plus profile 97206 97206 6.044 + . Name=5FN-plus-profile;sumScores=65;count=7
Chr1 5FN-plus profile 97207 97209 5.931 + . Name=5FN-plus-profile;sumScores=60;count=6
Chr1 5FN-plus profile 97210 97210 5.833 + . Name=5FN-plus-profile;sumScores=56;count=5
Chr1 5FN-plus profile 97211 97213 5.728 + . Name=5FN-plus-profile;sumScores=52;count=4
Chr1 5FN-plus profile 97214 97215 5.524 + . Name=5FN-plus-profile;sumScores=45;count=3
Chr1 5FN-plus profile 97216 97216 5.492 + . Name=5FN-plus-profile;sumScores=44;count=2
Chr1 5FN-plus profile 97217 97403 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 97404 97420 3.170 + . Name=5FN-plus-profile;sumScores=8;count=1
Chr1 5FN-plus profile 97421 97438 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 97439 97448 3.000 + . Name=5FN-plus-profile;sumScores=7;count=1
Chr1 5FN-plus profile 97449 97451 3.322 + . Name=5FN-plus-profile;sumScores=9;count=2
Chr1 5FN-plus profile 97452 97456 5.170 + . Name=5FN-plus-profile;sumScores=35;count=3
Chr1 5FN-plus profile 97457 97465 4.858 + . Name=5FN-plus-profile;sumScores=28;count=2
Chr1 5FN-plus profile 97466 97466 4.954 + . Name=5FN-plus-profile;sumScores=30;count=3
Chr1 5FN-plus profile 97467 97468 4.858 + . Name=5FN-plus-profile;sumScores=28;count=2
Chr1 5FN-plus profile 97469 97471 1.585 + . Name=5FN-plus-profile;sumScores=2;count=1
Chr1 5FN-plus profile 97472 97475 5.585 + . Name=5FN-plus-profile;sumScores=47;count=2
Chr1 5FN-plus profile 97476 97483 5.977 + . Name=5FN-plus-profile;sumScores=62;count=3
Chr1 5FN-plus profile 97484 97486 5.931 + . Name=5FN-plus-profile;sumScores=60;count=2
Chr1 5FN-plus profile 97487 97488 6.066 + . Name=5FN-plus-profile;sumScores=66;count=3
Chr1 5FN-plus profile 97489 97489 4.459 + . Name=5FN-plus-profile;sumScores=21;count=2
Chr1 5FN-plus profile 97490 97492 4.858 + . Name=5FN-plus-profile;sumScores=28;count=3
Chr1 5FN-plus profile 97493 97494 3.807 + . Name=5FN-plus-profile;sumScores=13;count=2
Chr1 5FN-plus profile 97495 97504 4.248 + . Name=5FN-plus-profile;sumScores=18;count=3
Chr1 5FN-plus profile 97505 97506 3.700 + . Name=5FN-plus-profile;sumScores=12;count=2
Chr1 5FN-plus profile 97507 97511 2.585 + . Name=5FN-plus-profile;sumScores=5;count=1
Chr1 5FN-plus profile 97512 97512 5.087 + . Name=5FN-plus-profile;sumScores=33;count=2
Chr1 5FN-plus profile 97513 97519 4.858 + . Name=5FN-plus-profile;sumScores=28;count=1
Chr1 5FN-plus profile 97520 97528 5.044 + . Name=5FN-plus-profile;sumScores=32;count=2
Chr1 5FN-plus profile 97529 97536 2.322 + . Name=5FN-plus-profile;sumScores=4;count=1
Chr1 5FN-plus profile 97537 99904 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 99905 99921 1.000 + . Name=5FN-plus-profile;sumScores=1;count=1
Chr1 5FN-plus profile 99922 99928 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 99929 99945 4.000 + . Name=5FN-plus-profile;sumScores=15;count=1
Chr1 5FN-plus profile 99946 99966 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 99967 99984 3.907 + . Name=5FN-plus-profile;sumScores=14;count=1
Chr1 5FN-plus profile 99985 99989 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 99990 100006 5.492 + . Name=5FN-plus-profile;sumScores=44;count=2
Chr1 5FN-plus profile 100007 100007 4.907 + . Name=5FN-plus-profile;sumScores=29;count=1
Chr1 5FN-plus profile 100008 100054 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 100055 100071 3.322 + . Name=5FN-plus-profile;sumScores=9;count=1
Chr1 5FN-plus profile 100072 101835 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 101836 101837 2.000 + . Name=5FN-plus-profile;sumScores=3;count=1
Chr1 5FN-plus profile 101838 101838 7.531 + . Name=5FN-plus-profile;sumScores=184;count=3
Chr1 5FN-plus profile 101839 101839 9.397 + . Name=5FN-plus-profile;sumScores=673;count=5
Chr1 5FN-plus profile 101840 101840 10.195 + . Name=5FN-plus-profile;sumScores=1171;count=7
Chr1 5FN-plus profile 101841 101841 10.698 + . Name=5FN-plus-profile;sumScores=1660;count=9
Chr1 5FN-plus profile 101842 101843 11.076 + . Name=5FN-plus-profile;sumScores=2158;count=11
Chr1 5FN-plus profile 101844 101845 11.077 + . Name=5FN-plus-profile;sumScores=2159;count=12
Chr1 5FN-plus profile 101846 101852 11.082 + . Name=5FN-plus-profile;sumScores=2167;count=13
Chr1 5FN-plus profile 101853 101854 11.080 + . Name=5FN-plus-profile;sumScores=2164;count=12
Chr1 5FN-plus profile 101855 101855 10.982 + . Name=5FN-plus-profile;sumScores=2022;count=11
Chr1 5FN-plus profile 101856 101856 10.910 + . Name=5FN-plus-profile;sumScores=1923;count=9
Chr1 5FN-plus profile 101857 101857 10.028 + . Name=5FN-plus-profile;sumScores=1043;count=7
Chr1 5FN-plus profile 101858 101858 9.872 + . Name=5FN-plus-profile;sumScores=936;count=5
Chr1 5FN-plus profile 101859 101859 5.833 + . Name=5FN-plus-profile;sumScores=56;count=3
Chr1 5FN-plus profile 101860 101861 3.322 + . Name=5FN-plus-profile;sumScores=9;count=2
Chr1 5FN-plus profile 101862 101862 3.170 + . Name=5FN-plus-profile;sumScores=8;count=1
Chr1 5FN-plus profile 101863 102325 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 102326 102342 1.000 + . Name=5FN-plus-profile;sumScores=1;count=1
Chr1 5FN-plus profile 102343 104022 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 104023 104023 2.585 + . Name=5FN-plus-profile;sumScores=5;count=2
Chr1 5FN-plus profile 104024 104027 9.522 + . Name=5FN-plus-profile;sumScores=734;count=4
Chr1 5FN-plus profile 104028 104028 9.539 + . Name=5FN-plus-profile;sumScores=743;count=5
Chr1 5FN-plus profile 104029 104029 9.568 + . Name=5FN-plus-profile;sumScores=758;count=7
Chr1 5FN-plus profile 104030 104039 9.577 + . Name=5FN-plus-profile;sumScores=763;count=8
Chr1 5FN-plus profile 104040 104040 9.570 + . Name=5FN-plus-profile;sumScores=759;count=7
Chr1 5FN-plus profile 104041 104041 7.960 + . Name=5FN-plus-profile;sumScores=248;count=5
Chr1 5FN-plus profile 104042 104045 4.907 + . Name=5FN-plus-profile;sumScores=29;count=4
Chr1 5FN-plus profile 104046 104046 3.170 + . Name=5FN-plus-profile;sumScores=8;count=2
Chr1 5FN-plus profile 104047 106305 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 106306 106322 3.459 + . Name=5FN-plus-profile;sumScores=10;count=1
Chr1 5FN-plus profile 106323 108998 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 108999 109015 2.585 + . Name=5FN-plus-profile;sumScores=5;count=1
Chr1 5FN-plus profile 109016 109035 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 109036 109036 4.170 + . Name=5FN-plus-profile;sumScores=17;count=1
Chr1 5FN-plus profile 109037 109043 5.358 + . Name=5FN-plus-profile;sumScores=40;count=2
Chr1 5FN-plus profile 109044 109052 5.555 + . Name=5FN-plus-profile;sumScores=46;count=3
Chr1 5FN-plus profile 109053 109053 4.907 + . Name=5FN-plus-profile;sumScores=29;count=2
Chr1 5FN-plus profile 109054 109060 2.807 + . Name=5FN-plus-profile;sumScores=6;count=1
Chr1 5FN-plus profile 109061 109077 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 109078 109087 2.322 + . Name=5FN-plus-profile;sumScores=4;count=1
Chr1 5FN-plus profile 109088 109094 3.000 + . Name=5FN-plus-profile;sumScores=7;count=2
Chr1 5FN-plus profile 109095 109104 2.000 + . Name=5FN-plus-profile;sumScores=3;count=1
Chr1 5FN-plus profile 109105 109132 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 109133 109148 1.000 + . Name=5FN-plus-profile;sumScores=1;count=1
Chr1 5FN-plus profile 109149 109149 2.585 + . Name=5FN-plus-profile;sumScores=5;count=2
Chr1 5FN-plus profile 109150 109165 2.322 + . Name=5FN-plus-profile;sumScores=4;count=1
Chr1 5FN-plus profile 109166 109186 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 109187 109203 2.585 + . Name=5FN-plus-profile;sumScores=5;count=1
Chr1 5FN-plus profile 109204 109526 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 109527 109544 3.170 + . Name=5FN-plus-profile;sumScores=8;count=1
Chr1 5FN-plus profile 109545 110432 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 110433 110435 1.000 + . Name=5FN-plus-profile;sumScores=1;count=1
Chr1 5FN-plus profile 110436 110436 3.585 + . Name=5FN-plus-profile;sumScores=11;count=2
Chr1 5FN-plus profile 110437 110449 3.700 + . Name=5FN-plus-profile;sumScores=12;count=3
Chr1 5FN-plus profile 110450 110452 3.585 + . Name=5FN-plus-profile;sumScores=11;count=2
Chr1 5FN-plus profile 110453 110454 1.000 + . Name=5FN-plus-profile;sumScores=1;count=1
Chr1 5FN-plus profile 110455 114259 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 114260 114276 3.585 + . Name=5FN-plus-profile;sumScores=11;count=1
Chr1 5FN-plus profile 114277 114288 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 114289 114290 4.585 + . Name=5FN-plus-profile;sumScores=23;count=1
Chr1 5FN-plus profile 114291 114305 6.109 + . Name=5FN-plus-profile;sumScores=68;count=2
Chr1 5FN-plus profile 114306 114308 5.524 + . Name=5FN-plus-profile;sumScores=45;count=1
Chr1 5FN-plus profile 114309 116796 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 116797 116813 1.585 + . Name=5FN-plus-profile;sumScores=2;count=1
Chr1 5FN-plus profile 116814 116894 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 116895 116912 2.585 + . Name=5FN-plus-profile;sumScores=5;count=1
Chr1 5FN-plus profile 116913 116979 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 116980 116996 2.000 + . Name=5FN-plus-profile;sumScores=3;count=1
Chr1 5FN-plus profile 116997 117009 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 117010 117023 2.000 + . Name=5FN-plus-profile;sumScores=3;count=1
Chr1 5FN-plus profile 117024 117026 3.322 + . Name=5FN-plus-profile;sumScores=9;count=2
Chr1 5FN-plus profile 117027 117027 4.322 + . Name=5FN-plus-profile;sumScores=19;count=2
Chr1 5FN-plus profile 117028 117029 6.087 + . Name=5FN-plus-profile;sumScores=67;count=3
Chr1 5FN-plus profile 117030 117033 6.304 + . Name=5FN-plus-profile;sumScores=78;count=4
Chr1 5FN-plus profile 117034 117035 7.735 + . Name=5FN-plus-profile;sumScores=212;count=6
Chr1 5FN-plus profile 117036 117036 8.103 + . Name=5FN-plus-profile;sumScores=274;count=7
Chr1 5FN-plus profile 117037 117041 8.109 + . Name=5FN-plus-profile;sumScores=275;count=8
Chr1 5FN-plus profile 117042 117044 8.077 + . Name=5FN-plus-profile;sumScores=269;count=7
Chr1 5FN-plus profile 117045 117045 7.707 + . Name=5FN-plus-profile;sumScores=208;count=5
Chr1 5FN-plus profile 117046 117046 7.735 + . Name=5FN-plus-profile;sumScores=212;count=6
Chr1 5FN-plus profile 117047 117048 7.658 + . Name=5FN-plus-profile;sumScores=201;count=5
Chr1 5FN-plus profile 117049 117050 7.687 + . Name=5FN-plus-profile;sumScores=205;count=6
Chr1 5FN-plus profile 117051 117051 6.714 + . Name=5FN-plus-profile;sumScores=104;count=5
Chr1 5FN-plus profile 117052 117052 6.170 + . Name=5FN-plus-profile;sumScores=71;count=4
Chr1 5FN-plus profile 117053 117053 3.322 + . Name=5FN-plus-profile;sumScores=9;count=3
Chr1 5FN-plus profile 117054 117062 4.585 + . Name=5FN-plus-profile;sumScores=23;count=3
Chr1 5FN-plus profile 117063 117065 4.322 + . Name=5FN-plus-profile;sumScores=19;count=2
Chr1 5FN-plus profile 117066 117070 4.000 + . Name=5FN-plus-profile;sumScores=15;count=1
Chr1 5FN-plus profile 117071 117076 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 117077 117078 5.555 + . Name=5FN-plus-profile;sumScores=46;count=1
Chr1 5FN-plus profile 117079 117079 5.755 + . Name=5FN-plus-profile;sumScores=53;count=2
Chr1 5FN-plus profile 117080 117081 6.022 + . Name=5FN-plus-profile;sumScores=64;count=3
Chr1 5FN-plus profile 117082 117087 6.229 + . Name=5FN-plus-profile;sumScores=74;count=4
Chr1 5FN-plus profile 117088 117094 6.426 + . Name=5FN-plus-profile;sumScores=85;count=6
Chr1 5FN-plus profile 117095 117096 5.322 + . Name=5FN-plus-profile;sumScores=39;count=5
Chr1 5FN-plus profile 117097 117098 4.459 + . Name=5FN-plus-profile;sumScores=21;count=3
Chr1 5FN-plus profile 117099 117104 3.585 + . Name=5FN-plus-profile;sumScores=11;count=2
Chr1 5FN-plus profile 117105 117105 1.000 + . Name=5FN-plus-profile;sumScores=1;count=1
Chr1 5FN-plus profile 117106 117108 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 117109 117110 1.585 + . Name=5FN-plus-profile;sumScores=2;count=2
Chr1 5FN-plus profile 117111 117125 3.000 + . Name=5FN-plus-profile;sumScores=7;count=3
Chr1 5FN-plus profile 117126 117126 2.807 + . Name=5FN-plus-profile;sumScores=6;count=2
Chr1 5FN-plus profile 117127 117128 2.585 + . Name=5FN-plus-profile;sumScores=5;count=1
Chr1 5FN-plus profile 117129 117141 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 117142 117156 3.000 + . Name=5FN-plus-profile;sumScores=7;count=1
Chr1 5FN-plus profile 117157 117159 3.322 + . Name=5FN-plus-profile;sumScores=9;count=2
Chr1 5FN-plus profile 117160 117161 1.585 + . Name=5FN-plus-profile;sumScores=2;count=1
Chr1 5FN-plus profile 117162 117163 2.000 + . Name=5FN-plus-profile;sumScores=3;count=2
Chr1 5FN-plus profile 117164 117174 2.585 + . Name=5FN-plus-profile;sumScores=5;count=3
Chr1 5FN-plus profile 117175 117178 2.000 + . Name=5FN-plus-profile;sumScores=3;count=2
Chr1 5FN-plus profile 117179 117181 1.585 + . Name=5FN-plus-profile;sumScores=2;count=1
Chr1 5FN-plus profile 117182 117352 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 117353 117369 1.585 + . Name=5FN-plus-profile;sumScores=2;count=1
Chr1 5FN-plus profile 117370 117384 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 117385 117402 2.585 + . Name=5FN-plus-profile;sumScores=5;count=1
Chr1 5FN-plus profile 117403 120982 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
Chr1 5FN-plus profile 120983 121000 3.170 + . Name=5FN-plus-profile;sumScores=8;count=1
Chr1 5FN-plus profile 121001 136124 0.000 + . Name=5FN-plus-profile;sumScores=0;count=0
#
#
#
# Finally the features, which contribute to the bins and the profile.
# Here score column contain the logarithm of the real score. The actual score is denoted in the attributes
# and in the name.
Chr1 read_5FN smallRNA 3636 3653 2.000 + . Name=5FN_197476_x3;score=3
Chr1 read_5FN smallRNA 3636 3654 2.585 + . Name=5FN_83538_x5;score=5
Chr1 read_5FN smallRNA 3668 3685 4.524 + . Name=5FN_667616_x22;score=22
Chr1 read_5FN smallRNA 3670 3688 1.000 + . Name=5FN_387875_x1;score=1
Chr1 read_5FN smallRNA 3674 3691 2.807 + . Name=5FN_20855_x6;score=6
Chr1 read_5FN smallRNA 3698 3716 2.585 + . Name=5FN_5539_x5;score=5
Chr1 read_5FN smallRNA 7994 8011 2.000 + . Name=5FN_383757_x3;score=3
Chr1 read_5FN smallRNA 8004 8021 1.000 + . Name=5FN_400862_x1;score=1
Chr1 read_5FN smallRNA 8665 8682 3.000 + . Name=5FN_53353_x7;score=7
Chr1 read_5FN smallRNA 8665 8683 1.000 + . Name=5FN_633392_x1;score=1
Chr1 read_5FN smallRNA 8669 8686 8.820 + . Name=5FN_117309_x451;score=451
Chr1 read_5FN smallRNA 8669 8687 5.585 + . Name=5FN_83162_x47;score=47
Chr1 read_5FN smallRNA 8670 8687 5.931 + . Name=5FN_419005_x60;score=60
Chr1 read_5FN smallRNA 8670 8688 8.748 + . Name=5FN_552949_x429;score=429
Chr1 read_5FN smallRNA 8673 8690 8.820 + . Name=5FN_117309_x451;score=451
Chr1 read_5FN smallRNA 8673 8691 5.585 + . Name=5FN_83162_x47;score=47
Chr1 read_5FN smallRNA 8674 8691 5.931 + . Name=5FN_419005_x60;score=60
Chr1 read_5FN smallRNA 8674 8692 8.748 + . Name=5FN_552949_x429;score=429
Chr1 read_5FN smallRNA 8682 8700 4.524 + . Name=5FN_411555_x22;score=22
Chr1 read_5FN smallRNA 8683 8700 5.044 + . Name=5FN_633461_x32;score=32
Chr1 read_5FN smallRNA 10577 10594 2.807 + . Name=5FN_528910_x6;score=6
Chr1 read_5FN smallRNA 10583 10600 1.000 + . Name=5FN_440828_x1;score=1
Chr1 read_5FN smallRNA 11982 11999 2.322 + . Name=5FN_223695_x4;score=4
Chr1 read_5FN smallRNA 11985 12002 3.322 + . Name=5FN_266_x9;score=9
Chr1 read_5FN smallRNA 12995 13012 1.000 + . Name=5FN_184839_x1;score=1
Chr1 read_5FN smallRNA 12995 13013 1.585 + . Name=5FN_563201_x2;score=2
Chr1 read_5FN smallRNA 12996 13013 1.000 + . Name=5FN_135856_x1;score=1
Chr1 read_5FN smallRNA 12997 13014 2.000 + . Name=5FN_105296_x3;score=3
Chr1 read_5FN smallRNA 13346 13364 1.000 + . Name=5FN_407578_x1;score=1
Chr1 read_5FN smallRNA 13350 13368 1.000 + . Name=5FN_594604_x1;score=1
Chr1 read_5FN smallRNA 13351 13368 1.000 + . Name=5FN_286563_x1;score=1
Chr1 read_5FN smallRNA 13588 13605 1.000 + . Name=5FN_441927_x1;score=1
Chr1 read_5FN smallRNA 14989 15006 3.000 + . Name=5FN_544095_x7;score=7
Chr1 read_5FN smallRNA 14989 15007 1.585 + . Name=5FN_555998_x2;score=2
Chr1 read_5FN smallRNA 14990 15007 3.170 + . Name=5FN_253189_x8;score=8
Chr1 read_5FN smallRNA 15215 15232 4.087 + . Name=5FN_127115_x16;score=16
Chr1 read_5FN smallRNA 16806 16823 1.000 + . Name=5FN_253289_x1;score=1
Chr1 read_5FN smallRNA 23076 23093 2.000 + . Name=5FN_548597_x3;score=3
Chr1 read_5FN smallRNA 23099 23116 1.000 + . Name=5FN_403018_x1;score=1
Chr1 read_5FN smallRNA 29107 29124 2.000 + . Name=5FN_417290_x3;score=3
Chr1 read_5FN smallRNA 37673 37690 2.322 + . Name=5FN_505057_x4;score=4
Chr1 read_5FN smallRNA 37732 37750 1.000 + . Name=5FN_9934_x1;score=1
Chr1 read_5FN smallRNA 37735 37753 1.000 + . Name=5FN_632889_x1;score=1
Chr1 read_5FN smallRNA 37736 37753 8.585 + . Name=5FN_547473_x383;score=383
Chr1 read_5FN smallRNA 37736 37754 6.858 + . Name=5FN_465793_x115;score=115
Chr1 read_5FN smallRNA 37737 37754 6.229 + . Name=5FN_472788_x74;score=74
Chr1 read_5FN smallRNA 37737 37755 1.000 + . Name=5FN_60824_x1;score=1
Chr1 read_5FN smallRNA 37738 37755 7.895 + . Name=5FN_241364_x237;score=237
Chr1 read_5FN smallRNA 37738 37756 7.340 + . Name=5FN_366845_x161;score=161
Chr1 read_5FN smallRNA 37745 37762 8.585 + . Name=5FN_547473_x383;score=383
Chr1 read_5FN smallRNA 37745 37763 6.858 + . Name=5FN_465793_x115;score=115
Chr1 read_5FN smallRNA 37746 37763 6.229 + . Name=5FN_472788_x74;score=74
Chr1 read_5FN smallRNA 37746 37764 1.000 + . Name=5FN_60824_x1;score=1
Chr1 read_5FN smallRNA 37747 37764 7.895 + . Name=5FN_241364_x237;score=237
Chr1 read_5FN smallRNA 37747 37765 7.340 + . Name=5FN_366845_x161;score=161
Chr1 read_5FN smallRNA 44935 44952 1.000 + . Name=5FN_163722_x1;score=1
Chr1 read_5FN smallRNA 45104 45121 3.170 + . Name=5FN_9290_x8;score=8
Chr1 read_5FN smallRNA 46544 46561 5.248 + . Name=5FN_266102_x37;score=37
Chr1 read_5FN smallRNA 49207 49224 3.700 + . Name=5FN_251998_x12;score=12
Chr1 read_5FN smallRNA 49208 49225 1.000 + . Name=5FN_166518_x1;score=1
Chr1 read_5FN smallRNA 49209 49226 1.585 + . Name=5FN_20189_x2;score=2
Chr1 read_5FN smallRNA 49210 49227 1.000 + . Name=5FN_595692_x1;score=1
Chr1 read_5FN smallRNA 52027 52044 4.170 + . Name=5FN_590134_x17;score=17
Chr1 read_5FN smallRNA 52048 52066 3.170 + . Name=5FN_243486_x8;score=8
Chr1 read_5FN smallRNA 59483 59500 1.585 + . Name=5FN_171314_x2;score=2
Chr1 read_5FN smallRNA 62344 62361 3.322 + . Name=5FN_128631_x9;score=9
Chr1 read_5FN smallRNA 62347 62364 6.229 + . Name=5FN_472788_x74;score=74
Chr1 read_5FN smallRNA 62347 62365 1.000 + . Name=5FN_60824_x1;score=1
Chr1 read_5FN smallRNA 62348 62365 7.895 + . Name=5FN_241364_x237;score=237
Chr1 read_5FN smallRNA 62348 62366 7.340 + . Name=5FN_366845_x161;score=161
Chr1 read_5FN smallRNA 62349 62366 8.585 + . Name=5FN_547473_x383;score=383
Chr1 read_5FN smallRNA 62349 62367 6.858 + . Name=5FN_465793_x115;score=115
Chr1 read_5FN smallRNA 62353 62370 6.229 + . Name=5FN_472788_x74;score=74
Chr1 read_5FN smallRNA 62353 62371 1.000 + . Name=5FN_60824_x1;score=1
Chr1 read_5FN smallRNA 62354 62371 7.895 + . Name=5FN_241364_x237;score=237
Chr1 read_5FN smallRNA 62354 62372 7.340 + . Name=5FN_366845_x161;score=161
Chr1 read_5FN smallRNA 62355 62372 8.585 + . Name=5FN_547473_x383;score=383
Chr1 read_5FN smallRNA 62355 62373 1.585 + . Name=5FN_168093_x2;score=2
Chr1 read_5FN smallRNA 63503 63520 2.000 + . Name=5FN_56059_x3;score=3
Chr1 read_5FN smallRNA 63503 63521 1.000 + . Name=5FN_158054_x1;score=1
Chr1 read_5FN smallRNA 63504 63521 3.700 + . Name=5FN_184229_x12;score=12
Chr1 read_5FN smallRNA 63512 63530 2.807 + . Name=5FN_460766_x6;score=6
Chr1 read_5FN smallRNA 63533 63550 3.807 + . Name=5FN_352670_x13;score=13
Chr1 read_5FN smallRNA 64870 64887 3.322 + . Name=5FN_128631_x9;score=9
Chr1 read_5FN smallRNA 64873 64890 6.229 + . Name=5FN_472788_x74;score=74
Chr1 read_5FN smallRNA 64873 64891 1.000 + . Name=5FN_60824_x1;score=1
Chr1 read_5FN smallRNA 64874 64891 7.895 + . Name=5FN_241364_x237;score=237
Chr1 read_5FN smallRNA 64874 64892 7.340 + . Name=5FN_366845_x161;score=161
Chr1 read_5FN smallRNA 64875 64892 8.585 + . Name=5FN_547473_x383;score=383
Chr1 read_5FN smallRNA 64875 64893 6.858 + . Name=5FN_465793_x115;score=115
Chr1 read_5FN smallRNA 64878 64896 1.585 + . Name=5FN_168093_x2;score=2
Chr1 read_5FN smallRNA 64881 64898 1.000 + . Name=5FN_498550_x1;score=1
Chr1 read_5FN smallRNA 72339 72356 3.907 + . Name=5FN_163200_x14;score=14
Chr1 read_5FN smallRNA 72343 72360 1.585 + . Name=5FN_373415_x2;score=2
Chr1 read_5FN smallRNA 72347 72364 4.459 + . Name=5FN_106841_x21;score=21
Chr1 read_5FN smallRNA 72349 72367 1.585 + . Name=5FN_156121_x2;score=2
Chr1 read_5FN smallRNA 72350 72367 6.150 + . Name=5FN_357830_x70;score=70
Chr1 read_5FN smallRNA 72350 72368 8.931 + . Name=5FN_659351_x487;score=487
Chr1 read_5FN smallRNA 72351 72368 6.629 + . Name=5FN_627120_x98;score=98
Chr1 read_5FN smallRNA 72352 72369 5.426 + . Name=5FN_651676_x42;score=42
Chr1 read_5FN smallRNA 72353 72370 4.459 + . Name=5FN_107215_x21;score=21
Chr1 read_5FN smallRNA 72354 72371 1.000 + . Name=5FN_201119_x1;score=1
Chr1 read_5FN smallRNA 72354 72372 2.000 + . Name=5FN_11347_x3;score=3
Chr1 read_5FN smallRNA 72365 72382 3.459 + . Name=5FN_491516_x10;score=10
Chr1 read_5FN smallRNA 75475 75492 2.000 + . Name=5FN_252672_x3;score=3
Chr1 read_5FN smallRNA 75585 75602 1.585 + . Name=5FN_667408_x2;score=2
Chr1 read_5FN smallRNA 75683 75701 3.000 + . Name=5FN_603408_x7;score=7
Chr1 read_5FN smallRNA 76786 76803 1.000 + . Name=5FN_359266_x1;score=1
Chr1 read_5FN smallRNA 77544 77561 2.322 + . Name=5FN_327800_x4;score=4
Chr1 read_5FN smallRNA 82962 82979 2.585 + . Name=5FN_31877_x5;score=5
Chr1 read_5FN smallRNA 88896 88913 2.000 + . Name=5FN_586916_x3;score=3
Chr1 read_5FN smallRNA 89618 89636 3.907 + . Name=5FN_219577_x14;score=14
Chr1 read_5FN smallRNA 90877 90894 2.000 + . Name=5FN_118869_x3;score=3
Chr1 read_5FN smallRNA 90878 90895 1.000 + . Name=5FN_135856_x1;score=1
Chr1 read_5FN smallRNA 90879 90896 2.000 + . Name=5FN_105296_x3;score=3
Chr1 read_5FN smallRNA 91364 91382 2.322 + . Name=5FN_47574_x4;score=4
Chr1 read_5FN smallRNA 91380 91398 4.585 + . Name=5FN_307094_x23;score=23
Chr1 read_5FN smallRNA 91381 91398 1.000 + . Name=5FN_80443_x1;score=1
Chr1 read_5FN smallRNA 91383 91400 4.087 + . Name=5FN_269401_x16;score=16
Chr1 read_5FN smallRNA 91388 91405 4.524 + . Name=5FN_261860_x22;score=22
Chr1 read_5FN smallRNA 91388 91406 6.409 + . Name=5FN_321321_x84;score=84
Chr1 read_5FN smallRNA 91414 91431 2.000 + . Name=5FN_576088_x3;score=3
Chr1 read_5FN smallRNA 91462 91480 3.907 + . Name=5FN_219577_x14;score=14
Chr1 read_5FN smallRNA 91651 91668 4.322 + . Name=5FN_412192_x19;score=19
Chr1 read_5FN smallRNA 91656 91674 1.000 + . Name=5FN_138357_x1;score=1
Chr1 read_5FN smallRNA 91666 91683 1.585 + . Name=5FN_213561_x2;score=2
Chr1 read_5FN smallRNA 91779 91796 3.322 + . Name=5FN_109969_x9;score=9
Chr1 read_5FN smallRNA 91779 91797 1.000 + . Name=5FN_443893_x1;score=1
Chr1 read_5FN smallRNA 95599 95616 3.459 + . Name=5FN_171096_x10;score=10
Chr1 read_5FN smallRNA 96020 96037 2.807 + . Name=5FN_496152_x6;score=6
Chr1 read_5FN smallRNA 96042 96059 1.000 + . Name=5FN_508649_x1;score=1
Chr1 read_5FN smallRNA 96043 96061 2.322 + . Name=5FN_507482_x4;score=4
Chr1 read_5FN smallRNA 96044 96061 3.700 + . Name=5FN_5051_x12;score=12
Chr1 read_5FN smallRNA 97189 97206 5.129 + . Name=5FN_557085_x34;score=34
Chr1 read_5FN smallRNA 97189 97207 2.585 + . Name=5FN_659736_x5;score=5
Chr1 read_5FN smallRNA 97193 97210 2.322 + . Name=5FN_674208_x4;score=4
Chr1 read_5FN smallRNA 97193 97211 2.322 + . Name=5FN_20610_x4;score=4
Chr1 read_5FN smallRNA 97197 97214 3.000 + . Name=5FN_498978_x7;score=7
Chr1 read_5FN smallRNA 97198 97216 1.000 + . Name=5FN_372504_x1;score=1
Chr1 read_5FN smallRNA 97199 97217 2.585 + . Name=5FN_644458_x5;score=5
Chr1 read_5FN smallRNA 97200 97217 5.322 + . Name=5FN_40021_x39;score=39
Chr1 read_5FN smallRNA 97404 97421 3.170 + . Name=5FN_423767_x8;score=8
Chr1 read_5FN smallRNA 97439 97457 3.000 + . Name=5FN_135218_x7;score=7
Chr1 read_5FN smallRNA 97449 97467 1.585 + . Name=5FN_676713_x2;score=2
Chr1 read_5FN smallRNA 97452 97469 4.755 + . Name=5FN_340036_x26;score=26
Chr1 read_5FN smallRNA 97466 97484 1.585 + . Name=5FN_404524_x2;score=2
Chr1 read_5FN smallRNA 97472 97489 5.524 + . Name=5FN_68700_x45;score=45
Chr1 read_5FN smallRNA 97476 97493 4.000 + . Name=5FN_568162_x15;score=15
Chr1 read_5FN smallRNA 97487 97505 2.807 + . Name=5FN_21052_x6;score=6
Chr1 read_5FN smallRNA 97490 97507 3.000 + . Name=5FN_509857_x7;score=7
Chr1 read_5FN smallRNA 97495 97513 2.585 + . Name=5FN_234917_x5;score=5
Chr1 read_5FN smallRNA 97512 97529 4.858 + . Name=5FN_70342_x28;score=28
Chr1 read_5FN smallRNA 97520 97537 2.322 + . Name=5FN_338806_x4;score=4
Chr1 read_5FN smallRNA 99905 99922 1.000 + . Name=5FN_135603_x1;score=1
Chr1 read_5FN smallRNA 99929 99946 4.000 + . Name=5FN_652928_x15;score=15
Chr1 read_5FN smallRNA 99967 99985 3.907 + . Name=5FN_90688_x14;score=14
Chr1 read_5FN smallRNA 99990 100007 4.000 + . Name=5FN_631259_x15;score=15
Chr1 read_5FN smallRNA 99990 100008 4.907 + . Name=5FN_534701_x29;score=29
Chr1 read_5FN smallRNA 100055 100072 3.322 + . Name=5FN_125544_x9;score=9
Chr1 read_5FN smallRNA 101836 101853 2.000 + . Name=5FN_178362_x3;score=3
Chr1 read_5FN smallRNA 101838 101855 7.160 + . Name=5FN_172394_x142;score=142
Chr1 read_5FN smallRNA 101838 101856 5.322 + . Name=5FN_39703_x39;score=39
Chr1 read_5FN smallRNA 101839 101856 5.931 + . Name=5FN_419005_x60;score=60
Chr1 read_5FN smallRNA 101839 101857 8.748 + . Name=5FN_552949_x429;score=429
Chr1 read_5FN smallRNA 101840 101857 8.820 + . Name=5FN_117309_x451;score=451
Chr1 read_5FN smallRNA 101840 101858 5.585 + . Name=5FN_83162_x47;score=47
Chr1 read_5FN smallRNA 101841 101858 5.931 + . Name=5FN_419005_x60;score=60
Chr1 read_5FN smallRNA 101841 101859 8.748 + . Name=5FN_552949_x429;score=429
Chr1 read_5FN smallRNA 101842 101859 8.820 + . Name=5FN_117309_x451;score=451
Chr1 read_5FN smallRNA 101842 101860 5.585 + . Name=5FN_83162_x47;score=47
Chr1 read_5FN smallRNA 101844 101862 1.000 + . Name=5FN_268836_x1;score=1
Chr1 read_5FN smallRNA 101846 101863 3.170 + . Name=5FN_255596_x8;score=8
Chr1 read_5FN smallRNA 102326 102343 1.000 + . Name=5FN_49232_x1;score=1
Chr1 read_5FN smallRNA 104023 104040 2.322 + . Name=5FN_397155_x4;score=4
Chr1 read_5FN smallRNA 104023 104041 1.000 + . Name=5FN_429392_x1;score=1
Chr1 read_5FN smallRNA 104024 104041 8.997 + . Name=5FN_647801_x510;score=510
Chr1 read_5FN smallRNA 104024 104042 7.781 + . Name=5FN_199273_x219;score=219
Chr1 read_5FN smallRNA 104028 104046 3.322 + . Name=5FN_113298_x9;score=9
Chr1 read_5FN smallRNA 104029 104046 3.700 + . Name=5FN_462417_x12;score=12
Chr1 read_5FN smallRNA 104029 104047 2.000 + . Name=5FN_420018_x3;score=3
Chr1 read_5FN smallRNA 104030 104047 2.585 + . Name=5FN_530936_x5;score=5
Chr1 read_5FN smallRNA 106306 106323 3.459 + . Name=5FN_673140_x10;score=10
Chr1 read_5FN smallRNA 108999 109016 2.585 + . Name=5FN_488995_x5;score=5
Chr1 read_5FN smallRNA 109036 109053 4.170 + . Name=5FN_667921_x17;score=17
Chr1 read_5FN smallRNA 109037 109054 4.585 + . Name=5FN_647409_x23;score=23
Chr1 read_5FN smallRNA 109044 109061 2.807 + . Name=5FN_177294_x6;score=6
Chr1 read_5FN smallRNA 109078 109095 2.322 + . Name=5FN_621420_x4;score=4
Chr1 read_5FN smallRNA 109088 109105 2.000 + . Name=5FN_93035_x3;score=3
Chr1 read_5FN smallRNA 109133 109150 1.000 + . Name=5FN_56298_x1;score=1
Chr1 read_5FN smallRNA 109149 109166 2.322 + . Name=5FN_517110_x4;score=4
Chr1 read_5FN smallRNA 109187 109204 2.585 + . Name=5FN_454773_x5;score=5
Chr1 read_5FN smallRNA 109527 109545 3.170 + . Name=5FN_55515_x8;score=8
Chr1 read_5FN smallRNA 110433 110450 1.000 + . Name=5FN_101776_x1;score=1
Chr1 read_5FN smallRNA 110436 110453 3.459 + . Name=5FN_207127_x10;score=10
Chr1 read_5FN smallRNA 110437 110455 1.000 + . Name=5FN_677961_x1;score=1
Chr1 read_5FN smallRNA 114260 114277 3.585 + . Name=5FN_405734_x11;score=11
Chr1 read_5FN smallRNA 114289 114306 4.585 + . Name=5FN_71554_x23;score=23
Chr1 read_5FN smallRNA 114291 114309 5.524 + . Name=5FN_358746_x45;score=45
Chr1 read_5FN smallRNA 116797 116814 1.585 + . Name=5FN_431740_x2;score=2
Chr1 read_5FN smallRNA 116895 116913 2.585 + . Name=5FN_318348_x5;score=5
Chr1 read_5FN smallRNA 116980 116997 2.000 + . Name=5FN_234990_x3;score=3
Chr1 read_5FN smallRNA 117010 117027 2.000 + . Name=5FN_494561_x3;score=3
Chr1 read_5FN smallRNA 117024 117042 2.807 + . Name=5FN_372231_x6;score=6
Chr1 read_5FN smallRNA 117027 117045 3.807 + . Name=5FN_51798_x13;score=13
Chr1 read_5FN smallRNA 117028 117045 5.615 + . Name=5FN_551588_x48;score=48
Chr1 read_5FN smallRNA 117030 117047 3.585 + . Name=5FN_487176_x11;score=11
Chr1 read_5FN smallRNA 117034 117051 6.672 + . Name=5FN_22998_x101;score=101
Chr1 read_5FN smallRNA 117034 117052 5.087 + . Name=5FN_270333_x33;score=33
Chr1 read_5FN smallRNA 117036 117053 5.977 + . Name=5FN_467536_x62;score=62
Chr1 read_5FN smallRNA 117037 117054 1.000 + . Name=5FN_232236_x1;score=1
Chr1 read_5FN smallRNA 117046 117063 2.322 + . Name=5FN_550792_x4;score=4
Chr1 read_5FN smallRNA 117049 117066 2.322 + . Name=5FN_129620_x4;score=4
Chr1 read_5FN smallRNA 117054 117071 4.000 + . Name=5FN_118102_x15;score=15
Chr1 read_5FN smallRNA 117077 117095 5.555 + . Name=5FN_193552_x46;score=46
Chr1 read_5FN smallRNA 117079 117097 3.000 + . Name=5FN_658130_x7;score=7
Chr1 read_5FN smallRNA 117080 117097 3.585 + . Name=5FN_242211_x11;score=11
Chr1 read_5FN smallRNA 117082 117099 3.459 + . Name=5FN_106084_x10;score=10
Chr1 read_5FN smallRNA 117088 117105 3.459 + . Name=5FN_594590_x10;score=10
Chr1 read_5FN smallRNA 117088 117106 1.000 + . Name=5FN_193311_x1;score=1
Chr1 read_5FN smallRNA 117109 117126 1.000 + . Name=5FN_141087_x1;score=1
Chr1 read_5FN smallRNA 117109 117127 1.000 + . Name=5FN_294131_x1;score=1
Chr1 read_5FN smallRNA 117111 117129 2.585 + . Name=5FN_347735_x5;score=5
Chr1 read_5FN smallRNA 117142 117160 3.000 + . Name=5FN_585338_x7;score=7
Chr1 read_5FN smallRNA 117157 117175 1.585 + . Name=5FN_593994_x2;score=2
Chr1 read_5FN smallRNA 117162 117179 1.000 + . Name=5FN_7233_x1;score=1
Chr1 read_5FN smallRNA 117164 117182 1.585 + . Name=5FN_128558_x2;score=2
Chr1 read_5FN smallRNA 117353 117370 1.585 + . Name=5FN_502252_x2;score=2
Chr1 read_5FN smallRNA 117385 117403 2.585 + . Name=5FN_670673_x5;score=5
Chr1 read_5FN smallRNA 120983 121001 3.170 + . Name=5FN_430169_x8;score=8
Chr1 read_5FN smallRNA 3972 3989 3.907 - . Name=5FN_280342_x14;score=14
Chr1 read_5FN smallRNA 5680 5697 1.585 - . Name=5FN_673391_x2;score=2
Chr1 read_5FN smallRNA 5680 5698 1.000 - . Name=5FN_146497_x1;score=1
Chr1 read_5FN smallRNA 7992 8009 2.000 - . Name=5FN_552328_x3;score=3
Chr1 read_5FN smallRNA 8665 8683 3.000 - . Name=5FN_289275_x7;score=7
Chr1 read_5FN smallRNA 8668 8685 1.585 - . Name=5FN_82547_x2;score=2
Chr1 read_5FN smallRNA 8668 8686 1.000 - . Name=5FN_605003_x1;score=1
Chr1 read_5FN smallRNA 8684 8702 2.322 - . Name=5FN_251548_x4;score=4
Chr1 read_5FN smallRNA 11456 11473 1.000 - . Name=5FN_614720_x1;score=1
Chr1 read_5FN smallRNA 11984 12001 2.807 - . Name=5FN_678291_x6;score=6
Chr1 read_5FN smallRNA 11984 12002 1.000 - . Name=5FN_528482_x1;score=1
Chr1 read_5FN smallRNA 11985 12002 9.185 - . Name=5FN_84473_x581;score=581
Chr1 read_5FN smallRNA 11986 12003 4.644 - . Name=5FN_610953_x24;score=24
Chr1 read_5FN smallRNA 11986 12004 1.000 - . Name=5FN_49830_x1;score=1
Chr1 read_5FN smallRNA 12317 12335 2.322 - . Name=5FN_603867_x4;score=4
Chr1 read_5FN smallRNA 12999 13017 1.585 - . Name=5FN_483461_x2;score=2
Chr1 read_5FN smallRNA 13000 13017 2.807 - . Name=5FN_383433_x6;score=6
Chr1 read_5FN smallRNA 13000 13018 2.322 - . Name=5FN_165564_x4;score=4
Chr1 read_5FN smallRNA 13001 13018 1.585 - . Name=5FN_415160_x2;score=2
Chr1 read_5FN smallRNA 13002 13019 2.000 - . Name=5FN_494613_x3;score=3
Chr1 read_5FN smallRNA 13003 13020 1.000 - . Name=5FN_466377_x1;score=1
Chr1 read_5FN smallRNA 13006 13023 1.585 - . Name=5FN_474402_x2;score=2
Chr1 read_5FN smallRNA 13150 13168 4.248 - . Name=5FN_161234_x18;score=18
Chr1 read_5FN smallRNA 13181 13198 2.322 - . Name=5FN_599270_x4;score=4
Chr1 read_5FN smallRNA 13348 13365 4.000 - . Name=5FN_277855_x15;score=15
Chr1 read_5FN smallRNA 13351 13369 4.248 - . Name=5FN_178240_x18;score=18
Chr1 read_5FN smallRNA 13352 13369 2.000 - . Name=5FN_74763_x3;score=3
Chr1 read_5FN smallRNA 13354 13372 1.000 - . Name=5FN_41099_x1;score=1
Chr1 read_5FN smallRNA 13557 13574 6.426 - . Name=5FN_101312_x85;score=85
Chr1 read_5FN smallRNA 13560 13577 5.209 - . Name=5FN_392177_x36;score=36
Chr1 read_5FN smallRNA 13561 13578 3.000 - . Name=5FN_269868_x7;score=7
Chr1 read_5FN smallRNA 13595 13613 2.585 - . Name=5FN_602318_x5;score=5
Chr1 read_5FN smallRNA 13615 13632 1.585 - . Name=5FN_553934_x2;score=2
Chr1 read_5FN smallRNA 13659 13677 1.000 - . Name=5FN_359042_x1;score=1
Chr1 read_5FN smallRNA 13664 13681 1.585 - . Name=5FN_114701_x2;score=2
Chr1 read_5FN smallRNA 16802 16820 3.907 - . Name=5FN_514765_x14;score=14
Chr1 read_5FN smallRNA 16803 16820 4.392 - . Name=5FN_192235_x20;score=20
Chr1 read_5FN smallRNA 16804 16822 4.000 - . Name=5FN_64226_x15;score=15
Chr1 read_5FN smallRNA 16805 16822 1.000 - . Name=5FN_588349_x1;score=1
Chr1 read_5FN smallRNA 16806 16823 3.459 - . Name=5FN_207127_x10;score=10
Chr1 read_5FN smallRNA 31067 31084 1.000 - . Name=5FN_261780_x1;score=1
Chr1 read_5FN smallRNA 33086 33103 3.907 - . Name=5FN_114415_x14;score=14
Chr1 read_5FN smallRNA 33090 33107 2.807 - . Name=5FN_637184_x6;score=6
Chr1 read_5FN smallRNA 33096 33114 3.170 - . Name=5FN_213964_x8;score=8
Chr1 read_5FN smallRNA 33100 33117 4.644 - . Name=5FN_305336_x24;score=24
Chr1 read_5FN smallRNA 33104 33122 2.585 - . Name=5FN_609359_x5;score=5
Chr1 read_5FN smallRNA 33115 33133 3.322 - . Name=5FN_278687_x9;score=9
Chr1 read_5FN smallRNA 35605 35623 2.585 - . Name=5FN_348682_x5;score=5
Chr1 read_5FN smallRNA 37711 37728 4.700 - . Name=5FN_54806_x25;score=25
Chr1 read_5FN smallRNA 37713 37731 3.700 - . Name=5FN_531589_x12;score=12
Chr1 read_5FN smallRNA 37717 37735 7.665 - . Name=5FN_28298_x202;score=202
Chr1 read_5FN smallRNA 37720 37738 4.087 - . Name=5FN_187419_x16;score=16
Chr1 read_5FN smallRNA 37727 37745 3.585 - . Name=5FN_30001_x11;score=11
Chr1 read_5FN smallRNA 37730 37748 3.322 - . Name=5FN_498230_x9;score=9
Chr1 read_5FN smallRNA 37735 37752 2.807 - . Name=5FN_678291_x6;score=6
Chr1 read_5FN smallRNA 37735 37753 3.807 - . Name=5FN_225062_x13;score=13
Chr1 read_5FN smallRNA 37758 37775 3.459 - . Name=5FN_227611_x10;score=10
Chr1 read_5FN smallRNA 37758 37776 4.087 - . Name=5FN_476896_x16;score=16
Chr1 read_5FN smallRNA 37759 37776 1.585 - . Name=5FN_453329_x2;score=2
Chr1 read_5FN smallRNA 37760 37778 4.087 - . Name=5FN_627224_x16;score=16
Chr1 read_5FN smallRNA 37761 37778 5.585 - . Name=5FN_86881_x47;score=47
Chr1 read_5FN smallRNA 37761 37779 10.539 - . Name=5FN_337434_x1487;score=1487
Chr1 read_5FN smallRNA 37762 37779 6.870 - . Name=5FN_376616_x116;score=116
Chr1 read_5FN smallRNA 37764 37782 2.807 - . Name=5FN_385105_x6;score=6
Chr1 read_5FN smallRNA 37801 37818 3.000 - . Name=5FN_473414_x7;score=7
Chr1 read_5FN smallRNA 37805 37822 2.000 - . Name=5FN_251385_x3;score=3
Chr1 read_5FN smallRNA 37808 37826 4.000 - . Name=5FN_164086_x15;score=15
Chr1 read_5FN smallRNA 37820 37838 3.170 - . Name=5FN_214557_x8;score=8
Chr1 read_5FN smallRNA 37821 37838 2.322 - . Name=5FN_12636_x4;score=4
Chr1 read_5FN smallRNA 37823 37841 3.170 - . Name=5FN_204205_x8;score=8
Chr1 read_5FN smallRNA 37827 37844 2.807 - . Name=5FN_413565_x6;score=6
Chr1 read_5FN smallRNA 37835 37853 4.907 - . Name=5FN_149386_x29;score=29
Chr1 read_5FN smallRNA 37836 37853 4.248 - . Name=5FN_269368_x18;score=18
Chr1 read_5FN smallRNA 37839 37857 2.000 - . Name=5FN_383611_x3;score=3
Chr1 read_5FN smallRNA 37842 37860 2.585 - . Name=5FN_91851_x5;score=5
Chr1 read_5FN smallRNA 40926 40944 2.322 - . Name=5FN_24389_x4;score=4
Chr1 read_5FN smallRNA 43875 43892 1.000 - . Name=5FN_430484_x1;score=1
Chr1 read_5FN smallRNA 46543 46560 1.000 - . Name=5FN_92803_x1;score=1
Chr1 read_5FN smallRNA 46544 46561 3.170 - . Name=5FN_513541_x8;score=8
Chr1 read_5FN smallRNA 46690 46708 1.000 - . Name=5FN_23575_x1;score=1
Chr1 read_5FN smallRNA 46712 46730 3.700 - . Name=5FN_413423_x12;score=12
Chr1 read_5FN smallRNA 46713 46730 4.524 - . Name=5FN_451990_x22;score=22
Chr1 read_5FN smallRNA 46743 46760 5.459 - . Name=5FN_235779_x43;score=43
Chr1 read_5FN smallRNA 46753 46771 3.322 - . Name=5FN_190152_x9;score=9
Chr1 read_5FN smallRNA 46766 46784 2.322 - . Name=5FN_516932_x4;score=4
Chr1 read_5FN smallRNA 46772 46790 1.000 - . Name=5FN_523750_x1;score=1
Chr1 read_5FN smallRNA 46784 46801 2.000 - . Name=5FN_300270_x3;score=3
Chr1 read_5FN smallRNA 46786 46804 1.000 - . Name=5FN_148215_x1;score=1
Chr1 read_5FN smallRNA 46787 46804 4.524 - . Name=5FN_328515_x22;score=22
Chr1 read_5FN smallRNA 46795 46813 3.170 - . Name=5FN_79114_x8;score=8
Chr1 read_5FN smallRNA 46799 46817 3.907 - . Name=5FN_143140_x14;score=14
Chr1 read_5FN smallRNA 46800 46817 3.000 - . Name=5FN_553685_x7;score=7
Chr1 read_5FN smallRNA 46801 46819 5.358 - . Name=5FN_67934_x40;score=40
Chr1 read_5FN smallRNA 46802 46820 3.170 - . Name=5FN_178590_x8;score=8
Chr1 read_5FN smallRNA 46808 46825 2.807 - . Name=5FN_588553_x6;score=6
Chr1 read_5FN smallRNA 46808 46826 3.322 - . Name=5FN_220736_x9;score=9
Chr1 read_5FN smallRNA 46811 46829 1.000 - . Name=5FN_326011_x1;score=1
Chr1 read_5FN smallRNA 46813 46830 4.248 - . Name=5FN_643403_x18;score=18
Chr1 read_5FN smallRNA 48211 48229 2.585 - . Name=5FN_169061_x5;score=5
Chr1 read_5FN smallRNA 49186 49203 2.322 - . Name=5FN_214534_x4;score=4
Chr1 read_5FN smallRNA 49186 49204 6.150 - . Name=5FN_24925_x70;score=70
Chr1 read_5FN smallRNA 49192 49209 4.000 - . Name=5FN_635917_x15;score=15
Chr1 read_5FN smallRNA 49206 49223 1.000 - . Name=5FN_518839_x1;score=1
Chr1 read_5FN smallRNA 49208 49225 1.000 - . Name=5FN_412154_x1;score=1
Chr1 read_5FN smallRNA 49219 49236 3.170 - . Name=5FN_79563_x8;score=8
Chr1 read_5FN smallRNA 49247 49265 5.170 - . Name=5FN_158132_x35;score=35
Chr1 read_5FN smallRNA 49248 49265 3.907 - . Name=5FN_150110_x14;score=14
Chr1 read_5FN smallRNA 49254 49272 1.585 - . Name=5FN_490506_x2;score=2
Chr1 read_5FN smallRNA 49255 49272 6.966 - . Name=5FN_194144_x124;score=124
Chr1 read_5FN smallRNA 49256 49274 4.392 - . Name=5FN_281280_x20;score=20
Chr1 read_5FN smallRNA 49257 49274 5.000 - . Name=5FN_606025_x31;score=31
Chr1 read_5FN smallRNA 49257 49275 5.209 - . Name=5FN_606995_x36;score=36
Chr1 read_5FN smallRNA 49259 49277 3.000 - . Name=5FN_438369_x7;score=7
Chr1 read_5FN smallRNA 49260 49277 1.585 - . Name=5FN_639212_x2;score=2
Chr1 read_5FN smallRNA 49261 49279 8.551 - . Name=5FN_202640_x374;score=374
Chr1 read_5FN smallRNA 49262 49279 5.000 - . Name=5FN_543786_x31;score=31
Chr1 read_5FN smallRNA 49263 49280 5.755 - . Name=5FN_651394_x53;score=53
Chr1 read_5FN smallRNA 49263 49281 4.807 - . Name=5FN_636453_x27;score=27
Chr1 read_5FN smallRNA 49264 49281 2.000 - . Name=5FN_508578_x3;score=3
Chr1 read_5FN smallRNA 49265 49283 2.322 - . Name=5FN_152518_x4;score=4
Chr1 read_5FN smallRNA 49266 49283 6.845 - . Name=5FN_399683_x114;score=114
Chr1 read_5FN smallRNA 49266 49284 2.807 - . Name=5FN_675175_x6;score=6
Chr1 read_5FN smallRNA 49268 49285 3.700 - . Name=5FN_205858_x12;score=12
Chr1 read_5FN smallRNA 49268 49286 2.000 - . Name=5FN_85488_x3;score=3
Chr1 read_5FN smallRNA 49269 49286 4.954 - . Name=5FN_117245_x30;score=30
Chr1 read_5FN smallRNA 49270 49288 5.358 - . Name=5FN_32377_x40;score=40
Chr1 read_5FN smallRNA 49271 49288 6.129 - . Name=5FN_100040_x69;score=69
Chr1 read_5FN smallRNA 49271 49289 6.190 - . Name=5FN_552318_x72;score=72
Chr1 read_5FN smallRNA 49272 49289 4.087 - . Name=5FN_383177_x16;score=16
Chr1 read_5FN smallRNA 49280 49298 4.170 - . Name=5FN_482916_x17;score=17
Chr1 read_5FN smallRNA 49299 49316 3.170 - . Name=5FN_488033_x8;score=8
Chr1 read_5FN smallRNA 49301 49318 2.322 - . Name=5FN_472855_x4;score=4
Chr1 read_5FN smallRNA 50602 50620 2.322 - . Name=5FN_503032_x4;score=4
Chr1 read_5FN smallRNA 51057 51075 1.585 - . Name=5FN_363726_x2;score=2
Chr1 read_5FN smallRNA 51068 51086 2.585 - . Name=5FN_293811_x5;score=5
Chr1 read_5FN smallRNA 51079 51097 1.000 - . Name=5FN_265564_x1;score=1
Chr1 read_5FN smallRNA 51083 51101 1.000 - . Name=5FN_424303_x1;score=1
Chr1 read_5FN smallRNA 51087 51104 3.807 - . Name=5FN_69658_x13;score=13
Chr1 read_5FN smallRNA 51105 51123 4.700 - . Name=5FN_166760_x25;score=25
Chr1 read_5FN smallRNA 51127 51145 2.000 - . Name=5FN_300419_x3;score=3
Chr1 read_5FN smallRNA 51128 51145 5.248 - . Name=5FN_628367_x37;score=37
Chr1 read_5FN smallRNA 51133 51151 2.585 - . Name=5FN_244310_x5;score=5
Chr1 read_5FN smallRNA 51153 51171 4.000 - . Name=5FN_136742_x15;score=15
Chr1 read_5FN smallRNA 51154 51171 4.248 - . Name=5FN_586777_x18;score=18
Chr1 read_5FN smallRNA 51160 51178 1.585 - . Name=5FN_7683_x2;score=2
Chr1 read_5FN smallRNA 51162 51180 6.392 - . Name=5FN_401428_x83;score=83
Chr1 read_5FN smallRNA 51163 51180 9.864 - . Name=5FN_21690_x931;score=931
Chr1 read_5FN smallRNA 51163 51181 3.000 - . Name=5FN_62543_x7;score=7
Chr1 read_5FN smallRNA 51164 51182 2.322 - . Name=5FN_66435_x4;score=4
Chr1 read_5FN smallRNA 51165 51182 6.248 - . Name=5FN_508453_x75;score=75
Chr1 read_5FN smallRNA 51166 51183 4.322 - . Name=5FN_399575_x19;score=19
Chr1 read_5FN smallRNA 51167 51184 2.585 - . Name=5FN_315083_x5;score=5
Chr1 read_5FN smallRNA 51167 51185 2.322 - . Name=5FN_85320_x4;score=4
Chr1 read_5FN smallRNA 51168 51185 8.033 - . Name=5FN_666062_x261;score=261
Chr1 read_5FN smallRNA 51168 51186 4.755 - . Name=5FN_209097_x26;score=26
Chr1 read_5FN smallRNA 51169 51186 5.322 - . Name=5FN_649999_x39;score=39
Chr1 read_5FN smallRNA 51169 51187 6.615 - . Name=5FN_153167_x97;score=97
Chr1 read_5FN smallRNA 51170 51187 12.736 - . Name=5FN_604100_x6819;score=6819
Chr1 read_5FN smallRNA 51170 51188 5.392 - . Name=5FN_157065_x41;score=41
Chr1 read_5FN smallRNA 51171 51188 4.524 - . Name=5FN_226674_x22;score=22
Chr1 read_5FN smallRNA 51172 51189 7.864 - . Name=5FN_220433_x232;score=232
Chr1 read_5FN smallRNA 51173 51191 2.000 - . Name=5FN_126648_x3;score=3
Chr1 read_5FN smallRNA 51174 51191 3.907 - . Name=5FN_367000_x14;score=14
Chr1 read_5FN smallRNA 51177 51194 4.248 - . Name=5FN_414066_x18;score=18
Chr1 read_5FN smallRNA 51177 51195 1.585 - . Name=5FN_19692_x2;score=2
Chr1 read_5FN smallRNA 51179 51196 4.322 - . Name=5FN_658077_x19;score=19
Chr1 read_5FN smallRNA 51180 51197 5.248 - . Name=5FN_676048_x37;score=37
Chr1 read_5FN smallRNA 51180 51198 4.322 - . Name=5FN_133955_x19;score=19
Chr1 read_5FN smallRNA 51181 51199 4.644 - . Name=5FN_619722_x24;score=24
Chr1 read_5FN smallRNA 51182 51199 4.459 - . Name=5FN_662213_x21;score=21
Chr1 read_5FN smallRNA 51190 51208 2.585 - . Name=5FN_392085_x5;score=5
Chr1 read_5FN smallRNA 51200 51217 5.000 - . Name=5FN_247745_x31;score=31
Chr1 read_5FN smallRNA 51209 51226 4.087 - . Name=5FN_575466_x16;score=16
Chr1 read_5FN smallRNA 59109 59127 1.585 - . Name=5FN_114173_x2;score=2
Chr1 read_5FN smallRNA 59110 59127 2.807 - . Name=5FN_42915_x6;score=6
Chr1 read_5FN smallRNA 59214 59231 1.000 - . Name=5FN_162620_x1;score=1
Chr1 read_5FN smallRNA 61025 61042 2.807 - . Name=5FN_550589_x6;score=6
Chr1 read_5FN smallRNA 61864 61881 1.000 - . Name=5FN_628759_x1;score=1
Chr1 read_5FN smallRNA 61865 61882 1.000 - . Name=5FN_130028_x1;score=1
Chr1 read_5FN smallRNA 61867 61884 2.000 - . Name=5FN_19322_x3;score=3
Chr1 read_5FN smallRNA 61867 61885 1.000 - . Name=5FN_613906_x1;score=1
Chr1 read_5FN smallRNA 61868 61885 1.585 - . Name=5FN_260215_x2;score=2
Chr1 read_5FN smallRNA 61869 61886 1.000 - . Name=5FN_443673_x1;score=1
Chr1 read_5FN smallRNA 62341 62358 2.807 - . Name=5FN_121666_x6;score=6
Chr1 read_5FN smallRNA 62346 62363 1.000 - . Name=5FN_405818_x1;score=1
Chr1 read_5FN smallRNA 62346 62364 2.322 - . Name=5FN_337825_x4;score=4
Chr1 read_5FN smallRNA 62355 62373 4.170 - . Name=5FN_368057_x17;score=17
Chr1 read_5FN smallRNA 62356 62373 5.728 - . Name=5FN_474908_x52;score=52
Chr1 read_5FN smallRNA 63122 63139 3.700 - . Name=5FN_254968_x12;score=12
Chr1 read_5FN smallRNA 63507 63524 2.807 - . Name=5FN_552184_x6;score=6
Chr1 read_5FN smallRNA 63513 63530 2.807 - . Name=5FN_552184_x6;score=6
Chr1 read_5FN smallRNA 63882 63900 2.000 - . Name=5FN_434705_x3;score=3
Chr1 read_5FN smallRNA 63983 64000 1.000 - . Name=5FN_432967_x1;score=1
Chr1 read_5FN smallRNA 64872 64889 1.000 - . Name=5FN_405818_x1;score=1
Chr1 read_5FN smallRNA 64872 64890 2.322 - . Name=5FN_337825_x4;score=4
Chr1 read_5FN smallRNA 64878 64896 4.170 - . Name=5FN_368057_x17;score=17
Chr1 read_5FN smallRNA 64879 64896 5.728 - . Name=5FN_474908_x52;score=52
Chr1 read_5FN smallRNA 66592 66610 3.907 - . Name=5FN_298637_x14;score=14
Chr1 read_5FN smallRNA 66594 66611 3.322 - . Name=5FN_116411_x9;score=9
Chr1 read_5FN smallRNA 67566 67584 3.322 - . Name=5FN_111130_x9;score=9
Chr1 read_5FN smallRNA 67569 67587 3.807 - . Name=5FN_550495_x13;score=13
Chr1 read_5FN smallRNA 67570 67587 3.170 - . Name=5FN_660173_x8;score=8
Chr1 read_5FN smallRNA 67607 67625 4.000 - . Name=5FN_552468_x15;score=15
Chr1 read_5FN smallRNA 67608 67625 7.267 - . Name=5FN_575787_x153;score=153
Chr1 read_5FN smallRNA 67609 67626 1.585 - . Name=5FN_527099_x2;score=2
Chr1 read_5FN smallRNA 68938 68956 1.000 - . Name=5FN_371672_x1;score=1
Chr1 read_5FN smallRNA 68939 68956 1.000 - . Name=5FN_251208_x1;score=1
Chr1 read_5FN smallRNA 71952 71970 1.585 - . Name=5FN_548695_x2;score=2
Chr1 read_5FN smallRNA 72349 72366 1.000 - . Name=5FN_660337_x1;score=1
Chr1 read_5FN smallRNA 72349 72367 2.807 - . Name=5FN_263853_x6;score=6
Chr1 read_5FN smallRNA 72351 72369 5.322 - . Name=5FN_39703_x39;score=39
Chr1 read_5FN smallRNA 72352 72369 7.160 - . Name=5FN_172394_x142;score=142
Chr1 read_5FN smallRNA 72353 72370 2.807 - . Name=5FN_464005_x6;score=6
Chr1 read_5FN smallRNA 72353 72371 4.459 - . Name=5FN_122385_x21;score=21
Chr1 read_5FN smallRNA 72354 72371 1.585 - . Name=5FN_679632_x2;score=2
Chr1 read_5FN smallRNA 72354 72372 3.322 - . Name=5FN_357624_x9;score=9
Chr1 read_5FN smallRNA 72355 72372 1.000 - . Name=5FN_207409_x1;score=1
Chr1 read_5FN smallRNA 72355 72373 2.807 - . Name=5FN_413708_x6;score=6
Chr1 read_5FN smallRNA 72356 72373 1.585 - . Name=5FN_60812_x2;score=2
Chr1 read_5FN smallRNA 74647 74664 3.459 - . Name=5FN_226528_x10;score=10
Chr1 read_5FN smallRNA 74703 74721 5.977 - . Name=5FN_220354_x62;score=62
Chr1 read_5FN smallRNA 74704 74721 3.170 - . Name=5FN_315388_x8;score=8
Chr1 read_5FN smallRNA 74706 74724 2.000 - . Name=5FN_347518_x3;score=3
Chr1 read_5FN smallRNA 74707 74724 1.000 - . Name=5FN_291356_x1;score=1
Chr1 read_5FN smallRNA 74708 74725 1.000 - . Name=5FN_272569_x1;score=1
Chr1 read_5FN smallRNA 74713 74731 3.700 - . Name=5FN_506140_x12;score=12
Chr1 read_5FN smallRNA 74714 74731 8.801 - . Name=5FN_321577_x445;score=445
Chr1 read_5FN smallRNA 74714 74732 3.322 - . Name=5FN_17790_x9;score=9
Chr1 read_5FN smallRNA 74717 74735 3.459 - . Name=5FN_86534_x10;score=10
Chr1 read_5FN smallRNA 74718 74735 4.392 - . Name=5FN_441510_x20;score=20
Chr1 read_5FN smallRNA 74719 74737 2.000 - . Name=5FN_441246_x3;score=3
Chr1 read_5FN smallRNA 74878 74895 3.585 - . Name=5FN_551391_x11;score=11
Chr1 read_5FN smallRNA 76536 76554 3.807 - . Name=5FN_180607_x13;score=13
Chr1 read_5FN smallRNA 76550 76567 3.807 - . Name=5FN_655515_x13;score=13
Chr1 read_5FN smallRNA 79105 79123 1.000 - . Name=5FN_170821_x1;score=1
Chr1 read_5FN smallRNA 79109 79126 1.000 - . Name=5FN_226860_x1;score=1
Chr1 read_5FN smallRNA 84540 84558 3.322 - . Name=5FN_673766_x9;score=9
Chr1 read_5FN smallRNA 84896 84913 2.322 - . Name=5FN_421589_x4;score=4
Chr1 read_5FN smallRNA 84897 84914 2.000 - . Name=5FN_533896_x3;score=3
Chr1 read_5FN smallRNA 84936 84953 3.322 - . Name=5FN_289305_x9;score=9
Chr1 read_5FN smallRNA 84990 85008 4.000 - . Name=5FN_190622_x15;score=15
Chr1 read_5FN smallRNA 88136 88154 4.524 - . Name=5FN_60014_x22;score=22
Chr1 read_5FN smallRNA 88140 88157 3.000 - . Name=5FN_633052_x7;score=7
Chr1 read_5FN smallRNA 90877 90894 1.585 - . Name=5FN_613624_x2;score=2
Chr1 read_5FN smallRNA 90877 90895 1.585 - . Name=5FN_582098_x2;score=2
Chr1 read_5FN smallRNA 96044 96061 4.644 - . Name=5FN_123348_x24;score=24
Chr1 read_5FN smallRNA 97185 97203 1.000 - . Name=5FN_585360_x1;score=1
Chr1 read_5FN smallRNA 97188 97205 2.807 - . Name=5FN_678291_x6;score=6
Chr1 read_5FN smallRNA 97189 97206 6.687 - . Name=5FN_482608_x102;score=102
Chr1 read_5FN smallRNA 97190 97207 4.807 - . Name=5FN_542425_x27;score=27
Chr1 read_5FN smallRNA 97190 97208 3.000 - . Name=5FN_253235_x7;score=7
Chr1 read_5FN smallRNA 97192 97209 3.322 - . Name=5FN_387798_x9;score=9
Chr1 read_5FN smallRNA 97193 97210 4.322 - . Name=5FN_331290_x19;score=19
Chr1 read_5FN smallRNA 97195 97212 2.585 - . Name=5FN_638723_x5;score=5
Chr1 read_5FN smallRNA 97196 97213 3.000 - . Name=5FN_528564_x7;score=7
Chr1 read_5FN smallRNA 97196 97214 3.907 - . Name=5FN_622443_x14;score=14
Chr1 read_5FN smallRNA 97197 97215 3.700 - . Name=5FN_175883_x12;score=12
Chr1 read_5FN smallRNA 97198 97215 4.170 - . Name=5FN_98929_x17;score=17
Chr1 read_5FN smallRNA 97198 97216 3.907 - . Name=5FN_28672_x14;score=14
Chr1 read_5FN smallRNA 97199 97216 5.492 - . Name=5FN_298446_x44;score=44
Chr1 read_5FN smallRNA 97199 97217 5.248 - . Name=5FN_279920_x37;score=37
Chr1 read_5FN smallRNA 97200 97217 2.807 - . Name=5FN_141581_x6;score=6
Chr1 read_5FN smallRNA 97201 97218 3.322 - . Name=5FN_469752_x9;score=9
Chr1 read_5FN smallRNA 97202 97219 1.000 - . Name=5FN_378302_x1;score=1
Chr1 read_5FN smallRNA 97202 97220 1.000 - . Name=5FN_615639_x1;score=1
Chr1 read_5FN smallRNA 99665 99683 1.000 - . Name=5FN_666352_x1;score=1
Chr1 read_5FN smallRNA 99666 99683 1.585 - . Name=5FN_422065_x2;score=2
Chr1 read_5FN smallRNA 99667 99684 4.858 - . Name=5FN_350636_x28;score=28
Chr1 read_5FN smallRNA 99667 99685 3.170 - . Name=5FN_580993_x8;score=8
Chr1 read_5FN smallRNA 99668 99686 1.585 - . Name=5FN_159984_x2;score=2
Chr1 read_5FN smallRNA 99669 99687 2.585 - . Name=5FN_287718_x5;score=5
Chr1 read_5FN smallRNA 99670 99687 2.585 - . Name=5FN_404468_x5;score=5
Chr1 read_5FN smallRNA 99671 99688 1.000 - . Name=5FN_306669_x1;score=1
Chr1 read_5FN smallRNA 101835 101852 1.000 - . Name=5FN_386205_x1;score=1
Chr1 read_5FN smallRNA 101838 101855 5.426 - . Name=5FN_651676_x42;score=42
Chr1 read_5FN smallRNA 101845 101863 3.322 - . Name=5FN_644854_x9;score=9
Chr1 read_5FN smallRNA 104030 104048 1.585 - . Name=5FN_563201_x2;score=2
Chr1 read_5FN smallRNA 104031 104048 1.000 - . Name=5FN_184839_x1;score=1
Chr1 read_5FN smallRNA 107004 107022 2.585 - . Name=5FN_176210_x5;score=5
Chr1 read_5FN smallRNA 108124 108141 1.000 - . Name=5FN_327668_x1;score=1
Chr1 read_5FN smallRNA 110436 110453 1.000 - . Name=5FN_253289_x1;score=1
Chr1 read_5FN smallRNA 118572 118589 2.585 - . Name=5FN_670291_x5;score=5
Chr1 read_5FN smallRNA 122334 122352 1.585 - . Name=5FN_12294_x2;score=2
Chr1 read_5FN smallRNA 122469 122486 1.000 - . Name=5FN_535233_x1;score=1
Chr1 read_5FN smallRNA 122808 122825 1.000 - . Name=5FN_21303_x1;score=1
Chr1 read_5FN smallRNA 122997 123015 1.000 - . Name=5FN_221219_x1;score=1
Chr1 read_5FN smallRNA 122998 123015 1.585 - . Name=5FN_68405_x2;score=2
Chr1 read_5FN smallRNA 123055 123072 3.170 - . Name=5FN_484727_x8;score=8
------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
trial. Simplify your report design, integration and deployment - and focus on
what you do best, core application coding. Discover what's new with
Crystal Reports now.
http://p.sf.net/sfu/bobj-july_______________________________________________
Gmod-gbrowse mailing list
Gmod-gbrowse@...
https://lists.sourceforge.net/lists/listinfo/gmod-gbrowse