Mercurial > repos > bgruening > deeptools_plot_fingerprint
changeset 10:314348664620 draft
planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 0eeb2e1a184186ba5ac044136e71b943e2af0f09
author | bgruening |
---|---|
date | Mon, 05 Dec 2016 08:06:43 -0500 |
parents | ef2bcce0be62 |
children | 716ce4890b52 |
files | deepTools_macros.xml plotFingerprint.xml test-data/bamCompare_result1.bg test-data/bamCoverage_result2.bw test-data/bamCoverage_result3.bg test-data/bamCoverage_result4.bg test-data/bamCoverage_result4.bw test-data/bamCoverage_result5.bw test-data/bamCoverage_result6.bw test-data/bigwigCompare_result2.bg test-data/computeGCBias_result1.tabular test-data/computeMatrixOperations.txt test-data/computeMatrixOperations_result2.mat.gz test-data/correctGCBias_result1.bam test-data/plotFingerprint_quality_metrics.tabular test-data/plotFingerprint_result2.tabular test-data/sequence.2bit tool_dependencies.xml |
diffstat | 18 files changed, 876 insertions(+), 780 deletions(-) [+] |
line wrap: on
line diff
--- a/deepTools_macros.xml Tue Oct 25 19:05:49 2016 -0400 +++ b/deepTools_macros.xml Mon Dec 05 08:06:43 2016 -0500 @@ -98,11 +98,11 @@ </xml> <token name="@THREADS@">--numberOfProcessors "\${GALAXY_SLOTS:-4}"</token> - <token name="@WRAPPER_VERSION@">2.3.6</token> + <token name="@WRAPPER_VERSION@">2.4.1</token> <xml name="requirements"> <requirements> <requirement type="package" version="2.7.10">python</requirement> - <requirement type="package" version="2.3.6">deepTools</requirement> + <requirement type="package" version="2.4.1">deeptools</requirement> <yield /> </requirements> <expand macro="stdio" /> @@ -285,11 +285,21 @@ </param> </xml> + <xml name="sortRegionsComputeMatrix"> + <param argument="--sortRegions" type="select" label="Sort regions" + help="Whether the heatmap should present the regions sorted. The default is to sort in descending order based on the mean value per region."> + <option value="no">no ordering</option> + <option value="keep" selected="true">maintain the same ordering as the input files</option> + <option value="descend">descending order</option> + <option value="ascend">ascending order</option> + </param> + </xml> + <xml name="sortRegions"> <param argument="--sortRegions" type="select" label="Sort regions" help="Whether the heatmap should present the regions sorted. The default is to sort in descending order based on the mean value per region."> <option value="no">no ordering</option> - <option value="descend" selected="true">descending order</option> + <option value="descend">descending order</option> <option value="ascend">ascending order</option> </param> </xml> @@ -362,21 +372,62 @@ </xml> <xml name="multiple_input_bams"> - <param argument="--bamfiles" type="data" format="bam" min="1" - label="Bam file" multiple="true" - help=""/> + <conditional name="multibam_conditional"> + <param name="orderMatters" type="select" label="Sample order matters" help="By default, the order of samples given to the program is dependent on their order in your history. If the order of the samples is vital to you, select Yes below."> + <option value="No" selected="true">No</option> + <option value="Yes">Yes</option> + </param> + <when value="No"> + <param argument="--bamfiles" type="data" format="bam" min="1" + label="Bam file" multiple="true" + help=""/> + </when> + <when value="Yes"> + <repeat name="multibam_repeats" min="1" title="BAM Files"> + <param argument="--bamfiles" type="data" format="bam" label="BAM file" help="" /> + </repeat> + </when> + </conditional> </xml> <xml name="multiple_input_bams_min2"> - <param argument="--bamfiles" type="data" format="bam" min="2" - label="Bam file" multiple="true" - help=""/> + <conditional name="multibam_conditional"> + <param name="orderMatters" type="select" label="Sample order matters" help="By default, the order of samples given to the program is dependent on their order in your history. If the order of the samples +is vital to you, select Yes below."> + <option value="No" selected="true">No</option> + <option value="Yes">Yes</option> + </param> + <when value="No"> + <param argument="--bamfiles" type="data" format="bam" min="2" + label="Bam file" multiple="true" + help=""/> + </when> + <when value="Yes"> + <repeat name="multibam_repeats" min="2" title="BAM Files"> + <param argument="--bamfiles" type="data" format="bam" label="BAM file" help="" /> + </repeat> + </when> + </conditional> </xml> <xml name="multiple_input_bigwigs"> - <param argument="--bigwigfiles" type="data" format="bigwig" multiple="True" min="2" - label="Bigwig file" - help="A Bigwig file."/> + <conditional name="multibigwig_conditional"> + <param name="orderMatters" type="select" label="Sample order matters" help="By default, the order of samples given to the program is dependent on their order in your history. If the order of the samples +is vital to you, select Yes below."> + <option value="No" selected="true">No</option> + <option value="Yes">Yes</option> + </param> + <when value="No"> + <param argument="--bigwigfiles" type="data" format="bigwig" multiple="True" min="2" + label="Bigwig file" + help="A Bigwig file."/> + </when> + <when value="Yes"> + <repeat name="multibigwig_repeats" min="2" title="BigWig files"> + <param argument="--bigwigfiles" type="data" format="bigwig" label="Bigwig file" help="A Bigwig file."/> + </repeat> + </when> + </conditional> </xml> <xml name="plotTitle"> @@ -390,12 +441,21 @@ <![CDATA[ #set files=[] #set labels=[] - #for $counter, $bamfile in enumerate($bamfiles): - ln -s "${bamfile}" "./${counter}.bam" && - ln -s "${bamfile.metadata.bam_index}" "./${counter}.bam.bai" && - #silent $files.append('%s.bam' % $counter) - #silent $labels.append("'%s'" % ($bamfile.display_name)) - #end for + #if $multibam_conditional.orderMatters == "No": + #for $counter, $bamfile in enumerate($multibam_conditional.bamfiles): + ln -s "${bamfile}" "./${counter}.bam" && + ln -s "${bamfile.metadata.bam_index}" "./${counter}.bam.bai" && + #silent $files.append('%s.bam' % $counter) + #silent $labels.append("'%s'" % ($bamfile.display_name)) + #end for + #else: + #for $counter, $f in enumerate($multibam_conditional.multibam_repeats): + ln -s "${f.bamfile}" "./${counter}.bam" && + ln -s "${f.bamfile.metadata.bam_index}" "./${counter}.bam.bai" && + #silent $files.append('%s.bam' % $counter) + #silent $labels.append("'%s'" % ($f.bamfile.display_name)) + #end for + #end if ]]> </token> @@ -403,11 +463,19 @@ <![CDATA[ #set files=[] #set labels=[] - #for $counter, $bigwig in enumerate($bigwigfiles): - ln -s "${bigwig}" "${counter}.bw" && - #silent $files.append('%s.bw' % $counter) - #silent $labels.append("'%s'" % ($bigwig.display_name)) - #end for + #if $multibigwig_conditional.orderMatters == "No": + #for $counter, $bigwig in enumerate($multibigwig_conditional.bigwigfiles): + ln -s "${bigwig}" "${counter}.bw" && + #silent $files.append('%s.bw' % $counter) + #silent $labels.append("'%s'" % ($bigwig.display_name)) + #end for + #else: + #for $counter, $f in enumerate($multibigwig_conditional.multibigwig_repeats): + ln -s "${f.bigwig}" "${counter}.bw" && + #silent $files.append('%s.bw' % $counter) + #silent $labels.append("'%s'" % ($f.bigwig.display_name)) + #end for + #end if ]]> </token>
--- a/plotFingerprint.xml Tue Oct 25 19:05:49 2016 -0400 +++ b/plotFingerprint.xml Mon Dec 05 08:06:43 2016 -0500 @@ -19,6 +19,15 @@ #if $output.saveRawCounts: --outRawCounts '$outFileRawCounts' #end if + #if $output.saveQualityMetrics: + --outQualityMetrics '$outFileQualityMetrics' + #if $output.JSDsample: + #if "'{}'".format($output.JSDsample.display_name) in $labels: + #set JSDidx = $labels.index("'{}'".format($output.JSDsample.display_name)) + --JSDsample "./${JSDidx}.bam" + #end if + #end if + #end if #else --plotFileFormat 'png' #end if @@ -34,10 +43,6 @@ $advancedOpt.ignoreDuplicates $advancedOpt.skipZeros - #if $advancedOpt.minMappingQuality: - --minMappingQuality '$advancedOpt.minMappingQuality' - #end if - #if $advancedOpt.plotTitle and str($advancedOpt.plotTitle.value) != "": --plotTitle '$advancedOpt.plotTitle' #end if @@ -80,6 +85,11 @@ <when value="yes"> <expand macro="input_image_file_format" /> <param name="saveRawCounts" type="boolean" label="Save the bin counts" help="(--outRawCounts)"/> + <param name="saveQualityMetrics" type="boolean" label="Save quality metrics" + help="The file will have one row per input BAM file and columns containing a variety of QC metrics. For the full description of all metrics and their interpretation, please see our online documentation: http://deeptools.readthedocs.io/en/latest/content/feature/plotFingerprint_QC_metrics.html. (--outQualityMetrics)"/> + <param name="JSDsample" type="data" format="bam" + label="Jensen-Shannon distance reference sample" + help="If output metrics should be saved, then use this sample as the reference for computing the Jensen-Shannon distance and CHANCE metrics of all other samples. Normally this is an input sample. If you don't specify this, then these metrics will not be computed. This is only applicable if quality metrics are being saved. (--JSDsample)" /> </when> </conditional> </inputs> @@ -93,6 +103,14 @@ )) </filter> </data> + <data format="tabular" name="outFileQualityMetrics" label="${tool.name} on ${on_string}: quality metrics"> + <filter> + (( + output['showOutputSettings'] == 'yes' and + output['saveQualityMetrics'] is True + )) + </filter> + </data> </outputs> <tests> <test> @@ -106,9 +124,12 @@ <param name="showAdvancedOpt" value="yes" /> <param name="showOutputSettings" value="yes" /> <param name="saveRawCounts" value="True" /> + <param name="saveQualityMetrics" value="True" /> <param name="plotTitle" value="Test Fingerprint Plot" /> + <param name="JSDsample" value="bowtie2 test1.bam" ftype="bam" /> <output name="outFileName" file="plotFingerprint_result2.png" ftype="png" compare="sim_size" /> <output name="outFileRawCounts" file="plotFingerprint_result2.tabular" ftype="tabular" /> + <output name="outFileQualityMetrics" file="plotFingerprint_quality_metrics.tabular" ftype="tabular" /> </test> </tests> <help> @@ -127,7 +148,7 @@ The default output is a diagnostic plot (see below for an example and further down for some background information). -Optionally, you can obtain the table of raw counts that was used to generate the plot. +Optionally, you can obtain the table of raw values that were used to generate the plot. .. image:: $PATH_TO_IMAGES/plotFingerprint_output.png :width: 600 @@ -149,10 +170,10 @@ Theoretical Background ---------------------- -The tool first samples indexed BAM files and counts all reads overlapping a window (bin) of the specified length. -These counts are then sorted according to their rank (the bin with the highest number of reads has the highest rank) -and the cumulative sum of read counts are plotted. An ideal input (control) with a uniform distribution of reads alignments -result in a diagonal line. A very specific and strong ChIP enrichment, on the other hand, would result in a large portion +The tool first samples indexed BAM files and sums the per-base coverage of reads/fragments overlapping a window (bin) of the specified length. +These values are then sorted according to their rank (the bin with the highest number of reads has the highest rank) +and the cumulative sum plotted. An ideal input (control) with a uniform distribution of reads alignments +and infinite sequencing depth will result in a diagonal line. A very specific and strong ChIP enrichment, on the other hand, would result in a large portion of reads accumulating in just a few bins and the resulting plot showing a steep rise toward the right-most edge. Such results are most commonly seen with transcription factors.
--- a/test-data/bamCompare_result1.bg Tue Oct 25 19:05:49 2016 -0400 +++ b/test-data/bamCompare_result1.bg Mon Dec 05 08:06:43 2016 -0500 @@ -1,1 +1,1 @@ -chrM 0 16569 1.00 +chrM 0 16569 1
--- a/test-data/bamCoverage_result3.bg Tue Oct 25 19:05:49 2016 -0400 +++ b/test-data/bamCoverage_result3.bg Mon Dec 05 08:06:43 2016 -0500 @@ -1,7 +1,7 @@ -chrM 0 210 9768764.94 -chrM 210 220 9560918.88 -chrM 220 230 7690304.31 -chrM 230 240 5196151.56 -chrM 240 250 3325537.00 -chrM 250 260 623538.19 -chrM 260 16569 0.00 +chrM 0 210 9.76876e+06 +chrM 210 220 9.56092e+06 +chrM 220 230 7.6903e+06 +chrM 230 240 5.19615e+06 +chrM 240 250 3.32554e+06 +chrM 250 260 623538 +chrM 260 16569 0
--- a/test-data/bamCoverage_result4.bg Tue Oct 25 19:05:49 2016 -0400 +++ b/test-data/bamCoverage_result4.bg Mon Dec 05 08:06:43 2016 -0500 @@ -1,472 +1,472 @@ -phiX174 0 10 16302.83 -phiX174 10 20 48908.50 -phiX174 20 70 146725.49 -phiX174 70 80 195633.98 -phiX174 80 90 179331.15 -phiX174 90 100 163028.32 -phiX174 100 120 114119.82 -phiX174 120 140 146725.49 -phiX174 140 150 163028.32 -phiX174 150 160 130422.65 -phiX174 160 170 163028.32 -phiX174 170 180 179331.15 -phiX174 180 200 211936.81 -phiX174 200 210 195633.98 -phiX174 210 220 244542.48 -phiX174 220 230 277148.14 -phiX174 230 240 342359.47 -phiX174 240 250 326056.64 -phiX174 250 260 293450.97 -phiX174 260 270 342359.47 -phiX174 270 280 407570.79 -phiX174 280 300 423873.63 -phiX174 300 310 358662.30 -phiX174 310 320 326056.64 -phiX174 320 330 374965.13 -phiX174 330 340 358662.30 -phiX174 340 350 293450.97 -phiX174 350 360 260845.31 -phiX174 360 370 228239.64 -phiX174 370 380 244542.48 -phiX174 380 390 309753.80 -phiX174 390 400 260845.31 -phiX174 400 410 244542.48 -phiX174 410 420 228239.64 -phiX174 420 450 293450.97 -phiX174 450 460 309753.80 -phiX174 460 470 342359.47 -phiX174 470 490 423873.63 -phiX174 490 510 505387.79 -phiX174 510 520 472782.12 -phiX174 520 530 570599.11 -phiX174 530 540 505387.79 -phiX174 540 550 537993.45 -phiX174 550 560 554296.28 -phiX174 560 570 652113.27 -phiX174 570 580 635810.44 -phiX174 580 590 570599.11 -phiX174 590 600 619507.61 -phiX174 600 610 554296.28 -phiX174 610 630 635810.44 -phiX174 630 640 586901.94 -phiX174 640 650 521690.62 -phiX174 650 660 554296.28 -phiX174 660 670 570599.11 -phiX174 670 680 603204.78 -phiX174 680 690 668416.10 -phiX174 690 700 652113.27 -phiX174 700 710 570599.11 -phiX174 710 730 603204.78 -phiX174 730 740 521690.62 -phiX174 740 760 603204.78 -phiX174 760 770 505387.79 -phiX174 770 780 521690.62 -phiX174 780 790 537993.45 -phiX174 790 800 554296.28 -phiX174 800 810 456479.29 -phiX174 810 820 440176.46 -phiX174 820 830 374965.13 -phiX174 830 840 326056.64 -phiX174 840 850 358662.30 -phiX174 850 860 309753.80 -phiX174 860 870 342359.47 -phiX174 870 880 260845.31 -phiX174 880 890 358662.30 -phiX174 890 900 391267.96 -phiX174 900 910 472782.12 -phiX174 910 920 554296.28 -phiX174 920 930 570599.11 -phiX174 930 940 554296.28 -phiX174 940 950 586901.94 -phiX174 950 960 603204.78 -phiX174 960 970 521690.62 -phiX174 970 980 489084.95 -phiX174 980 990 440176.46 -phiX174 990 1000 423873.63 -phiX174 1000 1010 456479.29 -phiX174 1010 1030 586901.94 -phiX174 1030 1040 766233.09 -phiX174 1040 1050 798838.76 -phiX174 1050 1060 831444.42 -phiX174 1060 1070 880352.92 -phiX174 1070 1080 847747.25 -phiX174 1080 1090 880352.92 -phiX174 1090 1100 782535.93 -phiX174 1100 1110 749930.26 -phiX174 1110 1120 668416.10 -phiX174 1120 1130 652113.27 -phiX174 1130 1140 635810.44 -phiX174 1140 1150 684718.93 -phiX174 1150 1160 635810.44 -phiX174 1160 1170 603204.78 -phiX174 1170 1180 619507.61 -phiX174 1180 1190 586901.94 -phiX174 1190 1200 521690.62 -phiX174 1200 1210 489084.95 -phiX174 1210 1220 570599.11 -phiX174 1220 1230 489084.95 -phiX174 1230 1240 456479.29 -phiX174 1240 1250 358662.30 -phiX174 1250 1260 342359.47 -phiX174 1260 1270 407570.79 -phiX174 1270 1280 358662.30 -phiX174 1280 1290 374965.13 -phiX174 1290 1300 326056.64 -phiX174 1300 1310 391267.96 -phiX174 1310 1320 521690.62 -phiX174 1320 1330 505387.79 -phiX174 1330 1340 521690.62 -phiX174 1340 1350 489084.95 -phiX174 1350 1370 505387.79 -phiX174 1370 1390 472782.12 -phiX174 1390 1400 358662.30 -phiX174 1400 1410 456479.29 -phiX174 1410 1430 489084.95 -phiX174 1430 1450 554296.28 -phiX174 1450 1460 570599.11 -phiX174 1460 1470 586901.94 -phiX174 1470 1480 619507.61 -phiX174 1480 1490 603204.78 -phiX174 1490 1500 554296.28 -phiX174 1500 1510 668416.10 -phiX174 1510 1520 635810.44 -phiX174 1520 1540 798838.76 -phiX174 1540 1550 733627.43 -phiX174 1550 1570 766233.09 -phiX174 1570 1580 782535.93 -phiX174 1580 1590 684718.93 -phiX174 1590 1600 635810.44 -phiX174 1600 1610 570599.11 -phiX174 1610 1620 537993.45 -phiX174 1620 1630 505387.79 -phiX174 1630 1640 472782.12 -phiX174 1640 1650 489084.95 -phiX174 1650 1660 505387.79 -phiX174 1660 1670 537993.45 -phiX174 1670 1680 603204.78 -phiX174 1680 1690 521690.62 -phiX174 1690 1700 537993.45 -phiX174 1700 1710 603204.78 -phiX174 1710 1720 554296.28 -phiX174 1720 1730 537993.45 -phiX174 1730 1740 586901.94 -phiX174 1740 1750 537993.45 -phiX174 1750 1760 440176.46 -phiX174 1760 1770 423873.63 -phiX174 1770 1780 374965.13 -phiX174 1780 1790 358662.30 -phiX174 1790 1810 342359.47 -phiX174 1810 1820 326056.64 -phiX174 1820 1830 472782.12 -phiX174 1830 1860 717324.60 -phiX174 1860 1870 815141.59 -phiX174 1870 1880 749930.26 -phiX174 1880 1890 684718.93 -phiX174 1890 1900 717324.60 -phiX174 1900 1910 619507.61 -phiX174 1910 1920 407570.79 -phiX174 1920 1930 472782.12 -phiX174 1930 1940 554296.28 -phiX174 1940 1950 456479.29 -phiX174 1950 1960 489084.95 -phiX174 1960 1970 537993.45 -phiX174 1970 1980 684718.93 -phiX174 1980 1990 652113.27 -phiX174 1990 2000 668416.10 -phiX174 2000 2010 684718.93 -phiX174 2010 2020 652113.27 -phiX174 2020 2030 668416.10 -phiX174 2030 2050 684718.93 -phiX174 2050 2060 489084.95 -phiX174 2060 2070 521690.62 -phiX174 2070 2080 489084.95 -phiX174 2080 2100 521690.62 -phiX174 2100 2110 537993.45 -phiX174 2110 2120 521690.62 -phiX174 2120 2130 537993.45 -phiX174 2130 2140 554296.28 -phiX174 2140 2150 521690.62 -phiX174 2150 2160 554296.28 -phiX174 2160 2170 423873.63 -phiX174 2170 2180 358662.30 -phiX174 2180 2190 440176.46 -phiX174 2190 2200 456479.29 -phiX174 2200 2210 440176.46 -phiX174 2210 2220 489084.95 -phiX174 2220 2230 554296.28 -phiX174 2230 2240 603204.78 -phiX174 2240 2250 635810.44 -phiX174 2250 2260 733627.43 -phiX174 2260 2270 635810.44 -phiX174 2270 2290 603204.78 -phiX174 2290 2300 619507.61 -phiX174 2300 2310 749930.26 -phiX174 2310 2320 782535.93 -phiX174 2320 2330 880352.92 -phiX174 2330 2340 864050.08 -phiX174 2340 2350 912958.58 -phiX174 2350 2360 815141.59 -phiX174 2360 2370 929261.41 -phiX174 2370 2380 815141.59 -phiX174 2380 2390 652113.27 -phiX174 2390 2400 603204.78 -phiX174 2400 2410 423873.63 -phiX174 2410 2420 407570.79 -phiX174 2420 2430 358662.30 -phiX174 2430 2440 489084.95 -phiX174 2440 2450 456479.29 -phiX174 2450 2460 619507.61 -phiX174 2460 2470 684718.93 -phiX174 2470 2480 749930.26 -phiX174 2480 2490 766233.09 -phiX174 2490 2500 782535.93 -phiX174 2500 2510 798838.76 -phiX174 2510 2520 652113.27 -phiX174 2520 2530 668416.10 -phiX174 2530 2540 537993.45 -phiX174 2540 2550 472782.12 -phiX174 2550 2560 391267.96 -phiX174 2560 2570 440176.46 -phiX174 2570 2590 472782.12 -phiX174 2590 2600 456479.29 -phiX174 2600 2620 537993.45 -phiX174 2620 2630 554296.28 -phiX174 2630 2640 701021.77 -phiX174 2640 2650 635810.44 -phiX174 2650 2660 570599.11 -phiX174 2660 2670 554296.28 -phiX174 2670 2680 619507.61 -phiX174 2680 2700 668416.10 -phiX174 2700 2710 635810.44 -phiX174 2710 2720 603204.78 -phiX174 2720 2740 668416.10 -phiX174 2740 2750 831444.42 -phiX174 2750 2760 880352.92 -phiX174 2760 2770 864050.08 -phiX174 2770 2780 896655.75 -phiX174 2780 2790 978169.91 -phiX174 2790 2800 831444.42 -phiX174 2800 2810 847747.25 -phiX174 2810 2820 815141.59 -phiX174 2820 2830 684718.93 -phiX174 2830 2840 717324.60 -phiX174 2840 2860 635810.44 -phiX174 2860 2870 619507.61 -phiX174 2870 2880 717324.60 -phiX174 2880 2890 668416.10 -phiX174 2890 2900 619507.61 -phiX174 2900 2910 668416.10 -phiX174 2910 2930 570599.11 -phiX174 2930 2940 521690.62 -phiX174 2940 2950 570599.11 -phiX174 2950 2960 505387.79 -phiX174 2960 2970 586901.94 -phiX174 2970 2980 603204.78 -phiX174 2980 2990 521690.62 -phiX174 2990 3000 537993.45 -phiX174 3000 3010 570599.11 -phiX174 3010 3020 521690.62 -phiX174 3020 3030 472782.12 -phiX174 3030 3040 440176.46 -phiX174 3040 3050 423873.63 -phiX174 3050 3060 554296.28 -phiX174 3060 3070 570599.11 -phiX174 3070 3080 635810.44 -phiX174 3080 3100 586901.94 -phiX174 3100 3110 733627.43 -phiX174 3110 3120 684718.93 -phiX174 3120 3130 652113.27 -phiX174 3130 3140 619507.61 -phiX174 3140 3160 684718.93 -phiX174 3160 3180 782535.93 -phiX174 3180 3190 717324.60 -phiX174 3190 3200 668416.10 -phiX174 3200 3210 684718.93 -phiX174 3210 3220 749930.26 -phiX174 3220 3230 668416.10 -phiX174 3230 3240 717324.60 -phiX174 3240 3250 635810.44 -phiX174 3250 3260 554296.28 -phiX174 3260 3270 603204.78 -phiX174 3270 3280 635810.44 -phiX174 3280 3290 586901.94 -phiX174 3290 3300 537993.45 -phiX174 3300 3310 521690.62 -phiX174 3310 3320 537993.45 -phiX174 3320 3330 619507.61 -phiX174 3330 3340 668416.10 -phiX174 3340 3370 652113.27 -phiX174 3370 3390 668416.10 -phiX174 3390 3400 586901.94 -phiX174 3400 3430 489084.95 -phiX174 3430 3440 521690.62 -phiX174 3440 3450 619507.61 -phiX174 3450 3460 586901.94 -phiX174 3460 3480 684718.93 -phiX174 3480 3490 733627.43 -phiX174 3490 3500 847747.25 -phiX174 3500 3510 815141.59 -phiX174 3510 3520 912958.58 -phiX174 3520 3530 782535.93 -phiX174 3530 3540 766233.09 -phiX174 3540 3550 798838.76 -phiX174 3550 3560 766233.09 -phiX174 3560 3570 701021.77 -phiX174 3570 3580 505387.79 -phiX174 3580 3590 472782.12 -phiX174 3590 3610 440176.46 -phiX174 3610 3620 423873.63 -phiX174 3620 3630 407570.79 -phiX174 3630 3640 391267.96 -phiX174 3640 3650 358662.30 -phiX174 3650 3660 440176.46 -phiX174 3660 3680 407570.79 -phiX174 3680 3690 423873.63 -phiX174 3690 3700 342359.47 -phiX174 3700 3710 391267.96 -phiX174 3710 3720 440176.46 -phiX174 3720 3730 635810.44 -phiX174 3730 3740 603204.78 -phiX174 3740 3750 717324.60 -phiX174 3750 3760 684718.93 -phiX174 3760 3780 668416.10 -phiX174 3780 3790 635810.44 -phiX174 3790 3800 505387.79 -phiX174 3800 3810 423873.63 -phiX174 3810 3820 456479.29 -phiX174 3820 3830 440176.46 -phiX174 3830 3840 554296.28 -phiX174 3840 3850 635810.44 -phiX174 3850 3860 782535.93 -phiX174 3860 3870 815141.59 -phiX174 3870 3880 782535.93 -phiX174 3880 3890 733627.43 -phiX174 3890 3900 684718.93 -phiX174 3900 3910 652113.27 -phiX174 3910 3920 603204.78 -phiX174 3920 3930 456479.29 -phiX174 3930 3950 407570.79 -phiX174 3950 3960 440176.46 -phiX174 3960 3970 537993.45 -phiX174 3970 3980 603204.78 -phiX174 3980 3990 570599.11 -phiX174 3990 4000 652113.27 -phiX174 4000 4010 635810.44 -phiX174 4010 4020 619507.61 -phiX174 4020 4030 652113.27 -phiX174 4030 4040 668416.10 -phiX174 4040 4050 554296.28 -phiX174 4050 4060 489084.95 -phiX174 4060 4070 456479.29 -phiX174 4070 4080 407570.79 -phiX174 4080 4090 440176.46 -phiX174 4090 4100 537993.45 -phiX174 4100 4110 407570.79 -phiX174 4110 4120 374965.13 -phiX174 4120 4130 309753.80 -phiX174 4130 4150 374965.13 -phiX174 4150 4160 342359.47 -phiX174 4160 4170 391267.96 -phiX174 4170 4180 277148.14 -phiX174 4180 4190 342359.47 -phiX174 4190 4200 358662.30 -phiX174 4200 4210 374965.13 -phiX174 4210 4230 326056.64 -phiX174 4230 4250 342359.47 -phiX174 4250 4260 391267.96 -phiX174 4260 4280 489084.95 -phiX174 4280 4290 456479.29 -phiX174 4290 4300 472782.12 -phiX174 4300 4310 537993.45 -phiX174 4310 4320 619507.61 -phiX174 4320 4330 586901.94 -phiX174 4330 4340 472782.12 -phiX174 4340 4350 423873.63 -phiX174 4350 4360 440176.46 -phiX174 4360 4380 521690.62 -phiX174 4380 4390 489084.95 -phiX174 4390 4400 456479.29 -phiX174 4400 4410 537993.45 -phiX174 4410 4420 668416.10 -phiX174 4420 4430 717324.60 -phiX174 4430 4440 798838.76 -phiX174 4440 4450 831444.42 -phiX174 4450 4460 815141.59 -phiX174 4460 4470 782535.93 -phiX174 4470 4480 798838.76 -phiX174 4480 4490 701021.77 -phiX174 4490 4500 635810.44 -phiX174 4500 4510 619507.61 -phiX174 4510 4520 472782.12 -phiX174 4520 4540 440176.46 -phiX174 4540 4550 505387.79 -phiX174 4550 4560 489084.95 -phiX174 4560 4570 440176.46 -phiX174 4570 4580 472782.12 -phiX174 4580 4590 423873.63 -phiX174 4590 4600 440176.46 -phiX174 4600 4610 537993.45 -phiX174 4610 4620 521690.62 -phiX174 4620 4630 586901.94 -phiX174 4630 4640 619507.61 -phiX174 4640 4660 701021.77 -phiX174 4660 4670 733627.43 -phiX174 4670 4680 684718.93 -phiX174 4680 4690 619507.61 -phiX174 4690 4700 701021.77 -phiX174 4700 4720 489084.95 -phiX174 4720 4730 407570.79 -phiX174 4730 4740 472782.12 -phiX174 4740 4760 570599.11 -phiX174 4760 4780 603204.78 -phiX174 4780 4790 619507.61 -phiX174 4790 4800 701021.77 -phiX174 4800 4810 684718.93 -phiX174 4810 4820 668416.10 -phiX174 4820 4830 603204.78 -phiX174 4830 4850 635810.44 -phiX174 4850 4860 586901.94 -phiX174 4860 4870 521690.62 -phiX174 4870 4880 505387.79 -phiX174 4880 4890 603204.78 -phiX174 4890 4900 521690.62 -phiX174 4900 4910 489084.95 -phiX174 4910 4920 423873.63 -phiX174 4920 4930 391267.96 -phiX174 4930 4950 358662.30 -phiX174 4950 4960 277148.14 -phiX174 4960 4970 179331.15 -phiX174 4970 4980 244542.48 -phiX174 4980 4990 211936.81 -phiX174 4990 5020 293450.97 -phiX174 5020 5030 358662.30 -phiX174 5030 5040 342359.47 -phiX174 5040 5050 374965.13 -phiX174 5050 5060 309753.80 -phiX174 5060 5070 293450.97 -phiX174 5070 5080 244542.48 -phiX174 5080 5090 309753.80 -phiX174 5090 5100 277148.14 -phiX174 5100 5110 228239.64 -phiX174 5110 5120 260845.31 -phiX174 5120 5130 326056.64 -phiX174 5130 5140 423873.63 -phiX174 5140 5160 505387.79 -phiX174 5160 5170 489084.95 -phiX174 5170 5180 586901.94 -phiX174 5180 5190 570599.11 -phiX174 5190 5200 537993.45 -phiX174 5200 5210 472782.12 -phiX174 5210 5220 456479.29 -phiX174 5220 5230 407570.79 -phiX174 5230 5240 456479.29 -phiX174 5240 5250 374965.13 -phiX174 5250 5260 277148.14 -phiX174 5260 5270 309753.80 -phiX174 5270 5280 342359.47 -phiX174 5280 5290 277148.14 -phiX174 5290 5300 195633.98 -phiX174 5300 5310 146725.49 -phiX174 5310 5340 97816.99 -phiX174 5340 5350 65211.33 -phiX174 5350 5386 32605.66 +phiX174 0 10 16302.8 +phiX174 10 20 48908.5 +phiX174 20 70 146725 +phiX174 70 80 195634 +phiX174 80 90 179331 +phiX174 90 100 163028 +phiX174 100 120 114120 +phiX174 120 140 146725 +phiX174 140 150 163028 +phiX174 150 160 130423 +phiX174 160 170 163028 +phiX174 170 180 179331 +phiX174 180 200 211937 +phiX174 200 210 195634 +phiX174 210 220 244542 +phiX174 220 230 277148 +phiX174 230 240 342359 +phiX174 240 250 326057 +phiX174 250 260 293451 +phiX174 260 270 342359 +phiX174 270 280 407571 +phiX174 280 300 423874 +phiX174 300 310 358662 +phiX174 310 320 326057 +phiX174 320 330 374965 +phiX174 330 340 358662 +phiX174 340 350 293451 +phiX174 350 360 260845 +phiX174 360 370 228240 +phiX174 370 380 244542 +phiX174 380 390 309754 +phiX174 390 400 260845 +phiX174 400 410 244542 +phiX174 410 420 228240 +phiX174 420 450 293451 +phiX174 450 460 309754 +phiX174 460 470 342359 +phiX174 470 490 423874 +phiX174 490 510 505388 +phiX174 510 520 472782 +phiX174 520 530 570599 +phiX174 530 540 505388 +phiX174 540 550 537993 +phiX174 550 560 554296 +phiX174 560 570 652113 +phiX174 570 580 635810 +phiX174 580 590 570599 +phiX174 590 600 619508 +phiX174 600 610 554296 +phiX174 610 630 635810 +phiX174 630 640 586902 +phiX174 640 650 521691 +phiX174 650 660 554296 +phiX174 660 670 570599 +phiX174 670 680 603205 +phiX174 680 690 668416 +phiX174 690 700 652113 +phiX174 700 710 570599 +phiX174 710 730 603205 +phiX174 730 740 521691 +phiX174 740 760 603205 +phiX174 760 770 505388 +phiX174 770 780 521691 +phiX174 780 790 537993 +phiX174 790 800 554296 +phiX174 800 810 456479 +phiX174 810 820 440176 +phiX174 820 830 374965 +phiX174 830 840 326057 +phiX174 840 850 358662 +phiX174 850 860 309754 +phiX174 860 870 342359 +phiX174 870 880 260845 +phiX174 880 890 358662 +phiX174 890 900 391268 +phiX174 900 910 472782 +phiX174 910 920 554296 +phiX174 920 930 570599 +phiX174 930 940 554296 +phiX174 940 950 586902 +phiX174 950 960 603205 +phiX174 960 970 521691 +phiX174 970 980 489085 +phiX174 980 990 440176 +phiX174 990 1000 423874 +phiX174 1000 1010 456479 +phiX174 1010 1030 586902 +phiX174 1030 1040 766233 +phiX174 1040 1050 798839 +phiX174 1050 1060 831444 +phiX174 1060 1070 880353 +phiX174 1070 1080 847747 +phiX174 1080 1090 880353 +phiX174 1090 1100 782536 +phiX174 1100 1110 749930 +phiX174 1110 1120 668416 +phiX174 1120 1130 652113 +phiX174 1130 1140 635810 +phiX174 1140 1150 684719 +phiX174 1150 1160 635810 +phiX174 1160 1170 603205 +phiX174 1170 1180 619508 +phiX174 1180 1190 586902 +phiX174 1190 1200 521691 +phiX174 1200 1210 489085 +phiX174 1210 1220 570599 +phiX174 1220 1230 489085 +phiX174 1230 1240 456479 +phiX174 1240 1250 358662 +phiX174 1250 1260 342359 +phiX174 1260 1270 407571 +phiX174 1270 1280 358662 +phiX174 1280 1290 374965 +phiX174 1290 1300 326057 +phiX174 1300 1310 391268 +phiX174 1310 1320 521691 +phiX174 1320 1330 505388 +phiX174 1330 1340 521691 +phiX174 1340 1350 489085 +phiX174 1350 1370 505388 +phiX174 1370 1390 472782 +phiX174 1390 1400 358662 +phiX174 1400 1410 456479 +phiX174 1410 1430 489085 +phiX174 1430 1450 554296 +phiX174 1450 1460 570599 +phiX174 1460 1470 586902 +phiX174 1470 1480 619508 +phiX174 1480 1490 603205 +phiX174 1490 1500 554296 +phiX174 1500 1510 668416 +phiX174 1510 1520 635810 +phiX174 1520 1540 798839 +phiX174 1540 1550 733627 +phiX174 1550 1570 766233 +phiX174 1570 1580 782536 +phiX174 1580 1590 684719 +phiX174 1590 1600 635810 +phiX174 1600 1610 570599 +phiX174 1610 1620 537993 +phiX174 1620 1630 505388 +phiX174 1630 1640 472782 +phiX174 1640 1650 489085 +phiX174 1650 1660 505388 +phiX174 1660 1670 537993 +phiX174 1670 1680 603205 +phiX174 1680 1690 521691 +phiX174 1690 1700 537993 +phiX174 1700 1710 603205 +phiX174 1710 1720 554296 +phiX174 1720 1730 537993 +phiX174 1730 1740 586902 +phiX174 1740 1750 537993 +phiX174 1750 1760 440176 +phiX174 1760 1770 423874 +phiX174 1770 1780 374965 +phiX174 1780 1790 358662 +phiX174 1790 1810 342359 +phiX174 1810 1820 326057 +phiX174 1820 1830 472782 +phiX174 1830 1860 717325 +phiX174 1860 1870 815142 +phiX174 1870 1880 749930 +phiX174 1880 1890 684719 +phiX174 1890 1900 717325 +phiX174 1900 1910 619508 +phiX174 1910 1920 407571 +phiX174 1920 1930 472782 +phiX174 1930 1940 554296 +phiX174 1940 1950 456479 +phiX174 1950 1960 489085 +phiX174 1960 1970 537993 +phiX174 1970 1980 684719 +phiX174 1980 1990 652113 +phiX174 1990 2000 668416 +phiX174 2000 2010 684719 +phiX174 2010 2020 652113 +phiX174 2020 2030 668416 +phiX174 2030 2050 684719 +phiX174 2050 2060 489085 +phiX174 2060 2070 521691 +phiX174 2070 2080 489085 +phiX174 2080 2100 521691 +phiX174 2100 2110 537993 +phiX174 2110 2120 521691 +phiX174 2120 2130 537993 +phiX174 2130 2140 554296 +phiX174 2140 2150 521691 +phiX174 2150 2160 554296 +phiX174 2160 2170 423874 +phiX174 2170 2180 358662 +phiX174 2180 2190 440176 +phiX174 2190 2200 456479 +phiX174 2200 2210 440176 +phiX174 2210 2220 489085 +phiX174 2220 2230 554296 +phiX174 2230 2240 603205 +phiX174 2240 2250 635810 +phiX174 2250 2260 733627 +phiX174 2260 2270 635810 +phiX174 2270 2290 603205 +phiX174 2290 2300 619508 +phiX174 2300 2310 749930 +phiX174 2310 2320 782536 +phiX174 2320 2330 880353 +phiX174 2330 2340 864050 +phiX174 2340 2350 912959 +phiX174 2350 2360 815142 +phiX174 2360 2370 929261 +phiX174 2370 2380 815142 +phiX174 2380 2390 652113 +phiX174 2390 2400 603205 +phiX174 2400 2410 423874 +phiX174 2410 2420 407571 +phiX174 2420 2430 358662 +phiX174 2430 2440 489085 +phiX174 2440 2450 456479 +phiX174 2450 2460 619508 +phiX174 2460 2470 684719 +phiX174 2470 2480 749930 +phiX174 2480 2490 766233 +phiX174 2490 2500 782536 +phiX174 2500 2510 798839 +phiX174 2510 2520 652113 +phiX174 2520 2530 668416 +phiX174 2530 2540 537993 +phiX174 2540 2550 472782 +phiX174 2550 2560 391268 +phiX174 2560 2570 440176 +phiX174 2570 2590 472782 +phiX174 2590 2600 456479 +phiX174 2600 2620 537993 +phiX174 2620 2630 554296 +phiX174 2630 2640 701022 +phiX174 2640 2650 635810 +phiX174 2650 2660 570599 +phiX174 2660 2670 554296 +phiX174 2670 2680 619508 +phiX174 2680 2700 668416 +phiX174 2700 2710 635810 +phiX174 2710 2720 603205 +phiX174 2720 2740 668416 +phiX174 2740 2750 831444 +phiX174 2750 2760 880353 +phiX174 2760 2770 864050 +phiX174 2770 2780 896656 +phiX174 2780 2790 978170 +phiX174 2790 2800 831444 +phiX174 2800 2810 847747 +phiX174 2810 2820 815142 +phiX174 2820 2830 684719 +phiX174 2830 2840 717325 +phiX174 2840 2860 635810 +phiX174 2860 2870 619508 +phiX174 2870 2880 717325 +phiX174 2880 2890 668416 +phiX174 2890 2900 619508 +phiX174 2900 2910 668416 +phiX174 2910 2930 570599 +phiX174 2930 2940 521691 +phiX174 2940 2950 570599 +phiX174 2950 2960 505388 +phiX174 2960 2970 586902 +phiX174 2970 2980 603205 +phiX174 2980 2990 521691 +phiX174 2990 3000 537993 +phiX174 3000 3010 570599 +phiX174 3010 3020 521691 +phiX174 3020 3030 472782 +phiX174 3030 3040 440176 +phiX174 3040 3050 423874 +phiX174 3050 3060 554296 +phiX174 3060 3070 570599 +phiX174 3070 3080 635810 +phiX174 3080 3100 586902 +phiX174 3100 3110 733627 +phiX174 3110 3120 684719 +phiX174 3120 3130 652113 +phiX174 3130 3140 619508 +phiX174 3140 3160 684719 +phiX174 3160 3180 782536 +phiX174 3180 3190 717325 +phiX174 3190 3200 668416 +phiX174 3200 3210 684719 +phiX174 3210 3220 749930 +phiX174 3220 3230 668416 +phiX174 3230 3240 717325 +phiX174 3240 3250 635810 +phiX174 3250 3260 554296 +phiX174 3260 3270 603205 +phiX174 3270 3280 635810 +phiX174 3280 3290 586902 +phiX174 3290 3300 537993 +phiX174 3300 3310 521691 +phiX174 3310 3320 537993 +phiX174 3320 3330 619508 +phiX174 3330 3340 668416 +phiX174 3340 3370 652113 +phiX174 3370 3390 668416 +phiX174 3390 3400 586902 +phiX174 3400 3430 489085 +phiX174 3430 3440 521691 +phiX174 3440 3450 619508 +phiX174 3450 3460 586902 +phiX174 3460 3480 684719 +phiX174 3480 3490 733627 +phiX174 3490 3500 847747 +phiX174 3500 3510 815142 +phiX174 3510 3520 912959 +phiX174 3520 3530 782536 +phiX174 3530 3540 766233 +phiX174 3540 3550 798839 +phiX174 3550 3560 766233 +phiX174 3560 3570 701022 +phiX174 3570 3580 505388 +phiX174 3580 3590 472782 +phiX174 3590 3610 440176 +phiX174 3610 3620 423874 +phiX174 3620 3630 407571 +phiX174 3630 3640 391268 +phiX174 3640 3650 358662 +phiX174 3650 3660 440176 +phiX174 3660 3680 407571 +phiX174 3680 3690 423874 +phiX174 3690 3700 342359 +phiX174 3700 3710 391268 +phiX174 3710 3720 440176 +phiX174 3720 3730 635810 +phiX174 3730 3740 603205 +phiX174 3740 3750 717325 +phiX174 3750 3760 684719 +phiX174 3760 3780 668416 +phiX174 3780 3790 635810 +phiX174 3790 3800 505388 +phiX174 3800 3810 423874 +phiX174 3810 3820 456479 +phiX174 3820 3830 440176 +phiX174 3830 3840 554296 +phiX174 3840 3850 635810 +phiX174 3850 3860 782536 +phiX174 3860 3870 815142 +phiX174 3870 3880 782536 +phiX174 3880 3890 733627 +phiX174 3890 3900 684719 +phiX174 3900 3910 652113 +phiX174 3910 3920 603205 +phiX174 3920 3930 456479 +phiX174 3930 3950 407571 +phiX174 3950 3960 440176 +phiX174 3960 3970 537993 +phiX174 3970 3980 603205 +phiX174 3980 3990 570599 +phiX174 3990 4000 652113 +phiX174 4000 4010 635810 +phiX174 4010 4020 619508 +phiX174 4020 4030 652113 +phiX174 4030 4040 668416 +phiX174 4040 4050 554296 +phiX174 4050 4060 489085 +phiX174 4060 4070 456479 +phiX174 4070 4080 407571 +phiX174 4080 4090 440176 +phiX174 4090 4100 537993 +phiX174 4100 4110 407571 +phiX174 4110 4120 374965 +phiX174 4120 4130 309754 +phiX174 4130 4150 374965 +phiX174 4150 4160 342359 +phiX174 4160 4170 391268 +phiX174 4170 4180 277148 +phiX174 4180 4190 342359 +phiX174 4190 4200 358662 +phiX174 4200 4210 374965 +phiX174 4210 4230 326057 +phiX174 4230 4250 342359 +phiX174 4250 4260 391268 +phiX174 4260 4280 489085 +phiX174 4280 4290 456479 +phiX174 4290 4300 472782 +phiX174 4300 4310 537993 +phiX174 4310 4320 619508 +phiX174 4320 4330 586902 +phiX174 4330 4340 472782 +phiX174 4340 4350 423874 +phiX174 4350 4360 440176 +phiX174 4360 4380 521691 +phiX174 4380 4390 489085 +phiX174 4390 4400 456479 +phiX174 4400 4410 537993 +phiX174 4410 4420 668416 +phiX174 4420 4430 717325 +phiX174 4430 4440 798839 +phiX174 4440 4450 831444 +phiX174 4450 4460 815142 +phiX174 4460 4470 782536 +phiX174 4470 4480 798839 +phiX174 4480 4490 701022 +phiX174 4490 4500 635810 +phiX174 4500 4510 619508 +phiX174 4510 4520 472782 +phiX174 4520 4540 440176 +phiX174 4540 4550 505388 +phiX174 4550 4560 489085 +phiX174 4560 4570 440176 +phiX174 4570 4580 472782 +phiX174 4580 4590 423874 +phiX174 4590 4600 440176 +phiX174 4600 4610 537993 +phiX174 4610 4620 521691 +phiX174 4620 4630 586902 +phiX174 4630 4640 619508 +phiX174 4640 4660 701022 +phiX174 4660 4670 733627 +phiX174 4670 4680 684719 +phiX174 4680 4690 619508 +phiX174 4690 4700 701022 +phiX174 4700 4720 489085 +phiX174 4720 4730 407571 +phiX174 4730 4740 472782 +phiX174 4740 4760 570599 +phiX174 4760 4780 603205 +phiX174 4780 4790 619508 +phiX174 4790 4800 701022 +phiX174 4800 4810 684719 +phiX174 4810 4820 668416 +phiX174 4820 4830 603205 +phiX174 4830 4850 635810 +phiX174 4850 4860 586902 +phiX174 4860 4870 521691 +phiX174 4870 4880 505388 +phiX174 4880 4890 603205 +phiX174 4890 4900 521691 +phiX174 4900 4910 489085 +phiX174 4910 4920 423874 +phiX174 4920 4930 391268 +phiX174 4930 4950 358662 +phiX174 4950 4960 277148 +phiX174 4960 4970 179331 +phiX174 4970 4980 244542 +phiX174 4980 4990 211937 +phiX174 4990 5020 293451 +phiX174 5020 5030 358662 +phiX174 5030 5040 342359 +phiX174 5040 5050 374965 +phiX174 5050 5060 309754 +phiX174 5060 5070 293451 +phiX174 5070 5080 244542 +phiX174 5080 5090 309754 +phiX174 5090 5100 277148 +phiX174 5100 5110 228240 +phiX174 5110 5120 260845 +phiX174 5120 5130 326057 +phiX174 5130 5140 423874 +phiX174 5140 5160 505388 +phiX174 5160 5170 489085 +phiX174 5170 5180 586902 +phiX174 5180 5190 570599 +phiX174 5190 5200 537993 +phiX174 5200 5210 472782 +phiX174 5210 5220 456479 +phiX174 5220 5230 407571 +phiX174 5230 5240 456479 +phiX174 5240 5250 374965 +phiX174 5250 5260 277148 +phiX174 5260 5270 309754 +phiX174 5270 5280 342359 +phiX174 5280 5290 277148 +phiX174 5290 5300 195634 +phiX174 5300 5310 146725 +phiX174 5310 5340 97817 +phiX174 5340 5350 65211.3 +phiX174 5350 5386 32605.7
--- a/test-data/bigwigCompare_result2.bg Tue Oct 25 19:05:49 2016 -0400 +++ b/test-data/bigwigCompare_result2.bg Mon Dec 05 08:06:43 2016 -0500 @@ -1,3 +1,3 @@ -ch1 0 400 1.0 -ch2 0 400 1.0 -ch3 0 400 1.0 +ch1 0 400 1 +ch2 0 400 1 +ch3 0 400 1
--- a/test-data/computeGCBias_result1.tabular Tue Oct 25 19:05:49 2016 -0400 +++ b/test-data/computeGCBias_result1.tabular Mon Dec 05 08:06:43 2016 -0500 @@ -1,12 +1,3 @@ -0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 @@ -94,6 +85,7 @@ 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 @@ -103,13 +95,11 @@ 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 @@ -128,9 +118,18 @@ 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 +5.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+01 +0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 @@ -299,3 +298,4 @@ 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/computeMatrixOperations.txt Mon Dec 05 08:06:43 2016 -0500 @@ -0,0 +1,4 @@ +Groups: + genes +Samples: + file_0
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/plotFingerprint_quality_metrics.tabular Mon Dec 05 08:06:43 2016 -0500 @@ -0,0 +1,3 @@ +Sample AUC Synthetic AUC X-intercept Synthetic X-intercept Elbow Point Synthetic Elbow Point JS Distance Synthetic JS Distance % genome enriched diff. enrichment CHANCE divergence +bowtie2 test1.bam 0.00493632029864 0.481650684758 0.984443061605 1.15310443503e-24 0.984940883634 0.523268829811 NA 0.269861238192 NA NA NA +bowtie2 test1.bam 0.00493632029864 0.481650684758 0.984443061605 1.15310443503e-24 0.984940883634 0.523268829811 NA 0.269861238192 NA NA NA
--- a/test-data/plotFingerprint_result2.tabular Tue Oct 25 19:05:49 2016 -0400 +++ b/test-data/plotFingerprint_result2.tabular Mon Dec 05 08:06:43 2016 -0500 @@ -1,254 +1,254 @@ 'bowtie2 test1.bam' 'bowtie2 test1.bam' -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -33 33 -33 33 -33 33 -33 33 -33 33 -33 33 -33 33 -33 33 -33 33 -33 33 -33 33 -33 33 -27 27 -25 25 +1085 1085 +1782 1782 +2706 2706 +3570 3570 +6753 6753 +8069 8069 +8034 8034 +7999 7999 +7964 7964 +7929 7929 +7894 7894 +7859 7859 +7824 7824 +7789 7789 +7754 7754 +7719 7719 +7684 7684 +7649 7649 +7614 7614 +7579 7579 +7544 7544 +7509 7509 +7474 7474 +7439 7439 +7404 7404 +7369 7369 +7334 7334 +7299 7299 +7264 7264 +7229 7229 +7194 7194 +7159 7159 +7124 7124 +7089 7089 +7054 7054 +7019 7019 +6984 6984 +6949 6949 +6914 6914 +6879 6879 +6844 6844 +6809 6809 +6774 6774 +6739 6739 +6704 6704 +6669 6669 +6634 6634 +6599 6599 +6564 6564 +6529 6529 +6494 6494 +6459 6459 +6424 6424 +6389 6389 +6354 6354 +6319 6319 +6284 6284 +6249 6249 +6214 6214 +6179 6179 +6144 6144 +6109 6109 +6074 6074 +6039 6039 +6004 6004 +5969 5969 +5934 5934 +5899 5899 +5864 5864 +5829 5829 +5794 5794 +5759 5759 +5724 5724 +5689 5689 +5654 5654 +5619 5619 +5584 5584 +5549 5549 +5514 5514 +5479 5479 +5444 5444 +5409 5409 +5374 5374 +5339 5339 +5304 5304 +5269 5269 +5234 5234 +5199 5199 +5164 5164 +5129 5129 +5094 5094 +5059 5059 +5024 5024 +4989 4989 +4954 4954 +4919 4919 +4884 4884 +4849 4849 +4814 4814 +4779 4779 +4744 4744 +4709 4709 +4674 4674 +4639 4639 +4604 4604 +4569 4569 +4534 4534 +4499 4499 +4464 4464 +4429 4429 +4394 4394 +4359 4359 +4324 4324 +4289 4289 +4254 4254 +4219 4219 +4184 4184 +4149 4149 +4114 4114 +4079 4079 +4044 4044 +4009 4009 +3974 3974 +3939 3939 +3904 3904 +3869 3869 +3834 3834 +3799 3799 +3764 3764 +3729 3729 +3694 3694 +3659 3659 +3624 3624 +3589 3589 +3554 3554 +3519 3519 +3484 3484 +3449 3449 +3414 3414 +3379 3379 +3344 3344 +3309 3309 +3274 3274 +3239 3239 +3204 3204 +3169 3169 +3134 3134 +3099 3099 +3064 3064 +3029 3029 +2994 2994 +2959 2959 +2924 2924 +2889 2889 +2854 2854 +2819 2819 +2784 2784 +2749 2749 +2714 2714 +2679 2679 +2644 2644 +2609 2609 +2574 2574 +2539 2539 +2504 2504 +2469 2469 +2434 2434 +2399 2399 +2364 2364 +2329 2329 +2294 2294 +2259 2259 +2224 2224 +2189 2189 +2154 2154 +2119 2119 +2084 2084 +2049 2049 +2014 2014 +1979 1979 +1944 1944 +1909 1909 +1874 1874 +1839 1839 +1804 1804 +1769 1769 +1734 1734 +1699 1699 +1664 1664 +1629 1629 +1594 1594 +1559 1559 +1524 1524 +1489 1489 +1454 1454 +1419 1419 +1384 1384 +1349 1349 +1314 1314 +1279 1279 +1244 1244 +1209 1209 +1174 1174 +1139 1139 +1104 1104 +1069 1069 +1034 1034 +999 999 +964 964 +929 929 +894 894 +859 859 +824 824 +789 789 +754 754 +719 719 +684 684 +651 651 +618 618 +585 585 +552 552 +519 519 +486 486 +453 453 +420 420 +387 387 +354 354 +321 321 +288 288 +261 261 +236 236 +227 227 +206 206 +186 186 +167 167 +160 160 +141 141 +124 124 +107 107 +92 92 +77 77 +62 62 +52 52 +45 45 +38 38 +31 31 24 24 -21 21 -20 20 -19 19 -19 19 -19 19 -17 17 -17 17 -15 15 -15 15 -15 15 -10 10 -7 7 -7 7 -7 7 -7 7 -6 6 -5 5 -5 5 -5 5 +18 18 +13 13 +8 8 3 3 0 0 0 0
--- a/tool_dependencies.xml Tue Oct 25 19:05:49 2016 -0400 +++ b/tool_dependencies.xml Mon Dec 05 08:06:43 2016 -0500 @@ -3,7 +3,7 @@ <package name="python" version="2.7.10"> <repository changeset_revision="0339c4a9b87b" name="package_python_2_7_10" owner="iuc" prior_installation_required="True" toolshed="https://toolshed.g2.bx.psu.edu" /> </package> - <package name="deepTools" version="2.3.6"> - <repository changeset_revision="05f46fef1ea5" name="package_python_2_7_deeptools_2_3_6" owner="iuc" toolshed="https://toolshed.g2.bx.psu.edu" /> + <package name="deeptools" version="2.4.1"> + <repository changeset_revision="e9855a43ac53" name="package_python_2_7_deeptools_2_4_1" owner="iuc" toolshed="https://toolshed.g2.bx.psu.edu" /> </package> </tool_dependency>