changeset 0:f65530d07350 draft

planemo upload for repository https://github.com/portiahollyoak/Tools commit 1f1c277219ca756c9baa453592b455597fd593d8-dirty
author portiahollyoak
date Tue, 17 May 2016 04:35:44 -0400
parents
children 021a0f7ab3f6
files README breakdancer.xml create_config_file.py test-data/README test-data/X_10000000_Hum1.bam test-data/X_10000000_Hum1.bed
diffstat 6 files changed, 1514 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/README	Tue May 17 04:35:44 2016 -0400
@@ -0,0 +1,162 @@
+BreakDancer-1.3.6, released under GPLv3, is a Cpp package that provides genome-wide detection of structural variants from next generation paired-end sequencing reads. It includes two complementary programs. BreakDancerMax predicts five types of structural variants: insertions, deletions, inversions, inter- and intra-chromosomal translocations from next-generation short paired-end sequencing reads using read pairs that are mapped with unexpected separation distances or orientation.  BreakDancerMini focuses on detecting small indels (usually between 10bp and 100bp) using normally mapped read pairs.  Please read our paper for detailed algorithmic description. http://www.nature.com/nmeth/journal/v6/n9/abs/nmeth.1363.html
+
+BreakDancerMax (Update from 1.0 to 1.1 version only applied to cpp now.)
+----------------------
+Usage:   breakdancer_max <analysis_config_file>
+Options:
+       -o STRING       operate on a single chromosome [all chromosome]
+       -s INT          minimum length of a region [7]
+       -c INT          cutoff in unit of standard deviation [3]
+       -m INT          maximum SV size [1000000000]
+       -q INT          minimum alternative mapping quality [35]
+       -r INT          minimum number of read pairs required to establish a connection [2]
+       -x INT          maximum threshold of haploid sequence coverage for regions to be ignored [1000]
+       -b INT          buffer size for building connection [100]
+       -t              only detect transchromosomal rearrangement, by default off
+       -d STRING       prefix of fastq files that SV supporting reads will be saved by library
+       -g STRING       dump SVs and supporting reads in BED format for GBrowse
+       -l              analyze Illumina long insert (mate-pair) library
+       -a              print out copy number by bam file rather than library, by default on
+       -h              print out Allele Frequency column, by default off
+       -y INT          output score filter [40]
+
+The followings are the new functions of version 1.1 from 1.0:
+
+1. It computes the copy number based on the normalization of the whole genome or whole chromosome along with the SV detection. By default the copy number is computed by bam file, but it can also compute per library with option "-a".
+2. The Allele Frequency column is more accurate for DEL type, with the help of the copy number computation. By default it is off. Include option "-h" if you want to look at the DEL type Allele Frequency.
+3. Since there are numerous false positive SV calls, the output has a cutoff of the PhredQ score, which by default is 40. Make sure to use option "-y yournumber" if you want to change the cutoff.
+
+The followings are those existing in version 1.0:
+
+Most of these options are self-explanatory.  It is convenient to use the -o option to parallelize SV detection for each chromosome.  When -o is used, the detection of inter-chromosomal translocation is disabled.  In that case, it may be convenient to use -t in a separate process to detect putative inter-chromosomal translocations without bothering to analyze read pairs that are mapped to the same chromosome. 
+
+The beta-test x86_64 Cpp version breakdancermax directly utilizes samtools C library. It is fully compatible with the perl version with identical usage and functions but is over 10 times faster. However, it only supports properly formated bam files and has only been tested using bam files produced by BWA. To obtain the correct result, it is important to have readgroup (@RG) tag in both the header and each alignment in the bam files. If you experience technical difficulty with the Cpp version, please email breakdancer-help@lists.sourceforge.net or consider using the perl version.
+
+The input to BreakDancerMax-1.1 is a set of map files produced by a front-end aligner such as MAQ, BWA, NovoAlign and Bfast, and a tab-delimited configuration file that specifies the locations of the map files, the detection parameters, and the sample information.
+
+If your map files are in the sam/bam format, you can use the bam2cfg.pl in the released package to automatic generate a configuration file (bam2cfg.pl also has dependence on AlnParser.pm in the release package). If you have a single bam file that contains multiple libraries, make sure that the readgroup and library information are properly encoded in the sam/bam header, and in each alignment record, otherwise bam2cfg.pl may fail to produce a correct configuration file.  Please follow instructions on http://samtools.sourceforge.net to properly format your bam files.
+
+An example manual configuration file is like this
+
+map:1.map mean:219 std:18 readlen:36.00 sample:tA exe:maq-0.6.8 mapview
+map:2.map mean:220 std:19 readlen:36.00 sample:tB exe:maq-0.6.8 mapview
+map:3.map mean:219 std:18 readlen:36.00 sample:nA exe:maq-0.7.1 mapview
+map:4.map mean:219 std:18 readlen:36.00 sample:nB exe:maq-0.7.1 mapview
+
+An example configuration file produced by bam2cfg.pl look like this:
+
+readgroup:2825107881    platform:illumina       map:tumor.bam   readlen:75.00   lib:H_KA-189941-0921313gsc-lib4 num:10001       lower:86.83     upper:443.91    mean:315.09 std:43.92       exe:samtools view
+readgroup:2843249908    platform:illumina       map:tumor.bam   readlen:75.00   lib:H_KA-189941-0921313gsc-lib4 num:10001       lower:86.83     upper:443.91    mean:315.09 std:43.92       exe:samtools view
+readgroup:2843255910    platform:illumina       map:normal.bam  readlen:75.00   lib:H_KA-189941-0904663-lib4    num:10001       lower:95.36     upper:443.31    mean:311.68 std:42.86       exe:samtools view
+readgroup:2843255906    platform:illumina       map:normal.bam  readlen:75.00   lib:H_KA-189941-0904663-lib4    num:10001       lower:95.36     upper:443.31    mean:311.68 std:42.86       exe:samtools view
+
+Each row must contain at least 6 key:value pairs (separated by colon) that specify:
+
+1). the location of the map file
+2). the mean insert size
+3). the standard deviation insert size
+4). the average read length
+5). a unique identifier assigned to the map file (usually representing a PE library)
+6). a command line that can run by perl system calls to produce MAQ mapview alignment
+
+In addition to the above 6 keys: map, mean, std, readlen, sample, and exe, BreakDancerMax allows users to explicitly specify the separation thresholds using the keys: upper and lower.  For example:
+map:1.map upper:300 lower:100 readlen:36.00 sample:tA exe:maq-0.6.8 mapview -b
+
+This will instruct BreakDancerMax to detect deletions using read pairs that are at least 300 bp apart (outer distance) and detect insertions using read pairs that are at most 100 bp apart.  
+
+The upper and the lower key:value pairs, when explicitly specified, take precedence over the upper and the lower thresholds computed from the mean, the std, and the user specified threshold in the unit of standard deviation.
+	upper: mean + std * threshold specified by user option -c 
+	lower: meen - std * threshold specified by user option -c
+
+The -c option by default equals to 3. Therefore, the upper and the lower separation threshold would be: mean + 3 std and mean - 3 std respectively. It is useful to explicitly specify the upper and the lower separation thresholds when the insert size distribution is not symmetric to the mean. 
+
+The -o option enables per-chromosome/reference analysis and is much faster when the input files are in the bam format.  Please index the bam file using "samtools index" to utilize this option. You need to specify the exact reference names as they are in the bam files.
+
+When -e is on, BreakDancerMax tries to estimate the mean and the standard deviation insert size from the data instead of relying on user's spec in the configuration file. Current implementation of this estimation process is slow. So it is recommended that users can specify the accurate thresholds in the configuration file.
+
+The -l option tell BreakDancerMax that the data is produced from Illumina long insert circularized library
+
+The -f option uses the Fisher's methods to summarize scores from multiple libraries.  It is recommended when there are many libraries. It ensures that the scores are independent of the number of libraries (uniform distribution of the P values)
+
+The -q specifies the MAQ mapping quality threshold and can be used to skip reads that are not confidently mapped. 
+
+The -s specifies the minimal required size of a SV anchoring region from which the anomalously mapped reads are found.  This parameter has some small effects on the SV detection accuracy.  Increasing -s improves the specificity but also reduces the sensitivity. The default 7 bp seemed to work well.
+
+The -b parameter specifies the number of anomalous regions resides in the RAM before SV hypotheses begin to form among these regions. The default works well in general.  For dataset that is exceptionally large, it may be helpful to reduce it to cut the resident RAM usage.
+
+The -d specifies a fastq file where all SV supporting reads will be saved in the fastq format.  These reads can be realigned by other aligners such as novoalign, and then reanalyzed by BreakDancer.
+
+Listing multiple map files in a single configuration file would automatically enable pooled analysis: reads from all the map files are jointly analyzed to find unified SV hypotheses across all the map files.
+
+
+The output format
+----------------------
+BreakDancer's output file consists of the following columns:
+
+1. Chromosome 1
+2. Position 1
+3. Orientation 1
+4. Chromosome 2
+5. Position 2
+6. Orientation 2
+7. Type of a SV
+8. Size of a SV
+9. Confidence Score
+10. Total number of supporting read pairs
+11. Total number of supporting read pairs from each map file
+12. Estimated allele frequency
+13. Software version
+14. The run parameters
+
+Columns 1-3 and 4-6 are used to specify the coordinates of the two SV breakpoints. The orientation is a string that records the number of reads mapped to the plus (+) or the minus (-) strand in the anchoring regions.
+
+Column 7 is the type of SV detected: DEL (deletions), INS (insertion), INV (inversion), ITX (intra-chromosomal translocation), CTX (inter-chromosomal translocation), and Unknown. 
+Column 8 is the size of the SV in bp.  It is meaningless for inter-chromosomal translocations. 
+Column 9 is the confidence score associated with the prediction. 
+Column 11 can be used to dissect the origin of the supporting read pairs, which is useful in pooled analysis.  For example, one may want to give SVs that are supported by more than one libraries higher confidence than those detected in only one library.  It can also be used to distinguish somatic events from the germline, i.e., those detected in only the tumor libraries versus those detected in both the tumor and the normal libraries.
+Column 12 is currently a placeholder for displaying estimated allele frequency. The allele frequencies estimated in this version are not accurate and should not be trusted.
+Column 13 and 14 are information useful to reproduce the results.
+
+Example 1:
+1 10000 10+0- 2 20000 7+10- CTX -296 99 10 tB|10 1.00 BreakDancerMax-0.0.1 t1
+
+An inter-chromosomal translocation that starts from chr1:10000 and goes into chr2:20000 with 10 supporting read pairs from the library tB and a confidence score of 99.
+
+Example 2:
+1 59257 5+1- 1 60164 0+5- DEL 862 99 5 nA|2:tB|1 0.56 BreakDancerMax-0.0.1 c4
+
+A deletion between chr1:59257 and chr1:60164 connected by 5 read pairs, among which 2 in library nA and 1 in library tB support the deletion hypothesis. This deletion is detected by BreakDancerMax-0.0.1 with a separation threshold of 4 s.d.
+
+Example 3:
+1 62767 10+0- 1 63126 0+10- INS -13 36 10 NA|10 1.00 BreakDancerMini-0.0.1 q10
+
+An 13 bp insertion detected by BreakDancerMini between chr1:62767 and chr1:63126 with 10 supporting read pairs from a single library 'NA' and a confidence score of 36.
+
+Notes:
+Real SV breakpoints are expected to reside within the predicted boundaries with a margin > the read length.
+
+The BreakDancerMini code will not be included in the coming releases.  We recommend using Pindel to detect intermediate size indels (10-80 bp).
+
+Dependence over other Perl Modules
+------------------------------------
+use Statistics::Descriptive;
+use Math::CDF;
+
+These are available at CPAN.
+http://search.cpan.org/~colink/Statistics-Descriptive-2.6/Descriptive.pm
+http://search.cpan.org/~callahan/Math-CDF-0.1/CDF.pm
+
+use Poisson;
+This is provided. Please make sure the "use lib" at the beginning of the perl scripts contains the correct path.
+
+
+Acknowledgements
+-----------------
+Heng Li at Wellcome Trust Sanger Institute has contributed an early version of this code.
+Many colleagues at The Genome Center of Washington University have supported this effort.
+
+
+Ken Chen and Xian Fan
+Washington University Genome Center
+
+July 14, 2009
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/breakdancer.xml	Tue May 17 04:35:44 2016 -0400
@@ -0,0 +1,177 @@
+<tool id="breakdancer_max" name="BreakdancerMax" version="1.3.6">
+    <description></description>
+    <requirements>
+        <requirement type="package" version="0.1.19">samtools</requirement>
+        <requirement type="package" version="1.4.5">breakdancer</requirement>
+    </requirements>
+    <stdio>
+        <exit_code range="1:" />
+    </stdio>
+    <command><![CDATA[
+        ln -f -s "$input_file.metadata.bam_index" alignment.bam.bai &&
+        ln -f -s "$input_file" alignment.bam &&
+        python $__tool_directory__/create_config_file.py
+        --input_file alignment.bam
+        --mean "$mean"
+        --std_dev "$std_dev"
+        --read_length "$read_length"
+        --sample_name "$sample_name"
+        --output_config_file output_config_file &&
+        cat output_config_file &&
+        breakdancer-max
+        -s "$min_length"
+        -c "$cutoff"
+        -m "$maximum_sv"
+        -q "$quality"
+        -r "$min_rp"
+        -x "$hap_seq_threshold"
+        -b "$buffer_size"
+        $transchr_rearr
+        -d "$sample_name"
+        -g "$sample_name"
+        $illumina_long
+        $copy_number_bam
+        $allele_freq
+        -y "$output_score_filter"
+         output_config_file &&
+        mv "$sample_name" "$results_bed"
+    ]]></command>
+    <inputs>
+        <param name="input_file" type="data" format="bam" label="One or more alignment files"/>
+        <param name="mean" type="integer" value="" label="Mean Insert Size"/>
+        <param name="std_dev" type="integer" value="" label="The standard deviation of insert size"/>
+        <param name="read_length" type="integer" value="" label="Average read length"/>
+        <param name="sample_name" type="text" label="Sample name"/>
+        <param name="min_length" type="integer" value="7"
+               label="Minimal required size of a SV anchoring region from which the anomalously mapped reads are found"/>
+        <param name="cutoff" type="integer" value="3"  label="Cutoff in unit of standard deviation"/>
+        <param name="maximum_sv" type="integer" value="1000000000" label="Maximum SV Size"/>
+        <param name="quality" type="integer" value="35" label="Minimum MAQ mapping quality threshold"/>
+        <param name="min_rp" type="integer" value="2"
+               label="Minimum number of read pairs required to establish a connection"/>
+        <param name="hap_seq_threshold" type="integer" value="1000"
+               label="Maximum threshold of haploid sequence coverage for regions to be ignored"/>
+        <param name="buffer_size" type="integer" value="100"
+               label="Buffer size for building connection"/>
+        <param name="transchr_rearr" type="boolean" checked="false" truevalue="-t" falsevalue=""
+               label="Only detect transchromosomal rearrangement (Default = No)"/>
+        <param name="illumina_long" type="boolean" checked="false" truevalue="-l" falsevalue=""
+               label="Analyze Illumina long insert (mate-pair) library"/>
+        <param name="copy_number_bam" type="boolean" checked="false" truevalue="-a" falsevalue=""
+               label="Compute copy number and support reads per library rather than per bam (Default = No)"/>
+        <param name="allele_freq" type="boolean" checked="false" truevalue="-h" falsevalue=""
+               label="Print out Allele Frequencing column (Default= No)"/>
+        <param name="output_score_filter" type="integer" value="30" label="Output Score filter"/>
+    </inputs>
+    <outputs>
+        <data name="results_bed" type="data" format="bed" help="BED file containing SVs and supporting reads" label="${sample_name}"/>
+    </outputs>
+    <tests>
+        <test>
+            <param name="input_file" value="X_Hum1.bwa.bam" ftype="bam"/>
+            <param name="mean" value="227"/>
+            <param name="std_dev" value="98"/>
+            <param name="read_length" value="125"/>
+            <param name="sample_name" value="X_HUM1"/>
+            <param name="output_config_file" value="config_X_HUM1" ftype="txt"/>
+            <param name="chromosome" value="ALL"/>
+            <param name="min_length" value="7"/>
+            <param name="cutoff" value="3"/>
+            <param name="maximum_sv" value="1000000000"/>
+            <param name="quality" value="35"/>
+            <param name="min_rp" value="2"/>
+            <param name="hap_seq_threshold" value="1000"/>
+            <param name="buffer_size" value="100"/>
+            <param name="transchr_rearr" value=""/>
+            <param name="prefix" value=""/>
+            <param name="illumina_long" value=""/>
+            <param name="copy_number_bam" value=""/>
+            <param name="allele_freq" value=""/>
+            <param name="output_score_filter" value="40"/>
+            <output name="results_bed" file="X_HUM1" ftype="bed"/>
+        </test>
+    </tests>
+    <help> <![CDATA[
+BreakDancer (previously BreakDancerMax) provides genome-wide detection of five types of structural variants: insertions, deletions, inversions, inter- and intra-chromosomal translocations from next-generation short paired-end sequencing reads using read pairs that are mapped with unexpected separation distances or orientation.
+
+The following inputs are required:
+----------------------------------
+
+- One or more BAM alignment files produced by a front-end aligner such as MAQ, BWA, NovoAlign or Bfast. Listing multiple alignment files enables pooled analysis. For individual analysis, run alignment files through Breakdancer individually.
+- Mean Insert Size for each alignment file
+- The standard deviation for each alignment file
+- The Average Read length for each alignment file
+- The sample name for each alignment file
+- Name of BED output file containg SVs and supporting reads
+
+The following parameters can be set:
+------------------------------------
+
+- Which chromosome to operate on (chromosome name must match one used in alignment file.
+- The minimal required size of a SV anchoring region from which the anomalously mapped reads are found. (Default = 7). This parameter has some small effects on the SV detection accuracy.  Increasing minimal required size improves the specificity but also reduces the sensitivity.
+- Cutoff in unit of standard deviation. (Default = 3). Therefore, the upper and the lower separation threshold would be: mean + 3 std and mean - 3 std respectively. It is useful to explicitly specify the upper and the lower separation thresholds when the insert size distribution is not symmetric to the mean.
+- Maximum SV size. (Default = 1000000000)
+- Minimum MAQ mapping quality threshold. Can be used to skip reads that are not confidently mapped. (Default = 35)
+- Minimum number of read pairs required to establish a connection. (Default = 2)
+- Maximum threshold of haploid sequence coverage for regions to be ignored. (Default = 1000)
+- Buffer size for building connection. The -b parameter specifies the number of anomalous regions resides in the RAM before SV hypotheses begin to form among these regions. For dataset that is exceptionally large, it may be helpful to reduce it to cut the resident RAM usage. (Default = 100)
+- Only detect transchromosomal rearrangement. (Default = off)
+- Prefix of fastq files to which SV supporting reads will be saved to, by library
+- Analyze Illumina long insert (mate-pair) library (Default = off)
+- Compute copy number by bam file rather than by library (Default = on)
+- Print out Allele Frequencing column (Default = off)
+- Output Score filter (Default = 40)
+
+Output files
+------------
+BreakDancer output is a BED file containing SVs and supporting reads. It has the following columns:
+1. Chromosome 1
+2. Position 1
+3. Orientation 1
+4. Chromosome 2
+5. Position 2
+6. Orientation 2
+7. Type of a SV
+8. Size of a SV
+9. Confidence Score
+10. Total number of supporting read pairs
+11. Total number of supporting read pairs from each map file
+12. Estimated allele frequency
+13. Software version
+14. The run parameters
+
+Columns 1-3 and 4-6 are used to specify the coordinates of the two SV breakpoints. The orientation is a string that records the number of reads mapped to the plus (+) or the minus (-) strand in the anchoring regions.
+
+Column 7 is the type of SV detected: DEL (deletions), INS (insertion), INV (inversion), ITX (intra-chromosomal translocation), CTX (inter-chromosomal translocation), and Unknown.
+Column 8 is the size of the SV in bp.  It is meaningless for inter-chromosomal translocations.
+Column 9 is the confidence score associated with the prediction.
+Column 11 can be used to dissect the origin of the supporting read pairs, which is useful in pooled analysis.  For example, one may want to give SVs that are supported by more than one libraries higher confidence than those detected in only one library.  It can also be used to distinguish somatic events from the germline, i.e., those detected in only the tumor libraries versus those detected in both the tumor and the normal libraries.
+Column 12 is currently a placeholder for displaying estimated allele frequency. The allele frequencies estimated in this version are not accurate and should not be trusted.
+Column 13 and 14 are information useful to reproduce the results.
+
+Example 1:
+1 10000 10+0- 2 20000 7+10- CTX -296 99 10 tB|10 1.00 BreakDancerMax-0.0.1 t1
+
+An inter-chromosomal translocation that starts from chr1:10000 and goes into chr2:20000 with 10 supporting read pairs from the library tB and a confidence score of 99.
+
+Example 2:
+1 59257 5+1- 1 60164 0+5- DEL 862 99 5 nA|2:tB|1 0.56 BreakDancerMax-0.0.1 c4
+
+A deletion between chr1:59257 and chr1:60164 connected by 5 read pairs, among which 2 in library nA and 1 in library tB support the deletion hypothesis. This deletion is detected by BreakDancerMax-0.0.1 with a separation threshold of 4 s.d.
+
+Example 3:
+1 62767 10+0- 1 63126 0+10- INS -13 36 10 NA|10 1.00 BreakDancerMini-0.0.1 q10
+
+An 13 bp insertion detected by BreakDancerMini between chr1:62767 and chr1:63126 with 10 supporting read pairs from a single library 'NA' and a confidence score of 36.
+
+Notes:
+Real SV breakpoints are expected to reside within the predicted boundaries with a margin > the read length.
+
+
+
+    ]]> </help>
+    <citations>
+        <citation type="doi">doi:10.1038/nmeth.1363</citation>
+    </citations>
+</tool>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/create_config_file.py	Tue May 17 04:35:44 2016 -0400
@@ -0,0 +1,21 @@
+import argparse
+
+
+description = ("This script will create a configuration file for samples to be run in Breakdancer."
+               "If pooled analysis desired, only one config file needed for all samples."
+               "Otherwise, individual analysis requires individual config files for each sample.")
+
+parser = argparse.ArgumentParser()
+parser.add_argument("--input_file", nargs="*", help="One or more alignment files")
+parser.add_argument("--mean", nargs="+", help="Mean insert size")
+parser.add_argument("--std_dev", nargs="+", help="The standard deviation of insert size")
+parser.add_argument("--read_length", nargs="+", help="Average read length")
+parser.add_argument("--sample_name", nargs="+", help="Sample name")
+parser.add_argument("--output_config_file", help="Name of the output config file")
+args = parser.parse_args()
+
+template = "map:{input_file}\tmean:{mean}\tstd:{std_dev}\treadlen:{read_length}\tsample:{sample_name}\texe:samtools view\n"
+with open(args.output_config_file, "w") as output:
+    for input_file, mean, std_dev, read_length, sample_name in zip(args.input_file, args.mean, args.std_dev, args.read_length, args.sample_name):
+        config_line = template.format(input_file=input_file, mean=mean, std_dev=std_dev, read_length=read_length, sample_name=sample_name)
+        output.write(config_line)
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/README	Tue May 17 04:35:44 2016 -0400
@@ -0,0 +1,10 @@
+This is a collection of test data to be used with breakdancer. It consists of:
+
+an alignment file
+a output bed file
+
+The details for the alignment file to be put into breakdancer are:
+mean:227
+standard deviation:98
+read length:125	
+sample:X_10000000_Hum1
Binary file test-data/X_10000000_Hum1.bam has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/X_10000000_Hum1.bed	Tue May 17 04:35:44 2016 -0400
@@ -0,0 +1,1144 @@
+track name=X_131684_DEL_340	description="BreakDancer X 131684 DEL 340"	useScore=0
+chrX	131994	131868	HWI-6298568|X_10000000_Hum1	600	1	131994	131868	255,0,0
+chrX	131563	131437	HWI-6298568|X_10000000_Hum1	600	0	131563	131437	0,0,255
+chrX	131994	131868	HWI-31657236|X_10000000_Hum1	600	1	131994	131868	255,0,0
+chrX	131563	131437	HWI-31657236|X_10000000_Hum1	600	0	131563	131437	0,0,255
+chrX	131994	131868	HWI-32617812|X_10000000_Hum1	600	1	131994	131868	255,0,0
+chrX	131563	131437	HWI-32617812|X_10000000_Hum1	600	0	131563	131437	0,0,255
+chrX	132015	131910	HWI-33492886|X_10000000_Hum1	600	1	132015	131910	255,0,0
+chrX	131563	131437	HWI-33492886|X_10000000_Hum1	600	0	131563	131437	0,0,255
+chrX	132018	131892	HWI-19903919|X_10000000_Hum1	600	1	132018	131892	255,0,0
+chrX	131531	131405	HWI-19903919|X_10000000_Hum1	600	0	131531	131405	0,0,255
+track name=X_142444_ITX_-102	description="BreakDancer X 142444 ITX -102"	useScore=0
+chrX	142487	142374	HWI-1310581|X_10000000_Hum1	600	0	142487	142374	0,0,255
+chrX	142486	142360	HWI-1310581|X_10000000_Hum1	600	1	142486	142360	255,0,0
+chrX	142487	142361	HWI-26162395|X_10000000_Hum1	600	0	142487	142361	0,0,255
+chrX	142486	142360	HWI-26162395|X_10000000_Hum1	600	1	142486	142360	255,0,0
+chrX	142487	142361	HWI-36006580|X_10000000_Hum1	600	0	142487	142361	0,0,255
+chrX	142486	142360	HWI-36006580|X_10000000_Hum1	600	1	142486	142360	255,0,0
+chrX	142487	142361	HWI-43085375|X_10000000_Hum1	600	0	142487	142361	0,0,255
+chrX	142486	142360	HWI-43085375|X_10000000_Hum1	600	1	142486	142360	255,0,0
+track name=X_142690_ITX_-104	description="BreakDancer X 142690 ITX -104"	useScore=0
+chrX	142691	142565	HWI-13343719|X_10000000_Hum1	600	0	142691	142565	0,0,255
+chrX	142689	142563	HWI-13343719|X_10000000_Hum1	600	1	142689	142563	255,0,0
+chrX	142691	142565	HWI-14372761|X_10000000_Hum1	600	0	142691	142565	0,0,255
+chrX	142690	142564	HWI-14372761|X_10000000_Hum1	600	1	142690	142564	255,0,0
+track name=X_145921_DEL_526	description="BreakDancer X 145921 DEL 526"	useScore=0
+chrX	146394	146268	HWI-10337428|X_10000000_Hum1	600	1	146394	146268	255,0,0
+chrX	145766	145640	HWI-10337428|X_10000000_Hum1	600	0	145766	145640	0,0,255
+chrX	146404	146288	HWI-10048340|X_10000000_Hum1	600	1	146404	146288	255,0,0
+chrX	145766	145674	HWI-10048340|X_10000000_Hum1	600	0	145766	145674	0,0,255
+track name=X_151718_DEL_331	description="BreakDancer X 151718 DEL 331"	useScore=0
+chrX	151997	151871	HWI-6298273|X_10000000_Hum1	600	1	151997	151871	255,0,0
+chrX	151597	151471	HWI-6298273|X_10000000_Hum1	600	0	151597	151471	0,0,255
+chrX	151997	151871	HWI-25827772|X_10000000_Hum1	600	1	151997	151871	255,0,0
+chrX	151597	151471	HWI-25827772|X_10000000_Hum1	600	0	151597	151471	0,0,255
+chrX	152019	151893	HWI-19776492|X_10000000_Hum1	600	1	152019	151893	255,0,0
+chrX	151554	151428	HWI-19776492|X_10000000_Hum1	600	0	151554	151428	0,0,255
+chrX	152019	151893	HWI-29820858|X_10000000_Hum1	600	1	152019	151893	255,0,0
+chrX	151554	151455	HWI-29820858|X_10000000_Hum1	600	0	151554	151455	0,0,255
+track name=X_155647_ITX_-102	description="BreakDancer X 155647 ITX -102"	useScore=0
+chrX	155647	155596	HWI-2147919|X_10000000_Hum1	580	0	155647	155596	0,0,255
+chrX	155646	155520	HWI-2147919|X_10000000_Hum1	600	1	155646	155520	255,0,0
+chrX	155647	155521	HWI-13386630|X_10000000_Hum1	600	0	155647	155521	0,0,255
+chrX	155646	155520	HWI-13386630|X_10000000_Hum1	600	1	155646	155520	255,0,0
+chrX	155647	155521	HWI-45221094|X_10000000_Hum1	600	0	155647	155521	0,0,255
+chrX	155646	155520	HWI-45221094|X_10000000_Hum1	600	1	155646	155520	255,0,0
+track name=X_157963_DEL_432	description="BreakDancer X 157963 DEL 432"	useScore=0
+chrX	158376	158250	HWI-5008667|X_10000000_Hum1	600	1	158376	158250	255,0,0
+chrX	157842	157716	HWI-5008667|X_10000000_Hum1	600	0	157842	157716	0,0,255
+chrX	158394	158286	HWI-34737497|X_10000000_Hum1	600	1	158394	158286	255,0,0
+chrX	157842	157716	HWI-34737497|X_10000000_Hum1	600	0	157842	157716	0,0,255
+chrX	158425	158348	HWI-30681354|X_10000000_Hum1	600	1	158425	158348	255,0,0
+chrX	157842	157716	HWI-30681354|X_10000000_Hum1	600	0	157842	157716	0,0,255
+track name=X_158261_DEL_306	description="BreakDancer X 158261 DEL 306"	useScore=0
+chrX	158531	158405	HWI-5474944|X_10000000_Hum1	600	1	158531	158405	255,0,0
+chrX	158123	158047	HWI-5474944|X_10000000_Hum1	600	0	158123	158047	0,0,255
+chrX	158531	158405	HWI-6023651|X_10000000_Hum1	600	1	158531	158405	255,0,0
+chrX	158123	158016	HWI-6023651|X_10000000_Hum1	600	0	158123	158016	0,0,255
+chrX	158531	158405	HWI-26086208|X_10000000_Hum1	600	1	158531	158405	255,0,0
+chrX	158123	158068	HWI-26086208|X_10000000_Hum1	600	0	158123	158068	0,0,255
+chrX	158531	158405	HWI-45324024|X_10000000_Hum1	600	1	158531	158405	255,0,0
+chrX	158123	158051	HWI-45324024|X_10000000_Hum1	600	0	158123	158051	0,0,255
+track name=X_159597_DEL_437	description="BreakDancer X 159597 DEL 437"	useScore=0
+chrX	159983	159857	HWI-38863994|X_10000000_Hum1	600	1	159983	159857	255,0,0
+chrX	159412	159286	HWI-38863994|X_10000000_Hum1	600	0	159412	159286	0,0,255
+chrX	159990	159946	HWI-18814149|X_10000000_Hum1	600	1	159990	159946	255,0,0
+chrX	159434	159308	HWI-18814149|X_10000000_Hum1	600	0	159434	159308	0,0,255
+chrX	160003	159897	HWI-26284211|X_10000000_Hum1	600	1	160003	159897	255,0,0
+chrX	159412	159286	HWI-26284211|X_10000000_Hum1	600	0	159412	159286	0,0,255
+track name=X_184550_ITX_-107	description="BreakDancer X 184550 ITX -107"	useScore=0
+chrX	184569	184443	HWI-41838605|X_10000000_Hum1	600	0	184569	184443	0,0,255
+chrX	184568	184442	HWI-41838605|X_10000000_Hum1	600	1	184568	184442	255,0,0
+chrX	184569	184443	HWI-45178523|X_10000000_Hum1	600	0	184569	184443	0,0,255
+chrX	184568	184442	HWI-45178523|X_10000000_Hum1	600	1	184568	184442	255,0,0
+track name=X_185570_ITX_-103	description="BreakDancer X 185570 ITX -103"	useScore=0
+chrX	185590	185478	HWI-4443708|X_10000000_Hum1	600	0	185590	185478	0,0,255
+chrX	185588	185462	HWI-4443708|X_10000000_Hum1	600	1	185588	185462	255,0,0
+chrX	185590	185478	HWI-17981197|X_10000000_Hum1	600	0	185590	185478	0,0,255
+chrX	185588	185462	HWI-17981197|X_10000000_Hum1	600	1	185588	185462	255,0,0
+chrX	185590	185478	HWI-31473115|X_10000000_Hum1	600	0	185590	185478	0,0,255
+chrX	185588	185462	HWI-31473115|X_10000000_Hum1	600	1	185588	185462	255,0,0
+chrX	185590	185478	HWI-33289242|X_10000000_Hum1	600	0	185590	185478	0,0,255
+chrX	185588	185462	HWI-33289242|X_10000000_Hum1	600	1	185588	185462	255,0,0
+chrX	185590	185478	HWI-40134023|X_10000000_Hum1	600	0	185590	185478	0,0,255
+chrX	185588	185462	HWI-40134023|X_10000000_Hum1	600	1	185588	185462	255,0,0
+chrX	185590	185478	HWI-40657965|X_10000000_Hum1	600	0	185590	185478	0,0,255
+chrX	185588	185462	HWI-40657965|X_10000000_Hum1	600	1	185588	185462	255,0,0
+chrX	185590	185478	HWI-40864350|X_10000000_Hum1	600	0	185590	185478	0,0,255
+chrX	185588	185462	HWI-40864350|X_10000000_Hum1	600	1	185588	185462	255,0,0
+chrX	185590	185478	HWI-41247140|X_10000000_Hum1	600	0	185590	185478	0,0,255
+chrX	185588	185462	HWI-41247140|X_10000000_Hum1	600	1	185588	185462	255,0,0
+track name=X_186648_ITX_-171	description="BreakDancer X 186648 ITX -171"	useScore=0
+chrX	186820	186748	HWI-15477191|X_10000000_Hum1	600	0	186820	186748	0,0,255
+chrX	186676	186550	HWI-15477191|X_10000000_Hum1	600	1	186676	186550	255,0,0
+chrX	186820	186748	HWI-22006832|X_10000000_Hum1	600	0	186820	186748	0,0,255
+chrX	186676	186550	HWI-22006832|X_10000000_Hum1	600	1	186676	186550	255,0,0
+chrX	186820	186748	HWI-36369619|X_10000000_Hum1	600	0	186820	186748	0,0,255
+chrX	186676	186550	HWI-36369619|X_10000000_Hum1	600	1	186676	186550	255,0,0
+chrX	186820	186748	HWI-40429832|X_10000000_Hum1	600	0	186820	186748	0,0,255
+chrX	186705	186608	HWI-40429832|X_10000000_Hum1	600	1	186705	186608	255,0,0
+chrX	186838	186784	HWI-29316080|X_10000000_Hum1	600	0	186838	186784	0,0,255
+chrX	186837	186711	HWI-29316080|X_10000000_Hum1	600	1	186837	186711	255,0,0
+chrX	186838	186784	HWI-44063130|X_10000000_Hum1	600	0	186838	186784	0,0,255
+chrX	186837	186711	HWI-44063130|X_10000000_Hum1	600	1	186837	186711	255,0,0
+track name=X_186648_ITX_178	description="BreakDancer X 186648 ITX 178"	useScore=0
+chrX	187061	186989	HWI-6990988|X_10000000_Hum1	600	0	187061	186989	0,0,255
+chrX	186647	186521	HWI-6990988|X_10000000_Hum1	600	1	186647	186521	255,0,0
+chrX	187061	186989	HWI-14717852|X_10000000_Hum1	600	0	187061	186989	0,0,255
+chrX	186647	186521	HWI-14717852|X_10000000_Hum1	600	1	186647	186521	255,0,0
+chrX	187151	187025	HWI-7067426|X_10000000_Hum1	600	0	187151	187025	0,0,255
+chrX	186647	186521	HWI-7067426|X_10000000_Hum1	600	1	186647	186521	255,0,0
+chrX	187151	187025	HWI-44334617|X_10000000_Hum1	600	0	187151	187025	0,0,255
+chrX	186647	186521	HWI-44334617|X_10000000_Hum1	600	1	186647	186521	255,0,0
+chrX	187176	187050	HWI-19393698|X_10000000_Hum1	600	0	187176	187050	0,0,255
+chrX	186647	186521	HWI-19393698|X_10000000_Hum1	600	1	186647	186521	255,0,0
+chrX	187176	187050	HWI-19548136|X_10000000_Hum1	600	0	187176	187050	0,0,255
+chrX	186647	186521	HWI-19548136|X_10000000_Hum1	600	1	186647	186521	255,0,0
+chrX	187176	187050	HWI-45745214|X_10000000_Hum1	600	0	187176	187050	0,0,255
+chrX	186647	186521	HWI-45745214|X_10000000_Hum1	600	1	186647	186521	255,0,0
+chrX	187176	187050	HWI-46220259|X_10000000_Hum1	600	0	187176	187050	0,0,255
+chrX	186647	186521	HWI-46220259|X_10000000_Hum1	600	1	186647	186521	255,0,0
+chrX	187192	187066	HWI-973910|X_10000000_Hum1	600	0	187192	187066	0,0,255
+chrX	186740	186671	HWI-973910|X_10000000_Hum1	600	1	186740	186671	255,0,0
+chrX	187192	187066	HWI-5446566|X_10000000_Hum1	600	0	187192	187066	0,0,255
+chrX	186683	186557	HWI-5446566|X_10000000_Hum1	600	1	186683	186557	255,0,0
+chrX	187192	187066	HWI-27914027|X_10000000_Hum1	600	0	187192	187066	0,0,255
+chrX	186719	186629	HWI-27914027|X_10000000_Hum1	600	1	186719	186629	255,0,0
+chrX	187192	187066	HWI-42008912|X_10000000_Hum1	600	0	187192	187066	0,0,255
+chrX	186683	186557	HWI-42008912|X_10000000_Hum1	600	1	186683	186557	255,0,0
+track name=X_186821_ITX_20	description="BreakDancer X 186821 ITX 20"	useScore=0
+chrX	187138	187012	HWI-15249019|X_10000000_Hum1	600	0	187138	187012	0,0,255
+chrX	186823	186752	HWI-15249019|X_10000000_Hum1	600	1	186823	186752	255,0,0
+chrX	187138	187012	HWI-22481385|X_10000000_Hum1	600	0	187138	187012	0,0,255
+chrX	186823	186752	HWI-22481385|X_10000000_Hum1	600	1	186823	186752	255,0,0
+chrX	187138	187012	HWI-36585146|X_10000000_Hum1	600	0	187138	187012	0,0,255
+chrX	186823	186752	HWI-36585146|X_10000000_Hum1	600	1	186823	186752	255,0,0
+chrX	187138	187012	HWI-43572016|X_10000000_Hum1	600	0	187138	187012	0,0,255
+chrX	186823	186752	HWI-43572016|X_10000000_Hum1	600	1	186823	186752	255,0,0
+track name=X_188119_ITX_-104	description="BreakDancer X 188119 ITX -104"	useScore=0
+chrX	188119	188030	HWI-8385164|X_10000000_Hum1	600	0	188119	188030	0,0,255
+chrX	188118	187992	HWI-8385164|X_10000000_Hum1	600	1	188118	187992	255,0,0
+chrX	188119	188030	HWI-41266526|X_10000000_Hum1	600	0	188119	188030	0,0,255
+chrX	188118	187992	HWI-41266526|X_10000000_Hum1	600	1	188118	187992	255,0,0
+track name=X_188298_DEL_326	description="BreakDancer X 188298 DEL 326"	useScore=0
+chrX	188569	188443	HWI-18021776|X_10000000_Hum1	600	1	188569	188443	255,0,0
+chrX	188141	188074	HWI-18021776|X_10000000_Hum1	600	0	188141	188074	0,0,255
+chrX	188569	188443	HWI-39381004|X_10000000_Hum1	600	1	188569	188443	255,0,0
+chrX	188141	188074	HWI-39381004|X_10000000_Hum1	600	0	188141	188074	0,0,255
+chrX	188569	188443	HWI-43136674|X_10000000_Hum1	600	1	188569	188443	255,0,0
+chrX	188141	188074	HWI-43136674|X_10000000_Hum1	600	0	188141	188074	0,0,255
+track name=X_254834_INV_-147	description="BreakDancer X 254834 INV -147"	useScore=0
+chrX	254833	254791	HWI-17200090|X_10000000_Hum1	600	1	254833	254791	255,0,0
+chrX	254833	254718	HWI-17200090|X_10000000_Hum1	600	1	254833	254718	255,0,0
+chrX	254833	254791	HWI-22055938|X_10000000_Hum1	600	1	254833	254791	255,0,0
+chrX	254833	254718	HWI-22055938|X_10000000_Hum1	600	1	254833	254718	255,0,0
+chrX	254844	254740	HWI-25753921|X_10000000_Hum1	600	1	254844	254740	255,0,0
+chrX	254833	254791	HWI-25753921|X_10000000_Hum1	600	1	254833	254791	255,0,0
+track name=X_268244_DEL_324	description="BreakDancer X 268244 DEL 324"	useScore=0
+chrX	268507	268381	HWI-21816758|X_10000000_Hum1	600	1	268507	268381	255,0,0
+chrX	268067	267941	HWI-21816758|X_10000000_Hum1	600	0	268067	267941	0,0,255
+chrX	268507	268381	HWI-27989602|X_10000000_Hum1	600	1	268507	268381	255,0,0
+chrX	268067	267941	HWI-27989602|X_10000000_Hum1	600	0	268067	267941	0,0,255
+chrX	268526	268400	HWI-180378|X_10000000_Hum1	600	1	268526	268400	255,0,0
+chrX	268105	267979	HWI-180378|X_10000000_Hum1	600	0	268105	267979	0,0,255
+chrX	268526	268400	HWI-3153432|X_10000000_Hum1	600	1	268526	268400	255,0,0
+chrX	268105	267979	HWI-3153432|X_10000000_Hum1	600	0	268105	267979	0,0,255
+chrX	268526	268400	HWI-21149428|X_10000000_Hum1	600	1	268526	268400	255,0,0
+chrX	268105	267979	HWI-21149428|X_10000000_Hum1	600	0	268105	267979	0,0,255
+chrX	268526	268400	HWI-23821574|X_10000000_Hum1	600	1	268526	268400	255,0,0
+chrX	268105	267979	HWI-23821574|X_10000000_Hum1	600	0	268105	267979	0,0,255
+chrX	268526	268400	HWI-32383267|X_10000000_Hum1	600	1	268526	268400	255,0,0
+chrX	268105	267979	HWI-32383267|X_10000000_Hum1	600	0	268105	267979	0,0,255
+track name=X_268716_DEL_446	description="BreakDancer X 268716 DEL 446"	useScore=0
+chrX	269127	269001	HWI-25179889|X_10000000_Hum1	600	1	269127	269001	255,0,0
+chrX	268595	268504	HWI-25179889|X_10000000_Hum1	600	0	268595	268504	0,0,255
+chrX	269127	269001	HWI-46287382|X_10000000_Hum1	600	1	269127	269001	255,0,0
+chrX	268595	268469	HWI-46287382|X_10000000_Hum1	600	0	268595	268469	0,0,255
+chrX	269130	269004	HWI-100037|X_10000000_Hum1	600	1	269130	269004	255,0,0
+chrX	268560	268434	HWI-100037|X_10000000_Hum1	600	0	268560	268434	0,0,255
+chrX	269131	269005	HWI-23857318|X_10000000_Hum1	600	1	269131	269005	255,0,0
+chrX	268560	268434	HWI-23857318|X_10000000_Hum1	600	0	268560	268434	0,0,255
+chrX	269162	269071	HWI-14136092|X_10000000_Hum1	600	1	269162	269071	255,0,0
+chrX	268595	268508	HWI-14136092|X_10000000_Hum1	600	0	268595	268508	0,0,255
+track name=X_269032_DEL_376	description="BreakDancer X 269032 DEL 376"	useScore=0
+chrX	269470	269425	HWI-6211220|X_10000000_Hum1	600	1	269470	269425	255,0,0
+chrX	268911	268785	HWI-6211220|X_10000000_Hum1	600	0	268911	268785	0,0,255
+chrX	269480	269445	HWI-23711705|X_10000000_Hum1	600	1	269480	269445	255,0,0
+chrX	268911	268785	HWI-23711705|X_10000000_Hum1	600	0	268911	268785	0,0,255
+track name=X_269503_DEL_306	description="BreakDancer X 269503 DEL 306"	useScore=0
+chrX	269802	269714	HWI-32092650|X_10000000_Hum1	600	1	269802	269714	255,0,0
+chrX	269356	269230	HWI-32092650|X_10000000_Hum1	600	0	269356	269230	0,0,255
+chrX	269802	269714	HWI-37910745|X_10000000_Hum1	600	1	269802	269714	255,0,0
+chrX	269356	269230	HWI-37910745|X_10000000_Hum1	600	0	269356	269230	0,0,255
+chrX	269821	269752	HWI-27639185|X_10000000_Hum1	600	1	269821	269752	255,0,0
+chrX	269356	269230	HWI-27639185|X_10000000_Hum1	600	0	269356	269230	0,0,255
+track name=X_274164_ITX_-105	description="BreakDancer X 274164 ITX -105"	useScore=0
+chrX	274165	274080	HWI-8205574|X_10000000_Hum1	600	0	274165	274080	0,0,255
+chrX	274163	274037	HWI-8205574|X_10000000_Hum1	600	1	274163	274037	255,0,0
+chrX	274165	274079	HWI-31541706|X_10000000_Hum1	600	0	274165	274079	0,0,255
+chrX	274163	274037	HWI-31541706|X_10000000_Hum1	600	1	274163	274037	255,0,0
+chrX	274174	274109	HWI-26266399|X_10000000_Hum1	600	0	274174	274109	0,0,255
+chrX	274173	274047	HWI-26266399|X_10000000_Hum1	600	1	274173	274047	255,0,0
+chrX	274174	274048	HWI-27999416|X_10000000_Hum1	600	0	274174	274048	0,0,255
+chrX	274173	274047	HWI-27999416|X_10000000_Hum1	600	1	274173	274047	255,0,0
+track name=X_280215_DEL_321	description="BreakDancer X 280215 DEL 321"	useScore=0
+chrX	280483	280357	HWI-5617096|X_10000000_Hum1	600	1	280483	280357	255,0,0
+chrX	280067	279958	HWI-5617096|X_10000000_Hum1	600	0	280067	279958	0,0,255
+chrX	280499	280389	HWI-30732696|X_10000000_Hum1	600	1	280499	280389	255,0,0
+chrX	280067	279969	HWI-30732696|X_10000000_Hum1	600	0	280067	279969	0,0,255
+chrX	280532	280406	HWI-17107835|X_10000000_Hum1	600	1	280532	280406	255,0,0
+chrX	280094	280012	HWI-17107835|X_10000000_Hum1	600	0	280094	280012	0,0,255
+track name=X_282107_DEL_304	description="BreakDancer X 282107 DEL 304"	useScore=0
+chrX	282349	282223	HWI-10503336|X_10000000_Hum1	600	1	282349	282223	255,0,0
+chrX	281952	281826	HWI-10503336|X_10000000_Hum1	600	0	281952	281826	0,0,255
+chrX	282349	282223	HWI-12332551|X_10000000_Hum1	600	1	282349	282223	255,0,0
+chrX	281952	281826	HWI-12332551|X_10000000_Hum1	600	0	281952	281826	0,0,255
+chrX	282349	282223	HWI-20149866|X_10000000_Hum1	600	1	282349	282223	255,0,0
+chrX	281952	281826	HWI-20149866|X_10000000_Hum1	600	0	281952	281826	0,0,255
+chrX	282349	282223	HWI-27191540|X_10000000_Hum1	600	1	282349	282223	255,0,0
+chrX	281952	281826	HWI-27191540|X_10000000_Hum1	600	0	281952	281826	0,0,255
+chrX	282349	282223	HWI-27524378|X_10000000_Hum1	600	1	282349	282223	255,0,0
+chrX	281952	281839	HWI-27524378|X_10000000_Hum1	600	0	281952	281839	0,0,255
+chrX	282366	282240	HWI-14334181|X_10000000_Hum1	600	1	282366	282240	255,0,0
+chrX	281947	281821	HWI-14334181|X_10000000_Hum1	600	0	281947	281821	0,0,255
+chrX	282366	282240	HWI-30617176|X_10000000_Hum1	600	1	282366	282240	255,0,0
+chrX	281947	281821	HWI-30617176|X_10000000_Hum1	600	0	281947	281821	0,0,255
+chrX	282371	282302	HWI-32608875|X_10000000_Hum1	430	1	282371	282302	255,0,0
+chrX	281899	281773	HWI-32608875|X_10000000_Hum1	600	0	281899	281773	0,0,255
+chrX	282391	282265	HWI-16189220|X_10000000_Hum1	600	1	282391	282265	255,0,0
+chrX	281986	281860	HWI-16189220|X_10000000_Hum1	600	0	281986	281860	0,0,255
+chrX	282391	282265	HWI-21281812|X_10000000_Hum1	600	1	282391	282265	255,0,0
+chrX	281986	281860	HWI-21281812|X_10000000_Hum1	600	0	281986	281860	0,0,255
+chrX	282391	282265	HWI-22481208|X_10000000_Hum1	600	1	282391	282265	255,0,0
+chrX	281986	281860	HWI-22481208|X_10000000_Hum1	600	0	281986	281860	0,0,255
+chrX	282391	282265	HWI-32772599|X_10000000_Hum1	600	1	282391	282265	255,0,0
+chrX	281986	281860	HWI-32772599|X_10000000_Hum1	600	0	281986	281860	0,0,255
+chrX	282431	282370	HWI-14165616|X_10000000_Hum1	600	1	282431	282370	255,0,0
+chrX	281947	281859	HWI-14165616|X_10000000_Hum1	600	0	281947	281859	0,0,255
+track name=X_295796_DEL_7676	description="BreakDancer X 295796 DEL 7676"	useScore=0
+chrX	303475	303349	HWI-23944302|X_10000000_Hum1	600	1	303475	303349	255,0,0
+chrX	295675	295617	HWI-23944302|X_10000000_Hum1	600	0	295675	295617	0,0,255
+chrX	303475	303349	HWI-25129655|X_10000000_Hum1	600	1	303475	303349	255,0,0
+chrX	295653	295573	HWI-25129655|X_10000000_Hum1	600	0	295653	295573	0,0,255
+chrX	303475	303349	HWI-27960989|X_10000000_Hum1	600	1	303475	303349	255,0,0
+chrX	295675	295617	HWI-27960989|X_10000000_Hum1	600	0	295675	295617	0,0,255
+chrX	303475	303349	HWI-34742117|X_10000000_Hum1	600	1	303475	303349	255,0,0
+chrX	295675	295617	HWI-34742117|X_10000000_Hum1	600	0	295675	295617	0,0,255
+chrX	303478	303406	HWI-31604105|X_10000000_Hum1	600	1	303478	303406	255,0,0
+chrX	295653	295605	HWI-31604105|X_10000000_Hum1	600	0	295653	295605	0,0,255
+track name=X_295964_DEL_7538	description="BreakDancer X 295964 DEL 7538"	useScore=0
+chrX	303475	303349	HWI-25394682|X_10000000_Hum1	600	1	303475	303349	255,0,0
+chrX	295827	295701	HWI-25394682|X_10000000_Hum1	600	0	295827	295701	0,0,255
+chrX	303475	303349	HWI-37898372|X_10000000_Hum1	600	1	303475	303349	255,0,0
+chrX	295827	295701	HWI-37898372|X_10000000_Hum1	600	0	295827	295701	0,0,255
+chrX	303475	303349	HWI-40377425|X_10000000_Hum1	600	1	303475	303349	255,0,0
+chrX	295827	295701	HWI-40377425|X_10000000_Hum1	600	0	295827	295701	0,0,255
+chrX	303475	303349	HWI-45964863|X_10000000_Hum1	600	1	303475	303349	255,0,0
+chrX	295827	295701	HWI-45964863|X_10000000_Hum1	600	0	295827	295701	0,0,255
+chrX	303505	303379	HWI-29582679|X_10000000_Hum1	600	1	303505	303379	255,0,0
+chrX	295843	295717	HWI-29582679|X_10000000_Hum1	600	0	295843	295717	0,0,255
+chrX	303505	303379	HWI-37439820|X_10000000_Hum1	600	1	303505	303379	255,0,0
+chrX	295843	295717	HWI-37439820|X_10000000_Hum1	600	0	295843	295717	0,0,255
+chrX	303505	303379	HWI-38095924|X_10000000_Hum1	600	1	303505	303379	255,0,0
+chrX	295843	295717	HWI-38095924|X_10000000_Hum1	600	0	295843	295717	0,0,255
+track name=X_307512_DEL_321	description="BreakDancer X 307512 DEL 321"	useScore=0
+chrX	307814	307688	HWI-2506686|X_10000000_Hum1	600	1	307814	307688	255,0,0
+chrX	307391	307356	HWI-2506686|X_10000000_Hum1	600	0	307391	307356	0,0,255
+chrX	307814	307688	HWI-39390208|X_10000000_Hum1	600	1	307814	307688	255,0,0
+chrX	307391	307328	HWI-39390208|X_10000000_Hum1	600	0	307391	307328	0,0,255
+chrX	307840	307740	HWI-17420775|X_10000000_Hum1	600	1	307840	307740	255,0,0
+chrX	307391	307351	HWI-17420775|X_10000000_Hum1	600	0	307391	307351	0,0,255
+track name=X_307512_DEL_512	description="BreakDancer X 307512 DEL 512"	useScore=0
+chrX	308006	307909	HWI-18317854|X_10000000_Hum1	600	1	308006	307909	255,0,0
+chrX	307363	307248	HWI-18317854|X_10000000_Hum1	600	0	307363	307248	0,0,255
+chrX	308013	307923	HWI-19723141|X_10000000_Hum1	600	1	308013	307923	255,0,0
+chrX	307363	307303	HWI-19723141|X_10000000_Hum1	600	0	307363	307303	0,0,255
+chrX	308017	307931	HWI-32681713|X_10000000_Hum1	600	1	308017	307931	255,0,0
+chrX	307363	307265	HWI-32681713|X_10000000_Hum1	600	0	307363	307265	0,0,255
+track name=X_316962_DEL_383	description="BreakDancer X 316962 DEL 383"	useScore=0
+chrX	317227	317101	HWI-15187025|X_10000000_Hum1	600	1	317227	317101	255,0,0
+chrX	316698	316643	HWI-15187025|X_10000000_Hum1	600	0	316698	316643	0,0,255
+chrX	317227	317101	HWI-17775695|X_10000000_Hum1	600	1	317227	317101	255,0,0
+chrX	316698	316572	HWI-17775695|X_10000000_Hum1	600	0	316698	316572	0,0,255
+chrX	317227	317101	HWI-22133871|X_10000000_Hum1	600	1	317227	317101	255,0,0
+chrX	316698	316610	HWI-22133871|X_10000000_Hum1	600	0	316698	316610	0,0,255
+chrX	317245	317119	HWI-3619605|X_10000000_Hum1	600	1	317245	317119	255,0,0
+chrX	316793	316683	HWI-3619605|X_10000000_Hum1	600	0	316793	316683	0,0,255
+chrX	317245	317119	HWI-6875154|X_10000000_Hum1	600	1	317245	317119	255,0,0
+chrX	316793	316741	HWI-6875154|X_10000000_Hum1	600	0	316793	316741	0,0,255
+chrX	317245	317119	HWI-40596010|X_10000000_Hum1	600	1	317245	317119	255,0,0
+chrX	316793	316683	HWI-40596010|X_10000000_Hum1	600	0	316793	316683	0,0,255
+chrX	317245	317119	HWI-46071989|X_10000000_Hum1	600	1	317245	317119	255,0,0
+chrX	316793	316683	HWI-46071989|X_10000000_Hum1	600	0	316793	316683	0,0,255
+track name=X_329258_ITX_-102	description="BreakDancer X 329258 ITX -102"	useScore=0
+chrX	329302	329176	HWI-3953587|X_10000000_Hum1	600	0	329302	329176	0,0,255
+chrX	329301	329175	HWI-3953587|X_10000000_Hum1	600	1	329301	329175	255,0,0
+chrX	329302	329176	HWI-4810201|X_10000000_Hum1	600	0	329302	329176	0,0,255
+chrX	329301	329175	HWI-4810201|X_10000000_Hum1	600	1	329301	329175	255,0,0
+chrX	329302	329176	HWI-7560032|X_10000000_Hum1	600	0	329302	329176	0,0,255
+chrX	329301	329175	HWI-7560032|X_10000000_Hum1	600	1	329301	329175	255,0,0
+chrX	329302	329176	HWI-10134476|X_10000000_Hum1	600	0	329302	329176	0,0,255
+chrX	329301	329175	HWI-10134476|X_10000000_Hum1	600	1	329301	329175	255,0,0
+track name=X_332888_ITX_-105	description="BreakDancer X 332888 ITX -105"	useScore=0
+chrX	332891	332831	HWI-17122323|X_10000000_Hum1	600	0	332891	332831	0,0,255
+chrX	332887	332761	HWI-17122323|X_10000000_Hum1	600	1	332887	332761	255,0,0
+chrX	332891	332831	HWI-45457620|X_10000000_Hum1	600	0	332891	332831	0,0,255
+chrX	332887	332761	HWI-45457620|X_10000000_Hum1	600	1	332887	332761	255,0,0
+track name=X_339370_DEL_384	description="BreakDancer X 339370 DEL 384"	useScore=0
+chrX	339689	339563	HWI-7602159|X_10000000_Hum1	600	1	339689	339563	255,0,0
+chrX	339201	339075	HWI-7602159|X_10000000_Hum1	600	0	339201	339075	0,0,255
+chrX	339689	339563	HWI-18791019|X_10000000_Hum1	600	1	339689	339563	255,0,0
+chrX	339201	339158	HWI-18791019|X_10000000_Hum1	600	0	339201	339158	0,0,255
+chrX	339689	339563	HWI-27806773|X_10000000_Hum1	600	1	339689	339563	255,0,0
+chrX	339201	339075	HWI-27806773|X_10000000_Hum1	600	0	339201	339075	0,0,255
+chrX	339728	339602	HWI-2865823|X_10000000_Hum1	600	1	339728	339602	255,0,0
+chrX	339249	339123	HWI-2865823|X_10000000_Hum1	600	0	339249	339123	0,0,255
+track name=X_343414_ITX_-104	description="BreakDancer X 343414 ITX -104"	useScore=0
+chrX	343414	343353	HWI-1852552|X_10000000_Hum1	600	0	343414	343353	0,0,255
+chrX	343413	343287	HWI-1852552|X_10000000_Hum1	600	1	343413	343287	255,0,0
+chrX	343414	343288	HWI-18943909|X_10000000_Hum1	600	0	343414	343288	0,0,255
+chrX	343413	343287	HWI-18943909|X_10000000_Hum1	600	1	343413	343287	255,0,0
+chrX	343414	343288	HWI-23146255|X_10000000_Hum1	600	0	343414	343288	0,0,255
+chrX	343413	343287	HWI-23146255|X_10000000_Hum1	600	1	343413	343287	255,0,0
+chrX	343414	343288	HWI-26670358|X_10000000_Hum1	600	0	343414	343288	0,0,255
+chrX	343413	343287	HWI-26670358|X_10000000_Hum1	600	1	343413	343287	255,0,0
+track name=X_353226_ITX_-102	description="BreakDancer X 353226 ITX -102"	useScore=0
+chrX	353253	353220	HWI-14833649|X_10000000_Hum1	600	0	353253	353220	0,0,255
+chrX	353252	353126	HWI-14833649|X_10000000_Hum1	600	1	353252	353126	255,0,0
+chrX	353253	353220	HWI-16978334|X_10000000_Hum1	600	0	353253	353220	0,0,255
+chrX	353252	353126	HWI-16978334|X_10000000_Hum1	600	1	353252	353126	255,0,0
+chrX	353253	353220	HWI-26088344|X_10000000_Hum1	600	0	353253	353220	0,0,255
+chrX	353252	353126	HWI-26088344|X_10000000_Hum1	600	1	353252	353126	255,0,0
+chrX	353253	353220	HWI-44867931|X_10000000_Hum1	600	0	353253	353220	0,0,255
+chrX	353252	353126	HWI-44867931|X_10000000_Hum1	600	1	353252	353126	255,0,0
+track name=X_358309_ITX_-105	description="BreakDancer X 358309 ITX -105"	useScore=0
+chrX	358376	358250	HWI-5333731|X_10000000_Hum1	600	0	358376	358250	0,0,255
+chrX	358373	358247	HWI-5333731|X_10000000_Hum1	600	1	358373	358247	255,0,0
+chrX	358376	358250	HWI-14398150|X_10000000_Hum1	600	0	358376	358250	0,0,255
+chrX	358373	358247	HWI-14398150|X_10000000_Hum1	600	1	358373	358247	255,0,0
+chrX	358376	358250	HWI-22277584|X_10000000_Hum1	600	0	358376	358250	0,0,255
+chrX	358373	358247	HWI-22277584|X_10000000_Hum1	600	1	358373	358247	255,0,0
+chrX	358376	358250	HWI-29488916|X_10000000_Hum1	600	0	358376	358250	0,0,255
+chrX	358373	358247	HWI-29488916|X_10000000_Hum1	600	1	358373	358247	255,0,0
+chrX	358376	358250	HWI-35324315|X_10000000_Hum1	600	0	358376	358250	0,0,255
+chrX	358373	358247	HWI-35324315|X_10000000_Hum1	600	1	358373	358247	255,0,0
+track name=X_363873_DEL_320	description="BreakDancer X 363873 DEL 320"	useScore=0
+chrX	364154	364028	HWI-8328346|X_10000000_Hum1	600	1	364154	364028	255,0,0
+chrX	363752	363626	HWI-8328346|X_10000000_Hum1	600	0	363752	363626	0,0,255
+chrX	364173	364047	HWI-25937555|X_10000000_Hum1	600	1	364173	364047	255,0,0
+chrX	363731	363605	HWI-25937555|X_10000000_Hum1	600	0	363731	363605	0,0,255
+track name=X_366958_DEL_319	description="BreakDancer X 366958 DEL 319"	useScore=0
+chrX	367238	367112	HWI-1358661|X_10000000_Hum1	600	1	367238	367112	255,0,0
+chrX	366837	366711	HWI-1358661|X_10000000_Hum1	600	0	366837	366711	0,0,255
+chrX	367238	367112	HWI-36309473|X_10000000_Hum1	600	1	367238	367112	255,0,0
+chrX	366837	366711	HWI-36309473|X_10000000_Hum1	600	0	366837	366711	0,0,255
+chrX	367247	367121	HWI-37315390|X_10000000_Hum1	600	1	367247	367121	255,0,0
+chrX	366797	366671	HWI-37315390|X_10000000_Hum1	600	0	366797	366671	0,0,255
+chrX	367280	367196	HWI-30266172|X_10000000_Hum1	600	1	367280	367196	255,0,0
+chrX	366837	366711	HWI-30266172|X_10000000_Hum1	600	0	366837	366711	0,0,255
+chrX	367319	367265	HWI-35842000|X_10000000_Hum1	600	1	367319	367265	255,0,0
+chrX	366797	366671	HWI-35842000|X_10000000_Hum1	600	0	366797	366671	0,0,255
+track name=X_368221_ITX_-102	description="BreakDancer X 368221 ITX -102"	useScore=0
+chrX	368270	368144	HWI-32475302|X_10000000_Hum1	600	0	368270	368144	0,0,255
+chrX	368269	368143	HWI-32475302|X_10000000_Hum1	600	1	368269	368143	255,0,0
+chrX	368270	368144	HWI-34213596|X_10000000_Hum1	600	0	368270	368144	0,0,255
+chrX	368269	368143	HWI-34213596|X_10000000_Hum1	600	1	368269	368143	255,0,0
+track name=X_393353_DEL_405	description="BreakDancer X 393353 DEL 405"	useScore=0
+chrX	393688	393562	HWI-7864240|X_10000000_Hum1	600	1	393688	393562	255,0,0
+chrX	393232	393185	HWI-7864240|X_10000000_Hum1	600	0	393232	393185	0,0,255
+chrX	393714	393588	HWI-68579|X_10000000_Hum1	600	1	393714	393588	255,0,0
+chrX	393182	393114	HWI-68579|X_10000000_Hum1	600	0	393182	393114	0,0,255
+chrX	393714	393588	HWI-11001142|X_10000000_Hum1	600	1	393714	393588	255,0,0
+chrX	393182	393122	HWI-11001142|X_10000000_Hum1	600	0	393182	393122	0,0,255
+track name=X_394653_ITX_-104	description="BreakDancer X 394653 ITX -104"	useScore=0
+chrX	394655	394529	HWI-4303611|X_10000000_Hum1	600	0	394655	394529	0,0,255
+chrX	394652	394526	HWI-4303611|X_10000000_Hum1	600	1	394652	394526	255,0,0
+chrX	394655	394529	HWI-14567695|X_10000000_Hum1	600	0	394655	394529	0,0,255
+chrX	394652	394526	HWI-14567695|X_10000000_Hum1	600	1	394652	394526	255,0,0
+chrX	394655	394529	HWI-19898106|X_10000000_Hum1	600	0	394655	394529	0,0,255
+chrX	394652	394526	HWI-19898106|X_10000000_Hum1	600	1	394652	394526	255,0,0
+chrX	394655	394529	HWI-33495839|X_10000000_Hum1	600	0	394655	394529	0,0,255
+chrX	394652	394526	HWI-33495839|X_10000000_Hum1	600	1	394652	394526	255,0,0
+chrX	394655	394529	HWI-34375922|X_10000000_Hum1	600	0	394655	394529	0,0,255
+chrX	394652	394526	HWI-34375922|X_10000000_Hum1	600	1	394652	394526	255,0,0
+track name=X_394822_DEL_452	description="BreakDancer X 394822 DEL 452"	useScore=0
+chrX	395255	395129	HWI-42446871|X_10000000_Hum1	600	1	395255	395129	255,0,0
+chrX	394701	394608	HWI-42446871|X_10000000_Hum1	600	0	394701	394608	0,0,255
+chrX	395255	395129	HWI-45007671|X_10000000_Hum1	600	1	395255	395129	255,0,0
+chrX	394701	394588	HWI-45007671|X_10000000_Hum1	600	0	394701	394588	0,0,255
+chrX	395300	395219	HWI-10447076|X_10000000_Hum1	600	1	395300	395219	255,0,0
+chrX	394701	394623	HWI-10447076|X_10000000_Hum1	600	0	394701	394623	0,0,255
+track name=X_398500_ITX_-104	description="BreakDancer X 398500 ITX -104"	useScore=0
+chrX	398500	398374	HWI-28015660|X_10000000_Hum1	600	0	398500	398374	0,0,255
+chrX	398499	398373	HWI-28015660|X_10000000_Hum1	600	1	398499	398373	255,0,0
+chrX	398516	398390	HWI-2689396|X_10000000_Hum1	600	0	398516	398390	0,0,255
+chrX	398515	398389	HWI-2689396|X_10000000_Hum1	600	1	398515	398389	255,0,0
+chrX	398516	398390	HWI-17353336|X_10000000_Hum1	600	0	398516	398390	0,0,255
+chrX	398515	398389	HWI-17353336|X_10000000_Hum1	600	1	398515	398389	255,0,0
+track name=X_399821_DEL_347	description="BreakDancer X 399821 DEL 347"	useScore=0
+chrX	400116	399990	HWI-1896264|X_10000000_Hum1	600	1	400116	399990	255,0,0
+chrX	399660	399534	HWI-1896264|X_10000000_Hum1	600	0	399660	399534	0,0,255
+chrX	400116	399990	HWI-38449228|X_10000000_Hum1	600	1	400116	399990	255,0,0
+chrX	399660	399534	HWI-38449228|X_10000000_Hum1	600	0	399660	399534	0,0,255
+chrX	400116	399990	HWI-38756233|X_10000000_Hum1	600	1	400116	399990	255,0,0
+chrX	399660	399534	HWI-38756233|X_10000000_Hum1	600	0	399660	399534	0,0,255
+chrX	400128	400002	HWI-8060319|X_10000000_Hum1	600	1	400128	400002	255,0,0
+chrX	399700	399574	HWI-8060319|X_10000000_Hum1	600	0	399700	399574	0,0,255
+track name=X_414461_DEL_390	description="BreakDancer X 414461 DEL 390"	useScore=0
+chrX	414832	414706	HWI-2927518|X_10000000_Hum1	600	1	414832	414706	255,0,0
+chrX	414340	414301	HWI-2927518|X_10000000_Hum1	600	0	414340	414301	0,0,255
+chrX	414832	414706	HWI-12613088|X_10000000_Hum1	600	1	414832	414706	255,0,0
+chrX	414340	414301	HWI-12613088|X_10000000_Hum1	600	0	414340	414301	0,0,255
+track name=X_418595_DEL_355	description="BreakDancer X 418595 DEL 355"	useScore=0
+chrX	418887	418761	HWI-2401828|X_10000000_Hum1	600	1	418887	418761	255,0,0
+chrX	418430	418304	HWI-2401828|X_10000000_Hum1	600	0	418430	418304	0,0,255
+chrX	418887	418761	HWI-6733225|X_10000000_Hum1	600	1	418887	418761	255,0,0
+chrX	418430	418318	HWI-6733225|X_10000000_Hum1	600	0	418430	418318	0,0,255
+chrX	418887	418761	HWI-35926572|X_10000000_Hum1	600	1	418887	418761	255,0,0
+chrX	418430	418304	HWI-35926572|X_10000000_Hum1	600	0	418430	418304	0,0,255
+chrX	418897	418781	HWI-3256167|X_10000000_Hum1	600	1	418897	418781	255,0,0
+chrX	418430	418304	HWI-3256167|X_10000000_Hum1	600	0	418430	418304	0,0,255
+track name=X_419577_ITX_-105	description="BreakDancer X 419577 ITX -105"	useScore=0
+chrX	419580	419454	HWI-33954179|X_10000000_Hum1	600	0	419580	419454	0,0,255
+chrX	419579	419453	HWI-33954179|X_10000000_Hum1	600	1	419579	419453	255,0,0
+chrX	419587	419461	HWI-41381133|X_10000000_Hum1	600	0	419587	419461	0,0,255
+chrX	419586	419460	HWI-41381133|X_10000000_Hum1	600	1	419586	419460	255,0,0
+track name=X_426627_ITX_-102	description="BreakDancer X 426627 ITX -102"	useScore=0
+chrX	426627	426501	HWI-4028686|X_10000000_Hum1	600	0	426627	426501	0,0,255
+chrX	426626	426500	HWI-4028686|X_10000000_Hum1	600	1	426626	426500	255,0,0
+chrX	426627	426501	HWI-5826582|X_10000000_Hum1	600	0	426627	426501	0,0,255
+chrX	426626	426500	HWI-5826582|X_10000000_Hum1	600	1	426626	426500	255,0,0
+chrX	426627	426501	HWI-6319663|X_10000000_Hum1	600	0	426627	426501	0,0,255
+chrX	426626	426500	HWI-6319663|X_10000000_Hum1	600	1	426626	426500	255,0,0
+chrX	426627	426501	HWI-15638914|X_10000000_Hum1	600	0	426627	426501	0,0,255
+chrX	426626	426500	HWI-15638914|X_10000000_Hum1	600	1	426626	426500	255,0,0
+chrX	426627	426501	HWI-35436617|X_10000000_Hum1	600	0	426627	426501	0,0,255
+chrX	426626	426500	HWI-35436617|X_10000000_Hum1	600	1	426626	426500	255,0,0
+track name=X_428545_DEL_6151	description="BreakDancer X 428545 DEL 6151"	useScore=0
+chrX	434701	434628	HWI-3681068|X_10000000_Hum1	600	1	434701	434628	255,0,0
+chrX	428395	428269	HWI-3681068|X_10000000_Hum1	600	0	428395	428269	0,0,255
+chrX	434701	434628	HWI-22783258|X_10000000_Hum1	600	1	434701	434628	255,0,0
+chrX	428395	428346	HWI-22783258|X_10000000_Hum1	600	0	428395	428346	0,0,255
+chrX	434701	434628	HWI-27120729|X_10000000_Hum1	600	1	434701	434628	255,0,0
+chrX	428395	428269	HWI-27120729|X_10000000_Hum1	600	0	428395	428269	0,0,255
+chrX	434701	434667	HWI-28533839|X_10000000_Hum1	600	1	434701	434667	255,0,0
+chrX	428378	428252	HWI-28533839|X_10000000_Hum1	600	0	428378	428252	0,0,255
+chrX	434744	434664	HWI-4296049|X_10000000_Hum1	600	1	434744	434664	255,0,0
+chrX	428424	428352	HWI-4296049|X_10000000_Hum1	600	0	428424	428352	0,0,255
+track name=X_441688_ITX_-105	description="BreakDancer X 441688 ITX -105"	useScore=0
+chrX	441695	441609	HWI-777998|X_10000000_Hum1	600	0	441695	441609	0,0,255
+chrX	441693	441567	HWI-777998|X_10000000_Hum1	600	1	441693	441567	255,0,0
+chrX	441695	441569	HWI-3705338|X_10000000_Hum1	600	0	441695	441569	0,0,255
+chrX	441693	441567	HWI-3705338|X_10000000_Hum1	600	1	441693	441567	255,0,0
+chrX	441695	441569	HWI-7176592|X_10000000_Hum1	600	0	441695	441569	0,0,255
+chrX	441693	441567	HWI-7176592|X_10000000_Hum1	600	1	441693	441567	255,0,0
+chrX	441695	441597	HWI-18365861|X_10000000_Hum1	600	0	441695	441597	0,0,255
+chrX	441693	441567	HWI-18365861|X_10000000_Hum1	600	1	441693	441567	255,0,0
+chrX	441695	441597	HWI-23986620|X_10000000_Hum1	600	0	441695	441597	0,0,255
+chrX	441693	441567	HWI-23986620|X_10000000_Hum1	600	1	441693	441567	255,0,0
+chrX	441695	441629	HWI-35836513|X_10000000_Hum1	600	0	441695	441629	0,0,255
+chrX	441693	441567	HWI-35836513|X_10000000_Hum1	600	1	441693	441567	255,0,0
+track name=X_445015_DEL_390	description="BreakDancer X 445015 DEL 390"	useScore=0
+chrX	445375	445249	HWI-19841474|X_10000000_Hum1	600	1	445375	445249	255,0,0
+chrX	444881	444755	HWI-19841474|X_10000000_Hum1	600	0	444881	444755	0,0,255
+chrX	445375	445249	HWI-20695135|X_10000000_Hum1	600	1	445375	445249	255,0,0
+chrX	444881	444755	HWI-20695135|X_10000000_Hum1	600	0	444881	444755	0,0,255
+chrX	445384	445269	HWI-21591012|X_10000000_Hum1	600	1	445384	445269	255,0,0
+chrX	444881	444755	HWI-21591012|X_10000000_Hum1	600	0	444881	444755	0,0,255
+track name=X_449622_DEL_332	description="BreakDancer X 449622 DEL 332"	useScore=0
+chrX	449908	449782	HWI-39451458|X_10000000_Hum1	600	1	449908	449782	255,0,0
+chrX	449501	449375	HWI-39451458|X_10000000_Hum1	600	0	449501	449375	0,0,255
+chrX	449908	449782	HWI-43808426|X_10000000_Hum1	600	1	449908	449782	255,0,0
+chrX	449501	449375	HWI-43808426|X_10000000_Hum1	600	0	449501	449375	0,0,255
+chrX	449946	449820	HWI-31772901|X_10000000_Hum1	600	1	449946	449820	255,0,0
+chrX	449457	449340	HWI-31772901|X_10000000_Hum1	600	0	449457	449340	0,0,255
+track name=X_456767_DEL_354	description="BreakDancer X 456767 DEL 354"	useScore=0
+chrX	457102	456976	HWI-34529969|X_10000000_Hum1	600	1	457102	456976	255,0,0
+chrX	456646	456520	HWI-34529969|X_10000000_Hum1	600	0	456646	456520	0,0,255
+chrX	457115	457002	HWI-23625221|X_10000000_Hum1	600	1	457115	457002	255,0,0
+chrX	456646	456574	HWI-23625221|X_10000000_Hum1	600	0	456646	456574	0,0,255
+track name=X_458386_ITX_-103	description="BreakDancer X 458386 ITX -103"	useScore=0
+chrX	458387	458261	HWI-3508448|X_10000000_Hum1	600	0	458387	458261	0,0,255
+chrX	458385	458259	HWI-3508448|X_10000000_Hum1	600	1	458385	458259	255,0,0
+chrX	458387	458261	HWI-16867879|X_10000000_Hum1	600	0	458387	458261	0,0,255
+chrX	458385	458259	HWI-16867879|X_10000000_Hum1	600	1	458385	458259	255,0,0
+track name=X_471097_DEL_348	description="BreakDancer X 471097 DEL 348"	useScore=0
+chrX	471426	471300	HWI-17772619|X_10000000_Hum1	600	1	471426	471300	255,0,0
+chrX	470976	470877	HWI-17772619|X_10000000_Hum1	600	0	470976	470877	0,0,255
+chrX	471426	471300	HWI-23607205|X_10000000_Hum1	600	1	471426	471300	255,0,0
+chrX	470976	470877	HWI-23607205|X_10000000_Hum1	600	0	470976	470877	0,0,255
+chrX	471426	471300	HWI-44492031|X_10000000_Hum1	600	1	471426	471300	255,0,0
+chrX	470976	470877	HWI-44492031|X_10000000_Hum1	600	0	470976	470877	0,0,255
+track name=X_486082_ITX_-103	description="BreakDancer X 486082 ITX -103"	useScore=0
+chrX	486115	485989	HWI-26687287|X_10000000_Hum1	600	0	486115	485989	0,0,255
+chrX	486113	485987	HWI-26687287|X_10000000_Hum1	600	1	486113	485987	255,0,0
+chrX	486115	485989	HWI-28976719|X_10000000_Hum1	600	0	486115	485989	0,0,255
+chrX	486113	485987	HWI-28976719|X_10000000_Hum1	600	1	486113	485987	255,0,0
+chrX	486115	485989	HWI-34895026|X_10000000_Hum1	600	0	486115	485989	0,0,255
+chrX	486113	485987	HWI-34895026|X_10000000_Hum1	600	1	486113	485987	255,0,0
+track name=X_488923_DEL_335	description="BreakDancer X 488923 DEL 335"	useScore=0
+chrX	489192	489066	HWI-39660946|X_10000000_Hum1	600	1	489192	489066	255,0,0
+chrX	488760	488634	HWI-39660946|X_10000000_Hum1	600	0	488760	488634	0,0,255
+chrX	489211	489104	HWI-14192987|X_10000000_Hum1	600	1	489211	489104	255,0,0
+chrX	488760	488634	HWI-14192987|X_10000000_Hum1	600	0	488760	488634	0,0,255
+chrX	489254	489128	HWI-45730160|X_10000000_Hum1	600	1	489254	489128	255,0,0
+chrX	488802	488676	HWI-45730160|X_10000000_Hum1	600	0	488802	488676	0,0,255
+chrX	489260	489202	HWI-3049459|X_10000000_Hum1	600	1	489260	489202	255,0,0
+chrX	488760	488694	HWI-3049459|X_10000000_Hum1	600	0	488760	488694	0,0,255
+track name=X_495979_DEL_389	description="BreakDancer X 495979 DEL 389"	useScore=0
+chrX	496290	496164	HWI-822338|X_10000000_Hum1	600	1	496290	496164	255,0,0
+chrX	495799	495673	HWI-822338|X_10000000_Hum1	600	0	495799	495673	0,0,255
+chrX	496290	496164	HWI-40158984|X_10000000_Hum1	600	1	496290	496164	255,0,0
+chrX	495799	495673	HWI-40158984|X_10000000_Hum1	600	0	495799	495673	0,0,255
+chrX	496313	496210	HWI-36507980|X_10000000_Hum1	600	1	496313	496210	255,0,0
+chrX	495799	495673	HWI-36507980|X_10000000_Hum1	600	0	495799	495673	0,0,255
+track name=X_496048_DEL_434	description="BreakDancer X 496048 DEL 434"	useScore=0
+chrX	496451	496325	HWI-5960001|X_10000000_Hum1	600	1	496451	496325	255,0,0
+chrX	495915	495789	HWI-5960001|X_10000000_Hum1	600	0	495915	495789	0,0,255
+chrX	496451	496325	HWI-26874106|X_10000000_Hum1	600	1	496451	496325	255,0,0
+chrX	495915	495789	HWI-26874106|X_10000000_Hum1	600	0	495915	495789	0,0,255
+chrX	496451	496325	HWI-28289798|X_10000000_Hum1	600	1	496451	496325	255,0,0
+chrX	495915	495789	HWI-28289798|X_10000000_Hum1	600	0	495915	495789	0,0,255
+chrX	496459	496341	HWI-34953473|X_10000000_Hum1	600	1	496459	496341	255,0,0
+chrX	495915	495806	HWI-34953473|X_10000000_Hum1	600	0	495915	495806	0,0,255
+track name=X_497786_ITX_-103	description="BreakDancer X 497786 ITX -103"	useScore=0
+chrX	497876	497750	HWI-5513437|X_10000000_Hum1	600	0	497876	497750	0,0,255
+chrX	497874	497748	HWI-5513437|X_10000000_Hum1	600	1	497874	497748	255,0,0
+chrX	497876	497750	HWI-13850916|X_10000000_Hum1	600	0	497876	497750	0,0,255
+chrX	497874	497748	HWI-13850916|X_10000000_Hum1	600	1	497874	497748	255,0,0
+chrX	497876	497750	HWI-16994293|X_10000000_Hum1	600	0	497876	497750	0,0,255
+chrX	497874	497748	HWI-16994293|X_10000000_Hum1	600	1	497874	497748	255,0,0
+chrX	497876	497750	HWI-34279714|X_10000000_Hum1	600	0	497876	497750	0,0,255
+chrX	497874	497748	HWI-34279714|X_10000000_Hum1	600	1	497874	497748	255,0,0
+track name=X_503489_DEL_404	description="BreakDancer X 503489 DEL 404"	useScore=0
+chrX	503866	503740	HWI-25666618|X_10000000_Hum1	600	1	503866	503740	255,0,0
+chrX	503360	503234	HWI-25666618|X_10000000_Hum1	600	0	503360	503234	0,0,255
+chrX	503876	503760	HWI-35876741|X_10000000_Hum1	600	1	503876	503760	255,0,0
+chrX	503360	503234	HWI-35876741|X_10000000_Hum1	600	0	503360	503234	0,0,255
+track name=X_508754_ITX_46	description="BreakDancer X 508754 ITX 46"	useScore=0
+chrX	509123	509056	HWI-12308316|X_10000000_Hum1	600	0	509123	509056	0,0,255
+chrX	508781	508655	HWI-12308316|X_10000000_Hum1	600	1	508781	508655	255,0,0
+chrX	509123	509056	HWI-12535898|X_10000000_Hum1	600	0	509123	509056	0,0,255
+chrX	508781	508655	HWI-12535898|X_10000000_Hum1	600	1	508781	508655	255,0,0
+chrX	509123	509056	HWI-18717051|X_10000000_Hum1	600	0	509123	509056	0,0,255
+chrX	508781	508655	HWI-18717051|X_10000000_Hum1	600	1	508781	508655	255,0,0
+chrX	509123	509056	HWI-30529052|X_10000000_Hum1	600	0	509123	509056	0,0,255
+chrX	508781	508655	HWI-30529052|X_10000000_Hum1	600	1	508781	508655	255,0,0
+chrX	509123	509056	HWI-43801914|X_10000000_Hum1	600	0	509123	509056	0,0,255
+chrX	508781	508655	HWI-43801914|X_10000000_Hum1	600	1	508781	508655	255,0,0
+chrX	509156	509122	HWI-4115397|X_10000000_Hum1	600	0	509156	509122	0,0,255
+chrX	508781	508655	HWI-4115397|X_10000000_Hum1	600	1	508781	508655	255,0,0
+chrX	509156	509122	HWI-28296659|X_10000000_Hum1	600	0	509156	509122	0,0,255
+chrX	508781	508655	HWI-28296659|X_10000000_Hum1	600	1	508781	508655	255,0,0
+chrX	509156	509122	HWI-32037056|X_10000000_Hum1	600	0	509156	509122	0,0,255
+chrX	508781	508655	HWI-32037056|X_10000000_Hum1	600	1	508781	508655	255,0,0
+track name=X_508871_ITX_-190	description="BreakDancer X 508871 ITX -190"	useScore=0
+chrX	508925	508835	HWI-32954888|X_10000000_Hum1	600	0	508925	508835	0,0,255
+chrX	508922	508882	HWI-32954888|X_10000000_Hum1	600	1	508922	508882	255,0,0
+chrX	508925	508855	HWI-33812976|X_10000000_Hum1	600	0	508925	508855	0,0,255
+chrX	508909	508856	HWI-33812976|X_10000000_Hum1	600	1	508909	508856	255,0,0
+chrX	508925	508799	HWI-37325076|X_10000000_Hum1	600	0	508925	508799	0,0,255
+chrX	508914	508866	HWI-37325076|X_10000000_Hum1	600	1	508914	508866	255,0,0
+chrX	508925	508799	HWI-41706553|X_10000000_Hum1	600	0	508925	508799	0,0,255
+chrX	508902	508842	HWI-41706553|X_10000000_Hum1	600	1	508902	508842	255,0,0
+track name=X_511090_DEL_298	description="BreakDancer X 511090 DEL 298"	useScore=0
+chrX	511412	511317	HWI-13748642|X_10000000_Hum1	600	1	511412	511317	255,0,0
+chrX	510969	510843	HWI-13748642|X_10000000_Hum1	600	0	510969	510843	0,0,255
+chrX	511412	511317	HWI-22433519|X_10000000_Hum1	600	1	511412	511317	255,0,0
+chrX	510969	510843	HWI-22433519|X_10000000_Hum1	600	0	510969	510843	0,0,255
+chrX	511412	511317	HWI-35409921|X_10000000_Hum1	600	1	511412	511317	255,0,0
+chrX	510969	510843	HWI-35409921|X_10000000_Hum1	600	0	510969	510843	0,0,255
+chrX	511412	511317	HWI-40369532|X_10000000_Hum1	600	1	511412	511317	255,0,0
+chrX	510969	510843	HWI-40369532|X_10000000_Hum1	600	0	510969	510843	0,0,255
+chrX	511412	511317	HWI-46190576|X_10000000_Hum1	600	1	511412	511317	255,0,0
+chrX	510969	510843	HWI-46190576|X_10000000_Hum1	600	0	510969	510843	0,0,255
+track name=X_525277_ITX_-106	description="BreakDancer X 525277 ITX -106"	useScore=0
+chrX	525277	525151	HWI-3016979|X_10000000_Hum1	600	0	525277	525151	0,0,255
+chrX	525276	525150	HWI-3016979|X_10000000_Hum1	600	1	525276	525150	255,0,0
+chrX	525277	525151	HWI-23675777|X_10000000_Hum1	600	0	525277	525151	0,0,255
+chrX	525276	525150	HWI-23675777|X_10000000_Hum1	600	1	525276	525150	255,0,0
+chrX	525277	525151	HWI-25937376|X_10000000_Hum1	600	0	525277	525151	0,0,255
+chrX	525276	525150	HWI-25937376|X_10000000_Hum1	600	1	525276	525150	255,0,0
+chrX	525277	525151	HWI-39542939|X_10000000_Hum1	600	0	525277	525151	0,0,255
+chrX	525276	525150	HWI-39542939|X_10000000_Hum1	600	1	525276	525150	255,0,0
+track name=X_544176_ITX_-103	description="BreakDancer X 544176 ITX -103"	useScore=0
+chrX	544202	544076	HWI-241009|X_10000000_Hum1	600	0	544202	544076	0,0,255
+chrX	544200	544074	HWI-241009|X_10000000_Hum1	600	1	544200	544074	255,0,0
+chrX	544202	544076	HWI-18808541|X_10000000_Hum1	600	0	544202	544076	0,0,255
+chrX	544200	544074	HWI-18808541|X_10000000_Hum1	600	1	544200	544074	255,0,0
+track name=X_547108_INV_-172	description="BreakDancer X 547108 INV -172"	useScore=0
+chrX	547118	546992	HWI-2594554|X_10000000_Hum1	600	1	547118	546992	255,0,0
+chrX	547107	546981	HWI-2594554|X_10000000_Hum1	600	1	547107	546981	255,0,0
+chrX	547118	546992	HWI-28920517|X_10000000_Hum1	600	1	547118	546992	255,0,0
+chrX	547107	546981	HWI-28920517|X_10000000_Hum1	600	1	547107	546981	255,0,0
+track name=X_576352_ITX_-102	description="BreakDancer X 576352 ITX -102"	useScore=0
+chrX	576373	576247	HWI-6454795|X_10000000_Hum1	600	0	576373	576247	0,0,255
+chrX	576372	576246	HWI-6454795|X_10000000_Hum1	600	1	576372	576246	255,0,0
+chrX	576373	576247	HWI-17256748|X_10000000_Hum1	600	0	576373	576247	0,0,255
+chrX	576372	576246	HWI-17256748|X_10000000_Hum1	600	1	576372	576246	255,0,0
+chrX	576373	576247	HWI-31263004|X_10000000_Hum1	600	0	576373	576247	0,0,255
+chrX	576372	576246	HWI-31263004|X_10000000_Hum1	600	1	576372	576246	255,0,0
+track name=X_583435_DEL_379	description="BreakDancer X 583435 DEL 379"	useScore=0
+chrX	583795	583669	HWI-26472175|X_10000000_Hum1	600	1	583795	583669	255,0,0
+chrX	583314	583188	HWI-26472175|X_10000000_Hum1	600	0	583314	583188	0,0,255
+chrX	583795	583669	HWI-30470239|X_10000000_Hum1	600	1	583795	583669	255,0,0
+chrX	583314	583188	HWI-30470239|X_10000000_Hum1	600	0	583314	583188	0,0,255
+chrX	583840	583759	HWI-40210036|X_10000000_Hum1	600	1	583840	583759	255,0,0
+chrX	583314	583188	HWI-40210036|X_10000000_Hum1	600	0	583314	583188	0,0,255
+chrX	583852	583783	HWI-709247|X_10000000_Hum1	600	1	583852	583783	255,0,0
+chrX	583314	583188	HWI-709247|X_10000000_Hum1	600	0	583314	583188	0,0,255
+track name=X_606834_ITX_-102	description="BreakDancer X 606834 ITX -102"	useScore=0
+chrX	606840	606731	HWI-2499781|X_10000000_Hum1	600	0	606840	606731	0,0,255
+chrX	606839	606713	HWI-2499781|X_10000000_Hum1	600	1	606839	606713	255,0,0
+chrX	606840	606731	HWI-18004916|X_10000000_Hum1	600	0	606840	606731	0,0,255
+chrX	606839	606713	HWI-18004916|X_10000000_Hum1	600	1	606839	606713	255,0,0
+chrX	606840	606731	HWI-18597839|X_10000000_Hum1	600	0	606840	606731	0,0,255
+chrX	606839	606713	HWI-18597839|X_10000000_Hum1	600	1	606839	606713	255,0,0
+chrX	606840	606731	HWI-38820476|X_10000000_Hum1	600	0	606840	606731	0,0,255
+chrX	606839	606713	HWI-38820476|X_10000000_Hum1	600	1	606839	606713	255,0,0
+chrX	606840	606731	HWI-41370041|X_10000000_Hum1	600	0	606840	606731	0,0,255
+chrX	606839	606713	HWI-41370041|X_10000000_Hum1	600	1	606839	606713	255,0,0
+track name=X_608448_DEL_397	description="BreakDancer X 608448 DEL 397"	useScore=0
+chrX	608798	608672	HWI-35430524|X_10000000_Hum1	600	1	608798	608672	255,0,0
+chrX	608299	608173	HWI-35430524|X_10000000_Hum1	600	0	608299	608173	0,0,255
+chrX	608809	608694	HWI-14004541|X_10000000_Hum1	600	1	608809	608694	255,0,0
+chrX	608299	608173	HWI-14004541|X_10000000_Hum1	600	0	608299	608173	0,0,255
+chrX	608852	608780	HWI-18449439|X_10000000_Hum1	600	1	608852	608780	255,0,0
+chrX	608299	608207	HWI-18449439|X_10000000_Hum1	600	0	608299	608207	0,0,255
+track name=X_608626_ITX_-102	description="BreakDancer X 608626 ITX -102"	useScore=0
+chrX	608654	608528	HWI-23625279|X_10000000_Hum1	600	0	608654	608528	0,0,255
+chrX	608653	608527	HWI-23625279|X_10000000_Hum1	600	1	608653	608527	255,0,0
+chrX	608654	608528	HWI-36468006|X_10000000_Hum1	600	0	608654	608528	0,0,255
+chrX	608653	608527	HWI-36468006|X_10000000_Hum1	600	1	608653	608527	255,0,0
+track name=X_608775_DEL_322	description="BreakDancer X 608775 DEL 322"	useScore=0
+chrX	609058	608932	HWI-33566184|X_10000000_Hum1	600	1	609058	608932	255,0,0
+chrX	608625	608499	HWI-33566184|X_10000000_Hum1	600	0	608625	608499	0,0,255
+chrX	609081	609004	HWI-11649513|X_10000000_Hum1	600	1	609081	609004	255,0,0
+chrX	608625	608499	HWI-11649513|X_10000000_Hum1	600	0	608625	608499	0,0,255
+chrX	609090	608996	HWI-41751706|X_10000000_Hum1	600	1	609090	608996	255,0,0
+chrX	608625	608499	HWI-41751706|X_10000000_Hum1	600	0	608625	608499	0,0,255
+track name=X_608775_DEL_348	description="BreakDancer X 608775 DEL 348"	useScore=0
+chrX	609150	609072	HWI-21369001|X_10000000_Hum1	600	1	609150	609072	255,0,0
+chrX	608652	608526	HWI-21369001|X_10000000_Hum1	600	0	608652	608526	0,0,255
+chrX	609180	609132	HWI-39312644|X_10000000_Hum1	600	1	609180	609132	255,0,0
+chrX	608652	608593	HWI-39312644|X_10000000_Hum1	600	0	608652	608593	0,0,255
+chrX	609190	609152	HWI-29209314|X_10000000_Hum1	600	1	609190	609152	255,0,0
+chrX	608652	608526	HWI-29209314|X_10000000_Hum1	600	0	608652	608526	0,0,255
+track name=X_611710_ITX_-103	description="BreakDancer X 611710 ITX -103"	useScore=0
+chrX	611711	611585	HWI-7056896|X_10000000_Hum1	600	0	611711	611585	0,0,255
+chrX	611709	611583	HWI-7056896|X_10000000_Hum1	600	1	611709	611583	255,0,0
+chrX	611711	611585	HWI-8587519|X_10000000_Hum1	600	0	611711	611585	0,0,255
+chrX	611709	611583	HWI-8587519|X_10000000_Hum1	600	1	611709	611583	255,0,0
+chrX	611711	611585	HWI-10897755|X_10000000_Hum1	600	0	611711	611585	0,0,255
+chrX	611709	611583	HWI-10897755|X_10000000_Hum1	600	1	611709	611583	255,0,0
+chrX	611711	611585	HWI-18084506|X_10000000_Hum1	600	0	611711	611585	0,0,255
+chrX	611709	611583	HWI-18084506|X_10000000_Hum1	600	1	611709	611583	255,0,0
+chrX	611711	611585	HWI-36084683|X_10000000_Hum1	600	0	611711	611585	0,0,255
+chrX	611709	611583	HWI-36084683|X_10000000_Hum1	600	1	611709	611583	255,0,0
+chrX	611711	611585	HWI-44051138|X_10000000_Hum1	600	0	611711	611585	0,0,255
+chrX	611709	611583	HWI-44051138|X_10000000_Hum1	600	1	611709	611583	255,0,0
+track name=X_616393_ITX_-105	description="BreakDancer X 616393 ITX -105"	useScore=0
+chrX	616468	616410	HWI-1903435|X_10000000_Hum1	600	0	616468	616410	0,0,255
+chrX	616466	616340	HWI-1903435|X_10000000_Hum1	600	1	616466	616340	255,0,0
+chrX	616468	616410	HWI-2588585|X_10000000_Hum1	600	0	616468	616410	0,0,255
+chrX	616466	616340	HWI-2588585|X_10000000_Hum1	600	1	616466	616340	255,0,0
+chrX	616468	616410	HWI-21308709|X_10000000_Hum1	600	0	616468	616410	0,0,255
+chrX	616466	616340	HWI-21308709|X_10000000_Hum1	600	1	616466	616340	255,0,0
+chrX	616468	616410	HWI-30558537|X_10000000_Hum1	600	0	616468	616410	0,0,255
+chrX	616466	616340	HWI-30558537|X_10000000_Hum1	600	1	616466	616340	255,0,0
+chrX	616468	616420	HWI-31823987|X_10000000_Hum1	600	0	616468	616420	0,0,255
+chrX	616466	616340	HWI-31823987|X_10000000_Hum1	600	1	616466	616340	255,0,0
+track name=X_618395_DEL_298	description="BreakDancer X 618395 DEL 298"	useScore=0
+chrX	618663	618537	HWI-5297754|X_10000000_Hum1	600	1	618663	618537	255,0,0
+chrX	618256	618130	HWI-5297754|X_10000000_Hum1	600	0	618256	618130	0,0,255
+chrX	618663	618537	HWI-24898825|X_10000000_Hum1	600	1	618663	618537	255,0,0
+chrX	618256	618130	HWI-24898825|X_10000000_Hum1	600	0	618256	618130	0,0,255
+chrX	618663	618537	HWI-43458819|X_10000000_Hum1	600	1	618663	618537	255,0,0
+chrX	618256	618130	HWI-43458819|X_10000000_Hum1	600	0	618256	618130	0,0,255
+chrX	618674	618548	HWI-9853024|X_10000000_Hum1	600	1	618674	618548	255,0,0
+chrX	618274	618148	HWI-9853024|X_10000000_Hum1	600	0	618274	618148	0,0,255
+track name=X_636124_DEL_320	description="BreakDancer X 636124 DEL 320"	useScore=0
+chrX	636494	636454	HWI-2126528|X_10000000_Hum1	600	1	636494	636454	255,0,0
+chrX	635986	635860	HWI-2126528|X_10000000_Hum1	600	0	635986	635860	0,0,255
+chrX	636502	636470	HWI-26007392|X_10000000_Hum1	600	1	636502	636470	255,0,0
+chrX	635986	635860	HWI-26007392|X_10000000_Hum1	600	0	635986	635860	0,0,255
+track name=X_646679_INV_-110	description="BreakDancer X 646679 INV -110"	useScore=0
+chrX	646761	646635	HWI-9647556|X_10000000_Hum1	600	1	646761	646635	255,0,0
+chrX	646693	646567	HWI-9647556|X_10000000_Hum1	600	1	646693	646567	255,0,0
+chrX	646770	646653	HWI-34480144|X_10000000_Hum1	600	1	646770	646653	255,0,0
+chrX	646728	646673	HWI-34480144|X_10000000_Hum1	600	1	646728	646673	255,0,0
+track name=X_655838_ITX_-105	description="BreakDancer X 655838 ITX -105"	useScore=0
+chrX	655861	655735	HWI-28809404|X_10000000_Hum1	600	0	655861	655735	0,0,255
+chrX	655859	655733	HWI-28809404|X_10000000_Hum1	600	1	655859	655733	255,0,0
+chrX	655861	655735	HWI-36677674|X_10000000_Hum1	600	0	655861	655735	0,0,255
+chrX	655859	655733	HWI-36677674|X_10000000_Hum1	600	1	655859	655733	255,0,0
+chrX	655861	655735	HWI-36871121|X_10000000_Hum1	600	0	655861	655735	0,0,255
+chrX	655859	655733	HWI-36871121|X_10000000_Hum1	600	1	655859	655733	255,0,0
+chrX	655861	655735	HWI-41261440|X_10000000_Hum1	600	0	655861	655735	0,0,255
+chrX	655859	655733	HWI-41261440|X_10000000_Hum1	600	1	655859	655733	255,0,0
+track name=X_661291_ITX_-103	description="BreakDancer X 661291 ITX -103"	useScore=0
+chrX	661340	661214	HWI-3044058|X_10000000_Hum1	600	0	661340	661214	0,0,255
+chrX	661338	661212	HWI-3044058|X_10000000_Hum1	600	1	661338	661212	255,0,0
+chrX	661340	661214	HWI-4800132|X_10000000_Hum1	600	0	661340	661214	0,0,255
+chrX	661338	661212	HWI-4800132|X_10000000_Hum1	600	1	661338	661212	255,0,0
+chrX	661340	661214	HWI-8860124|X_10000000_Hum1	600	0	661340	661214	0,0,255
+chrX	661338	661212	HWI-8860124|X_10000000_Hum1	600	1	661338	661212	255,0,0
+chrX	661340	661214	HWI-25561053|X_10000000_Hum1	600	0	661340	661214	0,0,255
+chrX	661338	661212	HWI-25561053|X_10000000_Hum1	600	1	661338	661212	255,0,0
+chrX	661340	661214	HWI-31121517|X_10000000_Hum1	600	0	661340	661214	0,0,255
+chrX	661338	661212	HWI-31121517|X_10000000_Hum1	600	1	661338	661212	255,0,0
+chrX	661340	661214	HWI-44631881|X_10000000_Hum1	600	0	661340	661214	0,0,255
+chrX	661338	661212	HWI-44631881|X_10000000_Hum1	600	1	661338	661212	255,0,0
+track name=X_669443_ITX_-105	description="BreakDancer X 669443 ITX -105"	useScore=0
+chrX	669471	669345	HWI-5151844|X_10000000_Hum1	600	0	669471	669345	0,0,255
+chrX	669469	669343	HWI-5151844|X_10000000_Hum1	600	1	669469	669343	255,0,0
+chrX	669471	669345	HWI-5361241|X_10000000_Hum1	600	0	669471	669345	0,0,255
+chrX	669469	669343	HWI-5361241|X_10000000_Hum1	600	1	669469	669343	255,0,0
+chrX	669471	669345	HWI-7418532|X_10000000_Hum1	600	0	669471	669345	0,0,255
+chrX	669469	669343	HWI-7418532|X_10000000_Hum1	600	1	669469	669343	255,0,0
+chrX	669471	669345	HWI-11663629|X_10000000_Hum1	600	0	669471	669345	0,0,255
+chrX	669469	669343	HWI-11663629|X_10000000_Hum1	600	1	669469	669343	255,0,0
+chrX	669471	669345	HWI-22307952|X_10000000_Hum1	600	0	669471	669345	0,0,255
+chrX	669469	669343	HWI-22307952|X_10000000_Hum1	600	1	669469	669343	255,0,0
+chrX	669471	669345	HWI-27029261|X_10000000_Hum1	600	0	669471	669345	0,0,255
+chrX	669469	669343	HWI-27029261|X_10000000_Hum1	600	1	669469	669343	255,0,0
+track name=X_679247_DEL_320	description="BreakDancer X 679247 DEL 320"	useScore=0
+chrX	679532	679406	HWI-20615648|X_10000000_Hum1	600	1	679532	679406	255,0,0
+chrX	679126	679000	HWI-20615648|X_10000000_Hum1	600	0	679126	679000	0,0,255
+chrX	679542	679416	HWI-13792143|X_10000000_Hum1	600	1	679542	679416	255,0,0
+chrX	679104	678978	HWI-13792143|X_10000000_Hum1	600	0	679104	678978	0,0,255
+track name=X_681969_DEL_306	description="BreakDancer X 681969 DEL 306"	useScore=0
+chrX	682248	682122	HWI-44747808|X_10000000_Hum1	600	1	682248	682122	255,0,0
+chrX	681848	681722	HWI-44747808|X_10000000_Hum1	600	0	681848	681722	0,0,255
+chrX	682278	682176	HWI-35268846|X_10000000_Hum1	600	1	682278	682176	255,0,0
+chrX	681808	681682	HWI-35268846|X_10000000_Hum1	600	0	681808	681682	0,0,255
+chrX	682278	682182	HWI-37254480|X_10000000_Hum1	600	1	682278	682182	255,0,0
+chrX	681848	681722	HWI-37254480|X_10000000_Hum1	600	0	681848	681722	0,0,255
+chrX	682278	682182	HWI-37473522|X_10000000_Hum1	600	1	682278	682182	255,0,0
+chrX	681848	681722	HWI-37473522|X_10000000_Hum1	600	0	681848	681722	0,0,255
+chrX	682278	682182	HWI-41735762|X_10000000_Hum1	600	1	682278	682182	255,0,0
+chrX	681848	681722	HWI-41735762|X_10000000_Hum1	600	0	681848	681722	0,0,255
+chrX	682278	682182	HWI-43520874|X_10000000_Hum1	600	1	682278	682182	255,0,0
+chrX	681848	681722	HWI-43520874|X_10000000_Hum1	600	0	681848	681722	0,0,255
+track name=X_686028_ITX_-102	description="BreakDancer X 686028 ITX -102"	useScore=0
+chrX	686028	685902	HWI-7887913|X_10000000_Hum1	600	0	686028	685902	0,0,255
+chrX	686027	685901	HWI-7887913|X_10000000_Hum1	600	1	686027	685901	255,0,0
+chrX	686028	685902	HWI-8222057|X_10000000_Hum1	600	0	686028	685902	0,0,255
+chrX	686027	685901	HWI-8222057|X_10000000_Hum1	600	1	686027	685901	255,0,0
+track name=X_687744_ITX_-105	description="BreakDancer X 687744 ITX -105"	useScore=0
+chrX	687771	687645	HWI-6868579|X_10000000_Hum1	600	0	687771	687645	0,0,255
+chrX	687767	687641	HWI-6868579|X_10000000_Hum1	600	1	687767	687641	255,0,0
+chrX	687771	687645	HWI-13987525|X_10000000_Hum1	600	0	687771	687645	0,0,255
+chrX	687767	687641	HWI-13987525|X_10000000_Hum1	600	1	687767	687641	255,0,0
+chrX	687771	687645	HWI-39775614|X_10000000_Hum1	600	0	687771	687645	0,0,255
+chrX	687767	687641	HWI-39775614|X_10000000_Hum1	600	1	687767	687641	255,0,0
+track name=X_693329_ITX_-105	description="BreakDancer X 693329 ITX -105"	useScore=0
+chrX	693330	693204	HWI-7612333|X_10000000_Hum1	600	0	693330	693204	0,0,255
+chrX	693328	693202	HWI-7612333|X_10000000_Hum1	600	1	693328	693202	255,0,0
+chrX	693391	693265	HWI-13201863|X_10000000_Hum1	600	0	693391	693265	0,0,255
+chrX	693387	693261	HWI-13201863|X_10000000_Hum1	600	1	693387	693261	255,0,0
+chrX	693391	693265	HWI-24116236|X_10000000_Hum1	600	0	693391	693265	0,0,255
+chrX	693387	693261	HWI-24116236|X_10000000_Hum1	600	1	693387	693261	255,0,0
+chrX	693391	693265	HWI-34760794|X_10000000_Hum1	600	0	693391	693265	0,0,255
+chrX	693387	693261	HWI-34760794|X_10000000_Hum1	600	1	693387	693261	255,0,0
+track name=X_701901_ITX_-103	description="BreakDancer X 701901 ITX -103"	useScore=0
+chrX	701941	701828	HWI-6700629|X_10000000_Hum1	600	0	701941	701828	0,0,255
+chrX	701939	701813	HWI-6700629|X_10000000_Hum1	600	1	701939	701813	255,0,0
+chrX	701941	701815	HWI-12165171|X_10000000_Hum1	600	0	701941	701815	0,0,255
+chrX	701939	701813	HWI-12165171|X_10000000_Hum1	600	1	701939	701813	255,0,0
+chrX	701941	701815	HWI-19298633|X_10000000_Hum1	600	0	701941	701815	0,0,255
+chrX	701939	701813	HWI-19298633|X_10000000_Hum1	600	1	701939	701813	255,0,0
+chrX	701941	701815	HWI-28052058|X_10000000_Hum1	600	0	701941	701815	0,0,255
+chrX	701939	701813	HWI-28052058|X_10000000_Hum1	600	1	701939	701813	255,0,0
+chrX	701941	701815	HWI-32602591|X_10000000_Hum1	600	0	701941	701815	0,0,255
+chrX	701939	701813	HWI-32602591|X_10000000_Hum1	600	1	701939	701813	255,0,0
+track name=X_701901_ITX_617	description="BreakDancer X 701901 ITX 617"	useScore=0
+chrX	702932	702806	HWI-2657844|X_10000000_Hum1	600	0	702932	702806	0,0,255
+chrX	701965	701839	HWI-2657844|X_10000000_Hum1	600	1	701965	701839	255,0,0
+chrX	702932	702806	HWI-2788577|X_10000000_Hum1	600	0	702932	702806	0,0,255
+chrX	701965	701839	HWI-2788577|X_10000000_Hum1	600	1	701965	701839	255,0,0
+chrX	702932	702857	HWI-3007621|X_10000000_Hum1	600	0	702932	702857	0,0,255
+chrX	701965	701839	HWI-3007621|X_10000000_Hum1	600	1	701965	701839	255,0,0
+chrX	702932	702806	HWI-29919421|X_10000000_Hum1	600	0	702932	702806	0,0,255
+chrX	701965	701839	HWI-29919421|X_10000000_Hum1	600	1	701965	701839	255,0,0
+chrX	702932	702806	HWI-38733996|X_10000000_Hum1	600	0	702932	702806	0,0,255
+chrX	701965	701839	HWI-38733996|X_10000000_Hum1	600	1	701965	701839	255,0,0
+chrX	702932	702806	HWI-45045394|X_10000000_Hum1	600	0	702932	702806	0,0,255
+chrX	701965	701839	HWI-45045394|X_10000000_Hum1	600	1	701965	701839	255,0,0
+track name=X_712176_ITX_-102	description="BreakDancer X 712176 ITX -102"	useScore=0
+chrX	712176	712050	HWI-10169368|X_10000000_Hum1	600	0	712176	712050	0,0,255
+chrX	712175	712049	HWI-10169368|X_10000000_Hum1	600	1	712175	712049	255,0,0
+chrX	712176	712050	HWI-15913106|X_10000000_Hum1	600	0	712176	712050	0,0,255
+chrX	712175	712049	HWI-15913106|X_10000000_Hum1	600	1	712175	712049	255,0,0
+chrX	712176	712050	HWI-21169688|X_10000000_Hum1	600	0	712176	712050	0,0,255
+chrX	712175	712049	HWI-21169688|X_10000000_Hum1	600	1	712175	712049	255,0,0
+chrX	712176	712050	HWI-26407748|X_10000000_Hum1	600	0	712176	712050	0,0,255
+chrX	712175	712049	HWI-26407748|X_10000000_Hum1	600	1	712175	712049	255,0,0
+chrX	712176	712050	HWI-42395241|X_10000000_Hum1	600	0	712176	712050	0,0,255
+chrX	712175	712049	HWI-42395241|X_10000000_Hum1	600	1	712175	712049	255,0,0
+track name=X_729606_DEL_296	description="BreakDancer X 729606 DEL 296"	useScore=0
+chrX	729838	729712	HWI-26566432|X_10000000_Hum1	600	1	729838	729712	255,0,0
+chrX	729440	729314	HWI-26566432|X_10000000_Hum1	600	0	729440	729314	0,0,255
+chrX	729838	729712	HWI-42137132|X_10000000_Hum1	600	1	729838	729712	255,0,0
+chrX	729440	729314	HWI-42137132|X_10000000_Hum1	600	0	729440	729314	0,0,255
+chrX	729863	729762	HWI-38967153|X_10000000_Hum1	600	1	729863	729762	255,0,0
+chrX	729440	729314	HWI-38967153|X_10000000_Hum1	600	0	729440	729314	0,0,255
+chrX	729882	729756	HWI-2079578|X_10000000_Hum1	600	1	729882	729756	255,0,0
+chrX	729485	729359	HWI-2079578|X_10000000_Hum1	600	0	729485	729359	0,0,255
+chrX	729882	729756	HWI-17844301|X_10000000_Hum1	600	1	729882	729756	255,0,0
+chrX	729485	729359	HWI-17844301|X_10000000_Hum1	600	0	729485	729359	0,0,255
+chrX	729882	729756	HWI-24145472|X_10000000_Hum1	600	1	729882	729756	255,0,0
+chrX	729485	729359	HWI-24145472|X_10000000_Hum1	600	0	729485	729359	0,0,255
+track name=X_739865_DEL_368	description="BreakDancer X 739865 DEL 368"	useScore=0
+chrX	740259	740187	HWI-26377468|X_10000000_Hum1	600	1	740259	740187	255,0,0
+chrX	739735	739636	HWI-26377468|X_10000000_Hum1	600	0	739735	739636	0,0,255
+chrX	740294	740257	HWI-26948772|X_10000000_Hum1	600	1	740294	740257	255,0,0
+chrX	739735	739684	HWI-26948772|X_10000000_Hum1	600	0	739735	739684	0,0,255
+track name=X_745932_DEL_384	description="BreakDancer X 745932 DEL 384"	useScore=0
+chrX	746279	746153	HWI-20597176|X_10000000_Hum1	600	1	746279	746153	255,0,0
+chrX	745789	745731	HWI-20597176|X_10000000_Hum1	600	0	745789	745731	0,0,255
+chrX	746279	746153	HWI-31813609|X_10000000_Hum1	600	1	746279	746153	255,0,0
+chrX	745789	745663	HWI-31813609|X_10000000_Hum1	600	0	745789	745663	0,0,255
+chrX	746293	746167	HWI-5105751|X_10000000_Hum1	600	1	746293	746167	255,0,0
+chrX	745811	745685	HWI-5105751|X_10000000_Hum1	600	0	745811	745685	0,0,255
+chrX	746293	746167	HWI-42289406|X_10000000_Hum1	600	1	746293	746167	255,0,0
+chrX	745811	745685	HWI-42289406|X_10000000_Hum1	600	0	745811	745685	0,0,255
+track name=X_750098_ITX_-102	description="BreakDancer X 750098 ITX -102"	useScore=0
+chrX	750121	749995	HWI-37593332|X_10000000_Hum1	600	0	750121	749995	0,0,255
+chrX	750120	749994	HWI-37593332|X_10000000_Hum1	600	1	750120	749994	255,0,0
+chrX	750121	749995	HWI-44561415|X_10000000_Hum1	600	0	750121	749995	0,0,255
+chrX	750120	749994	HWI-44561415|X_10000000_Hum1	600	1	750120	749994	255,0,0
+chrX	750121	749995	HWI-44891032|X_10000000_Hum1	600	0	750121	749995	0,0,255
+chrX	750120	749994	HWI-44891032|X_10000000_Hum1	600	1	750120	749994	255,0,0
+track name=X_769626_ITX_-103	description="BreakDancer X 769626 ITX -103"	useScore=0
+chrX	769627	769501	HWI-70009|X_10000000_Hum1	600	0	769627	769501	0,0,255
+chrX	769625	769499	HWI-70009|X_10000000_Hum1	600	1	769625	769499	255,0,0
+chrX	769627	769501	HWI-15855725|X_10000000_Hum1	600	0	769627	769501	0,0,255
+chrX	769625	769499	HWI-15855725|X_10000000_Hum1	600	1	769625	769499	255,0,0
+chrX	769627	769501	HWI-16863036|X_10000000_Hum1	600	0	769627	769501	0,0,255
+chrX	769625	769499	HWI-16863036|X_10000000_Hum1	600	1	769625	769499	255,0,0
+track name=X_783709_ITX_-103	description="BreakDancer X 783709 ITX -103"	useScore=0
+chrX	783710	783584	HWI-14062323|X_10000000_Hum1	600	0	783710	783584	0,0,255
+chrX	783708	783582	HWI-14062323|X_10000000_Hum1	600	1	783708	783582	255,0,0
+chrX	783710	783584	HWI-38284795|X_10000000_Hum1	600	0	783710	783584	0,0,255
+chrX	783708	783582	HWI-38284795|X_10000000_Hum1	600	1	783708	783582	255,0,0
+track name=X_801585_ITX_-102	description="BreakDancer X 801585 ITX -102"	useScore=0
+chrX	801632	801506	HWI-4390608|X_10000000_Hum1	600	0	801632	801506	0,0,255
+chrX	801631	801505	HWI-4390608|X_10000000_Hum1	600	1	801631	801505	255,0,0
+chrX	801632	801506	HWI-7376519|X_10000000_Hum1	600	0	801632	801506	0,0,255
+chrX	801631	801505	HWI-7376519|X_10000000_Hum1	600	1	801631	801505	255,0,0
+chrX	801632	801506	HWI-9609834|X_10000000_Hum1	600	0	801632	801506	0,0,255
+chrX	801631	801505	HWI-9609834|X_10000000_Hum1	600	1	801631	801505	255,0,0
+track name=X_811468_ITX_-105	description="BreakDancer X 811468 ITX -105"	useScore=0
+chrX	811468	811387	HWI-5209933|X_10000000_Hum1	600	0	811468	811387	0,0,255
+chrX	811467	811341	HWI-5209933|X_10000000_Hum1	600	1	811467	811341	255,0,0
+chrX	811468	811387	HWI-13409894|X_10000000_Hum1	600	0	811468	811387	0,0,255
+chrX	811467	811341	HWI-13409894|X_10000000_Hum1	600	1	811467	811341	255,0,0
+chrX	811468	811387	HWI-19569322|X_10000000_Hum1	600	0	811468	811387	0,0,255
+chrX	811467	811341	HWI-19569322|X_10000000_Hum1	600	1	811467	811341	255,0,0
+chrX	811468	811387	HWI-20294658|X_10000000_Hum1	600	0	811468	811387	0,0,255
+chrX	811467	811341	HWI-20294658|X_10000000_Hum1	600	1	811467	811341	255,0,0
+chrX	811468	811387	HWI-31912831|X_10000000_Hum1	600	0	811468	811387	0,0,255
+chrX	811467	811341	HWI-31912831|X_10000000_Hum1	600	1	811467	811341	255,0,0
+chrX	811468	811387	HWI-42706503|X_10000000_Hum1	600	0	811468	811387	0,0,255
+chrX	811467	811341	HWI-42706503|X_10000000_Hum1	600	1	811467	811341	255,0,0
+chrX	811468	811387	HWI-42712898|X_10000000_Hum1	600	0	811468	811387	0,0,255
+chrX	811467	811341	HWI-42712898|X_10000000_Hum1	600	1	811467	811341	255,0,0
+chrX	811479	811409	HWI-8865209|X_10000000_Hum1	600	0	811479	811409	0,0,255
+chrX	811478	811352	HWI-8865209|X_10000000_Hum1	600	1	811478	811352	255,0,0
+chrX	811479	811409	HWI-13215811|X_10000000_Hum1	600	0	811479	811409	0,0,255
+chrX	811478	811352	HWI-13215811|X_10000000_Hum1	600	1	811478	811352	255,0,0
+chrX	811479	811409	HWI-17727877|X_10000000_Hum1	600	0	811479	811409	0,0,255
+chrX	811478	811352	HWI-17727877|X_10000000_Hum1	600	1	811478	811352	255,0,0
+chrX	811479	811409	HWI-26151571|X_10000000_Hum1	600	0	811479	811409	0,0,255
+chrX	811478	811352	HWI-26151571|X_10000000_Hum1	600	1	811478	811352	255,0,0
+chrX	811479	811409	HWI-32645612|X_10000000_Hum1	600	0	811479	811409	0,0,255
+chrX	811478	811352	HWI-32645612|X_10000000_Hum1	600	1	811478	811352	255,0,0
+chrX	811479	811409	HWI-38707668|X_10000000_Hum1	600	0	811479	811409	0,0,255
+chrX	811478	811352	HWI-38707668|X_10000000_Hum1	600	1	811478	811352	255,0,0
+track name=X_812253_DEL_5758	description="BreakDancer X 812253 DEL 5758"	useScore=0
+chrX	817894	817768	HWI-4219154|X_10000000_Hum1	600	1	817894	817768	255,0,0
+chrX	812118	812057	HWI-4219154|X_10000000_Hum1	600	0	812118	812057	0,0,255
+chrX	817946	817820	HWI-15944923|X_10000000_Hum1	600	1	817946	817820	255,0,0
+chrX	812065	811951	HWI-15944923|X_10000000_Hum1	600	0	812065	811951	0,0,255
+chrX	817946	817820	HWI-40005464|X_10000000_Hum1	600	1	817946	817820	255,0,0
+chrX	812065	811951	HWI-40005464|X_10000000_Hum1	600	0	812065	811951	0,0,255
+chrX	817976	817850	HWI-14667160|X_10000000_Hum1	600	1	817976	817850	255,0,0
+chrX	812103	812027	HWI-14667160|X_10000000_Hum1	600	0	812103	812027	0,0,255
+chrX	817976	817850	HWI-37940762|X_10000000_Hum1	600	1	817976	817850	255,0,0
+chrX	812103	812027	HWI-37940762|X_10000000_Hum1	600	0	812103	812027	0,0,255
+chrX	817976	817850	HWI-38695270|X_10000000_Hum1	600	1	817976	817850	255,0,0
+chrX	812103	812027	HWI-38695270|X_10000000_Hum1	600	0	812103	812027	0,0,255
+chrX	817976	817850	HWI-41862766|X_10000000_Hum1	600	1	817976	817850	255,0,0
+chrX	812103	812027	HWI-41862766|X_10000000_Hum1	600	0	812103	812027	0,0,255
+track name=X_812378_DEL_5555	description="BreakDancer X 812378 DEL 5555"	useScore=0
+chrX	817894	817774	HWI-2121932|X_10000000_Hum1	600	1	817894	817774	255,0,0
+chrX	812257	812131	HWI-2121932|X_10000000_Hum1	600	0	812257	812131	0,0,255
+chrX	817894	817768	HWI-2274453|X_10000000_Hum1	600	1	817894	817768	255,0,0
+chrX	812257	812131	HWI-2274453|X_10000000_Hum1	600	0	812257	812131	0,0,255
+chrX	817894	817768	HWI-18940845|X_10000000_Hum1	600	1	817894	817768	255,0,0
+chrX	812257	812131	HWI-18940845|X_10000000_Hum1	600	0	812257	812131	0,0,255
+chrX	817894	817768	HWI-28403440|X_10000000_Hum1	600	1	817894	817768	255,0,0
+chrX	812257	812131	HWI-28403440|X_10000000_Hum1	600	0	812257	812131	0,0,255
+chrX	817925	817799	HWI-8002414|X_10000000_Hum1	600	1	817925	817799	255,0,0
+chrX	812233	812107	HWI-8002414|X_10000000_Hum1	600	0	812233	812107	0,0,255
+chrX	817925	817799	HWI-14797860|X_10000000_Hum1	600	1	817925	817799	255,0,0
+chrX	812233	812124	HWI-14797860|X_10000000_Hum1	600	0	812233	812124	0,0,255
+chrX	817925	817799	HWI-33944827|X_10000000_Hum1	600	1	817925	817799	255,0,0
+chrX	812233	812144	HWI-33944827|X_10000000_Hum1	600	0	812233	812144	0,0,255
+chrX	817925	817799	HWI-35816816|X_10000000_Hum1	600	1	817925	817799	255,0,0
+chrX	812233	812107	HWI-35816816|X_10000000_Hum1	600	0	812233	812107	0,0,255
+track name=X_819693_DEL_369	description="BreakDancer X 819693 DEL 369"	useScore=0
+chrX	820006	819880	HWI-15967066|X_10000000_Hum1	600	1	820006	819880	255,0,0
+chrX	819557	819431	HWI-15967066|X_10000000_Hum1	600	0	819557	819431	0,0,255
+chrX	820006	819880	HWI-26583884|X_10000000_Hum1	600	1	820006	819880	255,0,0
+chrX	819557	819431	HWI-26583884|X_10000000_Hum1	600	0	819557	819431	0,0,255
+chrX	820088	819962	HWI-14450838|X_10000000_Hum1	600	1	820088	819962	255,0,0
+chrX	819572	819474	HWI-14450838|X_10000000_Hum1	600	0	819572	819474	0,0,255
+track name=X_820478_ITX_-105	description="BreakDancer X 820478 ITX -105"	useScore=0
+chrX	820520	820394	HWI-7611685|X_10000000_Hum1	600	0	820520	820394	0,0,255
+chrX	820519	820393	HWI-7611685|X_10000000_Hum1	600	1	820519	820393	255,0,0
+chrX	820520	820394	HWI-13229787|X_10000000_Hum1	600	0	820520	820394	0,0,255
+chrX	820519	820393	HWI-13229787|X_10000000_Hum1	600	1	820519	820393	255,0,0
+chrX	820520	820394	HWI-13909657|X_10000000_Hum1	600	0	820520	820394	0,0,255
+chrX	820519	820393	HWI-13909657|X_10000000_Hum1	600	1	820519	820393	255,0,0
+chrX	820520	820394	HWI-28505997|X_10000000_Hum1	600	0	820520	820394	0,0,255
+chrX	820519	820393	HWI-28505997|X_10000000_Hum1	600	1	820519	820393	255,0,0
+chrX	820520	820394	HWI-37393280|X_10000000_Hum1	600	0	820520	820394	0,0,255
+chrX	820519	820393	HWI-37393280|X_10000000_Hum1	600	1	820519	820393	255,0,0
+track name=X_821851_ITX_-102	description="BreakDancer X 821851 ITX -102"	useScore=0
+chrX	821881	821755	HWI-10029498|X_10000000_Hum1	600	0	821881	821755	0,0,255
+chrX	821880	821754	HWI-10029498|X_10000000_Hum1	600	1	821880	821754	255,0,0
+chrX	821881	821755	HWI-13908040|X_10000000_Hum1	600	0	821881	821755	0,0,255
+chrX	821880	821754	HWI-13908040|X_10000000_Hum1	600	1	821880	821754	255,0,0
+chrX	821881	821764	HWI-33959570|X_10000000_Hum1	600	0	821881	821764	0,0,255
+chrX	821880	821754	HWI-33959570|X_10000000_Hum1	600	1	821880	821754	255,0,0
+track name=X_826401_DEL_418	description="BreakDancer X 826401 DEL 418"	useScore=0
+chrX	826800	826674	HWI-38243297|X_10000000_Hum1	600	1	826800	826674	255,0,0
+chrX	826280	826221	HWI-38243297|X_10000000_Hum1	600	0	826280	826221	0,0,255
+chrX	826829	826732	HWI-4142588|X_10000000_Hum1	600	1	826829	826732	255,0,0
+chrX	826280	826176	HWI-4142588|X_10000000_Hum1	600	0	826280	826176	0,0,255
+track name=X_827663_DEL_7844	description="BreakDancer X 827663 DEL 7844"	useScore=0
+chrX	835390	835264	HWI-6164684|X_10000000_Hum1	600	1	835390	835264	255,0,0
+chrX	827414	827288	HWI-6164684|X_10000000_Hum1	600	0	827414	827288	0,0,255
+chrX	835390	835264	HWI-7505977|X_10000000_Hum1	600	1	835390	835264	255,0,0
+chrX	827414	827288	HWI-7505977|X_10000000_Hum1	600	0	827414	827288	0,0,255
+chrX	835390	835264	HWI-32389963|X_10000000_Hum1	600	1	835390	835264	255,0,0
+chrX	827414	827288	HWI-32389963|X_10000000_Hum1	600	0	827414	827288	0,0,255
+chrX	835391	835265	HWI-4084404|X_10000000_Hum1	600	1	835391	835265	255,0,0
+chrX	827431	827305	HWI-4084404|X_10000000_Hum1	600	0	827431	827305	0,0,255
+chrX	835391	835265	HWI-42316348|X_10000000_Hum1	600	1	835391	835265	255,0,0
+chrX	827431	827305	HWI-42316348|X_10000000_Hum1	600	0	827431	827305	0,0,255
+chrX	835403	835277	HWI-34647272|X_10000000_Hum1	600	1	835403	835277	255,0,0
+chrX	827456	827330	HWI-34647272|X_10000000_Hum1	600	0	827456	827330	0,0,255
+track name=X_827663_DEL_7910	description="BreakDancer X 827663 DEL 7910"	useScore=0
+chrX	835496	835370	HWI-8203733|X_10000000_Hum1	600	1	835496	835370	255,0,0
+chrX	827523	827397	HWI-8203733|X_10000000_Hum1	600	0	827523	827397	0,0,255
+chrX	835496	835370	HWI-17520011|X_10000000_Hum1	600	1	835496	835370	255,0,0
+chrX	827523	827397	HWI-17520011|X_10000000_Hum1	600	0	827523	827397	0,0,255
+chrX	835496	835370	HWI-29430262|X_10000000_Hum1	600	1	835496	835370	255,0,0
+chrX	827523	827397	HWI-29430262|X_10000000_Hum1	600	0	827523	827397	0,0,255
+chrX	835537	835411	HWI-1740666|X_10000000_Hum1	600	1	835537	835411	255,0,0
+chrX	827486	827360	HWI-1740666|X_10000000_Hum1	600	0	827486	827360	0,0,255
+chrX	835537	835411	HWI-4420238|X_10000000_Hum1	600	1	835537	835411	255,0,0
+chrX	827486	827360	HWI-4420238|X_10000000_Hum1	600	0	827486	827360	0,0,255
+chrX	835537	835411	HWI-23364874|X_10000000_Hum1	600	1	835537	835411	255,0,0
+chrX	827486	827360	HWI-23364874|X_10000000_Hum1	600	0	827486	827360	0,0,255
+track name=X_836831_DEL_375	description="BreakDancer X 836831 DEL 375"	useScore=0
+chrX	837171	837045	HWI-13479180|X_10000000_Hum1	600	1	837171	837045	255,0,0
+chrX	836710	836604	HWI-13479180|X_10000000_Hum1	600	0	836710	836604	0,0,255
+chrX	837171	837045	HWI-43400802|X_10000000_Hum1	600	1	837171	837045	255,0,0
+chrX	836710	836642	HWI-43400802|X_10000000_Hum1	600	0	836710	836642	0,0,255
+chrX	837180	837054	HWI-43554259|X_10000000_Hum1	600	1	837180	837054	255,0,0
+chrX	836671	836545	HWI-43554259|X_10000000_Hum1	600	0	836671	836545	0,0,255
+track name=X_838911_ITX_-104	description="BreakDancer X 838911 ITX -104"	useScore=0
+chrX	838911	838829	HWI-11117132|X_10000000_Hum1	600	0	838911	838829	0,0,255
+chrX	838910	838784	HWI-11117132|X_10000000_Hum1	600	1	838910	838784	255,0,0
+chrX	838911	838829	HWI-42537137|X_10000000_Hum1	600	0	838911	838829	0,0,255
+chrX	838910	838784	HWI-42537137|X_10000000_Hum1	600	1	838910	838784	255,0,0
+track name=X_842752_ITX_-105	description="BreakDancer X 842752 ITX -105"	useScore=0
+chrX	842752	842702	HWI-17442253|X_10000000_Hum1	600	0	842752	842702	0,0,255
+chrX	842751	842625	HWI-17442253|X_10000000_Hum1	600	1	842751	842625	255,0,0
+chrX	842752	842702	HWI-25004855|X_10000000_Hum1	600	0	842752	842702	0,0,255
+chrX	842751	842625	HWI-25004855|X_10000000_Hum1	600	1	842751	842625	255,0,0
+chrX	842752	842702	HWI-28662812|X_10000000_Hum1	600	0	842752	842702	0,0,255
+chrX	842751	842625	HWI-28662812|X_10000000_Hum1	600	1	842751	842625	255,0,0
+chrX	842752	842702	HWI-28824580|X_10000000_Hum1	600	0	842752	842702	0,0,255
+chrX	842751	842625	HWI-28824580|X_10000000_Hum1	600	1	842751	842625	255,0,0
+chrX	842752	842702	HWI-29156122|X_10000000_Hum1	600	0	842752	842702	0,0,255
+chrX	842751	842625	HWI-29156122|X_10000000_Hum1	600	1	842751	842625	255,0,0
+track name=X_867585_DEL_348	description="BreakDancer X 867585 DEL 348"	useScore=0
+chrX	867901	867775	HWI-4735807|X_10000000_Hum1	600	1	867901	867775	255,0,0
+chrX	867451	867368	HWI-4735807|X_10000000_Hum1	600	0	867451	867368	0,0,255
+chrX	867901	867775	HWI-35449646|X_10000000_Hum1	600	1	867901	867775	255,0,0
+chrX	867451	867368	HWI-35449646|X_10000000_Hum1	600	0	867451	867368	0,0,255
+chrX	867942	867857	HWI-2721371|X_10000000_Hum1	600	1	867942	867857	255,0,0
+chrX	867451	867416	HWI-2721371|X_10000000_Hum1	600	0	867451	867416	0,0,255
+track name=X_869931_ITX_-103	description="BreakDancer X 869931 ITX -103"	useScore=0
+chrX	869932	869806	HWI-16953787|X_10000000_Hum1	600	0	869932	869806	0,0,255
+chrX	869930	869804	HWI-16953787|X_10000000_Hum1	600	1	869930	869804	255,0,0
+chrX	869932	869806	HWI-18247439|X_10000000_Hum1	600	0	869932	869806	0,0,255
+chrX	869930	869804	HWI-18247439|X_10000000_Hum1	600	1	869930	869804	255,0,0
+chrX	869932	869806	HWI-23027173|X_10000000_Hum1	600	0	869932	869806	0,0,255
+chrX	869930	869804	HWI-23027173|X_10000000_Hum1	600	1	869930	869804	255,0,0
+chrX	869932	869806	HWI-24463150|X_10000000_Hum1	600	0	869932	869806	0,0,255
+chrX	869931	869805	HWI-24463150|X_10000000_Hum1	600	1	869931	869805	255,0,0
+chrX	869932	869830	HWI-25478404|X_10000000_Hum1	600	0	869932	869830	0,0,255
+chrX	869930	869804	HWI-25478404|X_10000000_Hum1	600	1	869930	869804	255,0,0
+chrX	869932	869806	HWI-36395034|X_10000000_Hum1	600	0	869932	869806	0,0,255
+chrX	869930	869804	HWI-36395034|X_10000000_Hum1	600	1	869930	869804	255,0,0
+chrX	869945	869819	HWI-1026372|X_10000000_Hum1	600	0	869945	869819	0,0,255
+chrX	869944	869818	HWI-1026372|X_10000000_Hum1	600	1	869944	869818	255,0,0
+chrX	869945	869819	HWI-11088805|X_10000000_Hum1	600	0	869945	869819	0,0,255
+chrX	869944	869818	HWI-11088805|X_10000000_Hum1	600	1	869944	869818	255,0,0
+chrX	869945	869819	HWI-31828588|X_10000000_Hum1	600	0	869945	869819	0,0,255
+chrX	869944	869818	HWI-31828588|X_10000000_Hum1	600	1	869944	869818	255,0,0
+track name=X_808851_INV_87616	description="BreakDancer X 808851 INV 87616"	useScore=0
+chrX	896531	896405	HWI-23474063|X_10000000_Hum1	600	1	896531	896405	255,0,0
+chrX	808717	808591	HWI-23474063|X_10000000_Hum1	600	1	808717	808591	255,0,0
+chrX	896531	896405	HWI-32384868|X_10000000_Hum1	600	1	896531	896405	255,0,0
+chrX	808717	808591	HWI-32384868|X_10000000_Hum1	600	1	808717	808591	255,0,0
+chrX	896543	896429	HWI-36701216|X_10000000_Hum1	600	1	896543	896429	255,0,0
+chrX	808717	808591	HWI-36701216|X_10000000_Hum1	600	1	808717	808591	255,0,0
+chrX	896551	896445	HWI-8484865|X_10000000_Hum1	600	1	896551	896445	255,0,0
+chrX	808730	808645	HWI-8484865|X_10000000_Hum1	600	1	808730	808645	255,0,0
+chrX	896572	896487	HWI-28319407|X_10000000_Hum1	600	1	896572	896487	255,0,0
+chrX	808717	808591	HWI-28319407|X_10000000_Hum1	600	1	808717	808591	255,0,0
+track name=X_882462_DEL_311	description="BreakDancer X 882462 DEL 311"	useScore=0
+chrX	882731	882605	HWI-2095070|X_10000000_Hum1	600	1	882731	882605	255,0,0
+chrX	882324	882198	HWI-2095070|X_10000000_Hum1	600	0	882324	882198	0,0,255
+chrX	882731	882605	HWI-5178961|X_10000000_Hum1	600	1	882731	882605	255,0,0
+chrX	882324	882198	HWI-5178961|X_10000000_Hum1	600	0	882324	882198	0,0,255
+chrX	882731	882605	HWI-8239404|X_10000000_Hum1	600	1	882731	882605	255,0,0
+chrX	882324	882221	HWI-8239404|X_10000000_Hum1	600	0	882324	882221	0,0,255
+chrX	882780	882654	HWI-14156977|X_10000000_Hum1	600	1	882780	882654	255,0,0
+chrX	882341	882215	HWI-14156977|X_10000000_Hum1	600	0	882341	882215	0,0,255
+chrX	882819	882781	HWI-29724550|X_10000000_Hum1	600	1	882819	882781	255,0,0
+chrX	882324	882198	HWI-29724550|X_10000000_Hum1	600	0	882324	882198	0,0,255
+track name=X_886628_DEL_360	description="BreakDancer X 886628 DEL 360"	useScore=0
+chrX	886944	886818	HWI-8377659|X_10000000_Hum1	600	1	886944	886818	255,0,0
+chrX	886507	886381	HWI-8377659|X_10000000_Hum1	600	0	886507	886381	0,0,255
+chrX	886952	886826	HWI-15224058|X_10000000_Hum1	600	1	886952	886826	255,0,0
+chrX	886471	886345	HWI-15224058|X_10000000_Hum1	600	0	886471	886345	0,0,255
+chrX	886952	886826	HWI-20488948|X_10000000_Hum1	600	1	886952	886826	255,0,0
+chrX	886471	886345	HWI-20488948|X_10000000_Hum1	600	0	886471	886345	0,0,255
+chrX	886952	886826	HWI-40357248|X_10000000_Hum1	600	1	886952	886826	255,0,0
+chrX	886471	886345	HWI-40357248|X_10000000_Hum1	600	0	886471	886345	0,0,255
+chrX	886984	886898	HWI-8587060|X_10000000_Hum1	600	1	886984	886898	255,0,0
+chrX	886507	886444	HWI-8587060|X_10000000_Hum1	600	0	886507	886444	0,0,255
+chrX	886984	886890	HWI-16401798|X_10000000_Hum1	600	1	886984	886890	255,0,0
+chrX	886471	886345	HWI-16401798|X_10000000_Hum1	600	0	886471	886345	0,0,255
+chrX	886984	886898	HWI-24150477|X_10000000_Hum1	600	1	886984	886898	255,0,0
+chrX	886507	886381	HWI-24150477|X_10000000_Hum1	600	0	886507	886381	0,0,255
+track name=X_893058_ITX_-104	description="BreakDancer X 893058 ITX -104"	useScore=0
+chrX	893075	892949	HWI-25425366|X_10000000_Hum1	600	0	893075	892949	0,0,255
+chrX	893074	892948	HWI-25425366|X_10000000_Hum1	600	1	893074	892948	255,0,0
+chrX	893075	892949	HWI-29793188|X_10000000_Hum1	600	0	893075	892949	0,0,255
+chrX	893074	892948	HWI-29793188|X_10000000_Hum1	600	1	893074	892948	255,0,0
+chrX	893075	892949	HWI-39072708|X_10000000_Hum1	600	0	893075	892949	0,0,255
+chrX	893074	892948	HWI-39072708|X_10000000_Hum1	600	1	893074	892948	255,0,0
+chrX	893075	893031	HWI-40890937|X_10000000_Hum1	600	0	893075	893031	0,0,255
+chrX	893074	892948	HWI-40890937|X_10000000_Hum1	600	1	893074	892948	255,0,0
+track name=X_904956_DEL_368	description="BreakDancer X 904956 DEL 368"	useScore=0
+chrX	905301	905175	HWI-9013898|X_10000000_Hum1	600	1	905301	905175	255,0,0
+chrX	904835	904709	HWI-9013898|X_10000000_Hum1	600	0	904835	904709	0,0,255
+chrX	905301	905175	HWI-19892958|X_10000000_Hum1	600	1	905301	905175	255,0,0
+chrX	904835	904709	HWI-19892958|X_10000000_Hum1	600	0	904835	904709	0,0,255
+chrX	905301	905175	HWI-32653164|X_10000000_Hum1	600	1	905301	905175	255,0,0
+chrX	904835	904709	HWI-32653164|X_10000000_Hum1	600	0	904835	904709	0,0,255
+chrX	905301	905175	HWI-40995875|X_10000000_Hum1	600	1	905301	905175	255,0,0
+chrX	904835	904764	HWI-40995875|X_10000000_Hum1	600	0	904835	904764	0,0,255
+chrX	905315	905189	HWI-40458041|X_10000000_Hum1	600	1	905315	905189	255,0,0
+chrX	904831	904705	HWI-40458041|X_10000000_Hum1	600	0	904831	904705	0,0,255
+track name=X_906794_DEL_1714	description="BreakDancer X 906794 DEL 1714"	useScore=0
+chrX	908531	908440	HWI-13323694|X_10000000_Hum1	600	1	908531	908440	255,0,0
+chrX	906673	906587	HWI-13323694|X_10000000_Hum1	600	0	906673	906587	0,0,255
+chrX	908531	908491	HWI-13445657|X_10000000_Hum1	600	1	908531	908491	255,0,0
+chrX	906648	906537	HWI-13445657|X_10000000_Hum1	600	0	906648	906537	0,0,255
+chrX	908531	908440	HWI-20368878|X_10000000_Hum1	600	1	908531	908440	255,0,0
+chrX	906673	906610	HWI-20368878|X_10000000_Hum1	600	0	906673	906610	0,0,255
+chrX	908531	908491	HWI-31620419|X_10000000_Hum1	600	1	908531	908491	255,0,0
+chrX	906648	906537	HWI-31620419|X_10000000_Hum1	600	0	906648	906537	0,0,255
+chrX	908531	908440	HWI-34201301|X_10000000_Hum1	600	1	908531	908440	255,0,0
+chrX	906673	906587	HWI-34201301|X_10000000_Hum1	600	0	906673	906587	0,0,255
+chrX	908531	908440	HWI-35188807|X_10000000_Hum1	600	1	908531	908440	255,0,0
+chrX	906673	906587	HWI-35188807|X_10000000_Hum1	600	0	906673	906587	0,0,255
+chrX	908531	908440	HWI-37787370|X_10000000_Hum1	600	1	908531	908440	255,0,0
+chrX	906673	906587	HWI-37787370|X_10000000_Hum1	600	0	906673	906587	0,0,255
+track name=X_922108_ITX_-102	description="BreakDancer X 922108 ITX -102"	useScore=0
+chrX	922108	921982	HWI-14927985|X_10000000_Hum1	600	0	922108	921982	0,0,255
+chrX	922107	921981	HWI-14927985|X_10000000_Hum1	600	1	922107	921981	255,0,0
+chrX	922108	921982	HWI-29186998|X_10000000_Hum1	600	0	922108	921982	0,0,255
+chrX	922107	921981	HWI-29186998|X_10000000_Hum1	600	1	922107	921981	255,0,0
+chrX	922108	921982	HWI-40125118|X_10000000_Hum1	600	0	922108	921982	0,0,255
+chrX	922107	921981	HWI-40125118|X_10000000_Hum1	600	1	922107	921981	255,0,0
+track name=X_949787_ITX_-103	description="BreakDancer X 949787 ITX -103"	useScore=0
+chrX	949788	949662	HWI-6045342|X_10000000_Hum1	600	0	949788	949662	0,0,255
+chrX	949786	949660	HWI-6045342|X_10000000_Hum1	600	1	949786	949660	255,0,0
+chrX	949788	949662	HWI-34809432|X_10000000_Hum1	600	0	949788	949662	0,0,255
+chrX	949786	949660	HWI-34809432|X_10000000_Hum1	600	1	949786	949660	255,0,0
+track name=X_970591_DEL_319	description="BreakDancer X 970591 DEL 319"	useScore=0
+chrX	970926	970870	HWI-2013544|X_10000000_Hum1	600	1	970926	970870	255,0,0
+chrX	970442	970316	HWI-2013544|X_10000000_Hum1	600	0	970442	970316	0,0,255
+chrX	970926	970870	HWI-8849818|X_10000000_Hum1	600	1	970926	970870	255,0,0
+chrX	970442	970316	HWI-8849818|X_10000000_Hum1	600	0	970442	970316	0,0,255
+chrX	970926	970870	HWI-18487959|X_10000000_Hum1	600	1	970926	970870	255,0,0
+chrX	970442	970316	HWI-18487959|X_10000000_Hum1	600	0	970442	970316	0,0,255
+chrX	970926	970870	HWI-25393900|X_10000000_Hum1	600	1	970926	970870	255,0,0
+chrX	970442	970321	HWI-25393900|X_10000000_Hum1	600	0	970442	970321	0,0,255
+chrX	970926	970870	HWI-38484889|X_10000000_Hum1	600	1	970926	970870	255,0,0
+chrX	970442	970316	HWI-38484889|X_10000000_Hum1	600	0	970442	970316	0,0,255
+chrX	970973	970913	HWI-253607|X_10000000_Hum1	600	1	970973	970913	255,0,0
+chrX	970470	970344	HWI-253607|X_10000000_Hum1	600	0	970470	970344	0,0,255
+chrX	970987	970941	HWI-17463305|X_10000000_Hum1	600	1	970987	970941	255,0,0
+chrX	970470	970344	HWI-17463305|X_10000000_Hum1	600	0	970470	970344	0,0,255
+track name=X_971930_ITX_-102	description="BreakDancer X 971930 ITX -102"	useScore=0
+chrX	971968	971842	HWI-902251|X_10000000_Hum1	600	0	971968	971842	0,0,255
+chrX	971967	971841	HWI-902251|X_10000000_Hum1	600	1	971967	971841	255,0,0
+chrX	971968	971842	HWI-1661657|X_10000000_Hum1	600	0	971968	971842	0,0,255
+chrX	971967	971841	HWI-1661657|X_10000000_Hum1	600	1	971967	971841	255,0,0
+chrX	971968	971842	HWI-33664636|X_10000000_Hum1	600	0	971968	971842	0,0,255
+chrX	971967	971841	HWI-33664636|X_10000000_Hum1	600	1	971967	971841	255,0,0
+track name=X_976376_DEL_419	description="BreakDancer X 976376 DEL 419"	useScore=0
+chrX	976722	976596	HWI-21613675|X_10000000_Hum1	600	1	976722	976596	255,0,0
+chrX	976192	976071	HWI-21613675|X_10000000_Hum1	600	0	976192	976071	0,0,255
+chrX	976722	976596	HWI-28875065|X_10000000_Hum1	600	1	976722	976596	255,0,0
+chrX	976192	976066	HWI-28875065|X_10000000_Hum1	600	0	976192	976066	0,0,255
+chrX	976722	976596	HWI-44872323|X_10000000_Hum1	600	1	976722	976596	255,0,0
+chrX	976192	976066	HWI-44872323|X_10000000_Hum1	600	0	976192	976066	0,0,255
+chrX	976745	976619	HWI-31479971|X_10000000_Hum1	600	1	976745	976619	255,0,0
+chrX	976255	976129	HWI-31479971|X_10000000_Hum1	600	0	976255	976129	0,0,255
+chrX	976745	976619	HWI-43689087|X_10000000_Hum1	600	1	976745	976619	255,0,0
+chrX	976255	976129	HWI-43689087|X_10000000_Hum1	600	0	976255	976129	0,0,255
+chrX	976773	976647	HWI-30122343|X_10000000_Hum1	600	1	976773	976647	255,0,0
+chrX	976236	976116	HWI-30122343|X_10000000_Hum1	600	0	976236	976116	0,0,255
+chrX	976773	976647	HWI-30933434|X_10000000_Hum1	600	1	976773	976647	255,0,0
+chrX	976236	976110	HWI-30933434|X_10000000_Hum1	600	0	976236	976110	0,0,255
+track name=X_999900_ITX_-104	description="BreakDancer X 999900 ITX -104"	useScore=0
+chrX	999913	999787	HWI-4720434|X_10000000_Hum1	600	0	999913	999787	0,0,255
+chrX	999911	999785	HWI-4720434|X_10000000_Hum1	600	1	999911	999785	255,0,0
+chrX	999913	999787	HWI-30372156|X_10000000_Hum1	600	0	999913	999787	0,0,255
+chrX	999911	999785	HWI-30372156|X_10000000_Hum1	600	1	999911	999785	255,0,0
+chrX	999913	999787	HWI-34394963|X_10000000_Hum1	600	0	999913	999787	0,0,255
+chrX	999911	999785	HWI-34394963|X_10000000_Hum1	600	1	999911	999785	255,0,0