Repository 'deeptools_correct_gc_bias'
hg clone https://toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_correct_gc_bias

Changeset 0:748076af9837 (2016-01-25)
Next changeset 1:4930eb430843 (2016-02-15)
Commit message:
planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 0a9265a12a303b54cdaa974e82e87c2ac60962ee-dirty
added:
correctGCBias.xml
datatypes_conf.xml
deepTools_macros.xml
readme.rst
repository_dependencies.xml
static/images/QC_GCplots_input.png
static/images/QC_fingerprint.png
static/images/QC_multiBamSummary_humanSamples.png
static/images/bamFP_galaxy_output.png
static/images/flowChart_computeMatrixetc.png
static/images/norm_IGVsnapshot_indFiles.png
static/images/plotCorrelation_galaxy_bw_heatmap_output.png
static/images/visual_hm_DmelPolII.png
static/images/visual_profiler_DmelPolII.png
test-data/bamCompare_result1.bg
test-data/bamCompare_result2.bw
test-data/bamCoverage_result1.bw
test-data/bamCoverage_result2.bw
test-data/bamCoverage_result3.bg
test-data/bamCoverage_result4.bg
test-data/bamCoverage_result4.bw
test-data/bamPEFragmentSize_histogram_result1.png
test-data/bamPEFragmentSize_result1.txt
test-data/bigwigCompare_result1.bw
test-data/bigwigCompare_result2.bg
test-data/bowtie2-test1.bam
test-data/computeGCBias_result1.png
test-data/computeGCBias_result1.tabular
test-data/computeMatrix1.bed
test-data/computeMatrix2.bed
test-data/computeMatrix2.bw
test-data/computeMatrix_result1.gz
test-data/computeMatrix_result2.gz
test-data/computeMatrix_result3.gz
test-data/correctGCBias_result1.bam
test-data/heatmapper_result1.png
test-data/heatmapper_result2.png
test-data/multiBamSummary_regions.bed
test-data/multiBamSummary_result1.npz
test-data/multiBamSummary_result2.npz
test-data/multiBigwigSummary_result1.npz
test-data/multiBigwigSummary_result1.png
test-data/paired_chr2L.bam
test-data/phiX.2bit
test-data/phiX.bam
test-data/phiX.bam.bai
test-data/phiX.fasta
test-data/plotCorrelation_result1.png
test-data/plotCorrelation_result1.tabular
test-data/plotCorrelation_result2.png
test-data/plotCoverage_result1.png
test-data/plotCoverage_result1.tabular
test-data/plotFingerprint_result1.png
test-data/plotFingerprint_result2.png
test-data/plotFingerprint_result2.tabular
test-data/plotPCA_result1.png
test-data/profiler_result1.png
test-data/profiler_result2.png
test-data/sequence.2bit
test-data/test.bw
tool-data/deepTools_seqs.loc.sample
tool-data/lastz_seqs.loc.sample
tool_data_table_conf.xml.sample
tool_dependencies.xml
b
diff -r 000000000000 -r 748076af9837 correctGCBias.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/correctGCBias.xml Mon Jan 25 20:23:49 2016 -0500
[
@@ -0,0 +1,75 @@
+<tool id="deeptools_correct_gc_bias" name="correctGCBias" version="@WRAPPER_VERSION@.0">
+    <description>uses the output from computeGCBias to generate GC-corrected BAM files</description>
+    <macros>
+        <token name="@BINARY@">correctGCBias</token>
+        <import>deepTools_macros.xml</import>
+    </macros>
+    <expand macro="requirements" />
+    <command>
+<![CDATA[
+        ln -s "$bamInput" "local_bamInput.bam" &&
+        ln -s "$bamInput.metadata.bam_index" local_bamInput.bam.bai &&
+
+        @BINARY@
+            @THREADS@
+            --bamfile local_bamInput.bam
+            --GCbiasFrequenciesFile "$GCbiasFrequenciesFile"
+
+            @reference_genome_source@
+
+            #if $effectiveGenomeSize.effectiveGenomeSize_opt == "specific":
+                --effectiveGenomeSize $effectiveGenomeSize.effectiveGenomeSize
+            #else:
+                --effectiveGenomeSize $effectiveGenomeSize.effectiveGenomeSize_opt
+            #end if
+
+            #if str($region).strip() != '':
+                --region '$region'
+            #end if
+            --correctedFile corrected.bam
+]]>
+    </command>
+    <inputs>
+        <param argument="--GCbiasFrequenciesFile" type="data" format="tabular" label="Output of computeGCBias" help="" />
+        <param argument="--bamInput" format="bam" type="data"
+            label="BAM file" help="This should be same file that was used for computeGCbias. The BAM file must be sorted." />
+        <expand macro="reference_genome_source" />
+        <expand macro="effectiveGenomeSize" />
+        <expand macro="region_limit_operation" />
+    </inputs>
+    <outputs>
+        <data format="bam" from_work_dir="corrected.bam" name="outFileName" />
+    </outputs>
+    <tests>
+        <test>
+            <param name="GCbiasFrequenciesFile" value="computeGCBias_result1.tabular" ftype="tabular" />
+            <param name="bamInput" value="paired_chr2L.bam" ftype="bam" />
+            <param name="ref_source" value="history" />
+            <param name="input1" value="sequence.2bit" />
+            <param name="effectiveGenomeSize_opt" value="specific" />
+            <param name="effectiveGenomeSize" value="23011544" />
+            <output name="outFileName" file="correctGCBias_result1.bam" ftype="bam" />
+        </test>
+    </tests>
+    <help>
+<![CDATA[
+**What it does**
+
+This tool requires the output from computeGCBias to correct a given BAM file according to the method proposed in
+Benjamini and Speed (2012) Nucleic Acids Res.
+The resulting BAM file can be used in any downstream analyses, but be aware that you should not filter out duplicates from here on.
+
+You can find more details on the correctGCBias doc page: https://deeptools.readthedocs.org/en/master/content/tools/correctGCBias.html
+
+
+**Output files**:
+
+- GC-normalized BAM file
+
+-----
+
+@REFERENCES@
+]]>
+    </help>
+    <expand macro="citations" />
+</tool>
b
diff -r 000000000000 -r 748076af9837 datatypes_conf.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/datatypes_conf.xml Mon Jan 25 20:23:49 2016 -0500
b
@@ -0,0 +1,7 @@
+<?xml version="1.0"?>
+<datatypes>
+    <registration>
+        <datatype extension="deeptools_compute_matrix_archive" type="galaxy.datatypes.binary:CompressedArchive" subclass="True" display_in_upload="True"/>
+        <datatype extension="deeptools_coverage_matrix" type="galaxy.datatypes.binary:CompressedArchive" subclass="True" display_in_upload="True"/>
+    </registration>
+</datatypes>
b
diff -r 000000000000 -r 748076af9837 deepTools_macros.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/deepTools_macros.xml Mon Jan 25 20:23:49 2016 -0500
b
b'@@ -0,0 +1,615 @@\n+<macros>\n+\n+    <xml name="advancedOpt_scaffold">\n+        <conditional name="advancedOpt">\n+            <param name="showAdvancedOpt" type="select" label="Show advanced options" >\n+                <option value="no" selected="true">no</option>\n+                <option value="yes">yes</option>\n+            </param>\n+            <when value="no" />\n+            <when value="yes">\n+                <yield/>\n+            </when>\n+        </conditional>\n+    </xml>\n+\n+    <token name="@ADVANCED_OPTS_READ_PROCESSING@">\n+        #if $advancedOpt.doExtendCustom.doExtend == \'custom\':\n+            --extendReads $advancedOpt.doExtendCustom.extendReadsValue\n+        #else if $advancedOpt.doExtendCustom.doExtend == \'yes\':\n+            --extendReads\n+        #end if\n+        $advancedOpt.ignoreDuplicates\n+        $advancedOpt.centerReads\n+        #if $advancedOpt.minMappingQuality:\n+            --minMappingQuality \'$advancedOpt.minMappingQuality\'\n+        #end if\n+        #if $advancedOpt.samFlagInclude:\n+            --samFlagInclude $advancedOpt.samFlagInclude\n+        #end if\n+        #if $advancedOpt.samFlagExclude:\n+            --samFlagExclude $advancedOpt.samFlagExclude\n+        #end if\n+    </token>\n+\n+    <xml name="heatmap_options">\n+        <expand macro="zMin_zMax" />\n+        <expand macro="colorMap" />\n+        <expand macro="plotTitle" />\n+        <expand macro="plotNumbers" />\n+    </xml>\n+\n+    <token name="@HEATMAP_OPTIONS@">\n+        #if str($plotting_type.zMin) != "":\n+            --zMin $plotting_type.zMin\n+        #end if\n+        #if str($plotting_type.zMax) != "":\n+            --zMax $plotting_type.zMax\n+        #end if\n+        --colorMap \'$plotting_type.colorMap\'\n+        $plotting_type.plotNumbers\n+        --plotTitle \'$plotting_type.plotTitle\'\n+    </token>\n+\n+\n+    <xml name="includeZeros">\n+        <param argument="--includeZeros" type="boolean" truevalue="--includeZeros" falsevalue=""\n+            label="Include zeros"\n+            help="If set, then regions with zero counts for *all* BAM files are included. The default behavior is to ignore such regions." />\n+    </xml>\n+\n+    <xml name="zMin_zMax">\n+        <param argument="--zMin" type="float" value="" optional="true" label="Minimum value for the heatmap intensities"\n+            help="If not specified the value is set automatically."/>\n+        <param argument="--zMax" type="float" value="" optional="true" label="Maximum value for the heatmap intensities"\n+            help="If not specified the value is set automatically."/>\n+    </xml>\n+\n+    <xml name="region_limit_operation">\n+        <param argument="--region" type="text" value=""\n+            label="Region of the genome to limit the operation to"\n+            help="This is useful when testing parameters to reduce the time required. The format is chr:start:end, for example &quot;chr10&quot; or &quot;chr10:456700:891000&quot;." />\n+    </xml>\n+\n+    <token name="@THREADS@">--numberOfProcessors "\\${GALAXY_SLOTS:-4}"</token>\n+    <token name="@WRAPPER_VERSION@">2.0.1</token>\n+    <xml name="requirements">\n+        <requirements>\n+            <requirement type="package" version="2.7.10">python</requirement>\n+            <requirement type="binary">@BINARY@</requirement>\n+            <requirement type="package" version="2.0.1">deepTools</requirement>\n+            <yield />\n+        </requirements>\n+        <expand macro="stdio" />\n+        <version_command>@BINARY@ --version</version_command>\n+    </xml>\n+\n+    <xml name="smoothLength">\n+        <param argument="--smoothLength" type="integer" value="" optional="True" min="1"\n+            label="Smooth values using the following length (in bases)"\n+            help ="The smooth length defines a window, larger than the bin size, over which the number of reads is to be averaged. For example, if the bin size is set to 20 and the smooth length is 60, then, for each bin, its value is set to the average of it and its left and right neighbors. Any'..b'k2 reversed</option>\n+            <option value="Reds_r">Reds reversed</option>\n+            <option value="Oranges_r">Oranges reversed</option>\n+            <option value="Greens_r">Greens reversed</option>\n+            <option value="Blues_r">Blues reversed</option>\n+            <option value="Greys_r">Greys reversed</option>\n+            <option value="Purples_r">Purples reversed</option>\n+            <option value="Paired_r">Paired reversed</option>\n+            <option value="Pastel1_r">Pastel1 reversed</option>\n+            <option value="Pastel2_r">Pastel2 reversed</option>\n+            <option value="spring_r">spring reversed</option>\n+            <option value="summer_r">summer reversed</option>\n+            <option value="autumn_r">autumn reversed</option>\n+            <option value="winter_r">winter reversed</option>\n+            <option value="hot_r">hot reversed</option>\n+            <option value="coolwarm_r">coolwarm reversed</option>\n+            <option value="cool_r">cool reversed</option>\n+            <option value="seismic_r">seismic reversed</option>\n+            <option value="terrain_r">terrain reversed</option>\n+            <option value="ocean_r">ocean reversed</option>\n+            <option value="rainbow_r">rainbow reversed</option>\n+            <option value="bone_r">bone reversed</option>\n+            <option value="flag_r">flag reversed</option>\n+            <option value="prism_r">prism reversed</option>\n+            <option value="cubehelix_r">cubehelix reversed</option>\n+            <option value="binary_r">binary reversed</option>\n+            <option value="pink_r">pink reversed</option>\n+            <option value="gray_r">gray reversed</option>\n+            <option value="copper_r">copper reversed</option>\n+            <option value="BrBG_r">BrBG reversed</option>\n+            <option value="BuGn_r">BuGn reversed</option>\n+            <option value="BuPu_r">BuPu reversed</option>\n+            <option value="GnBu_r">GnBu reversed</option>\n+            <option value="OrRd_r">OrRd reversed</option>\n+            <option value="PiYG_r">PiYG reversed</option>\n+            <option value="PRGn_r">PRGn reversed</option>\n+            <option value="PuOr_r">PuOr reversed</option>\n+            <option value="PuRd_r">PuRd reversed</option>\n+            <option value="PuBu_r">PuBu reversed</option>\n+            <option value="RdBu_r">RdBu reversed</option>\n+            <option value="RdGy_r">RdGy reversed</option>\n+            <option value="RdPu_r">RdPu reversed</option>\n+            <option value="YlGn_r">YlGn reversed</option>\n+            <option value="PuBuGn_r">PuBuGn reversed</option>\n+            <option value="RdYlBu_r">RdYlBu reversed</option>\n+            <option value="RdYlGn_r">RdYlGn reversed</option>\n+            <option value="YlGnBu_r">YlGnBu reversed</option>\n+            <option value="YlOrBr_r">YlOrBr reversed</option>\n+            <option value="YlOrRd_r">YlOrRd reversed</option>\n+            <option value="gist_gray_r">gist_gray reversed</option>\n+            <option value="gist_stern_r">gist_stern reversed</option>\n+            <option value="gist_earth_r">gist_earth reversed</option>\n+            <option value="gist_yarg_r">gist_yarg reversed</option>\n+            <option value="gist_ncar_r">gist_ncar reversed</option>\n+            <option value="gist_rainbow_r">gist_rainbow reversed</option>\n+            <option value="gist_heat_r">gist_heat reversed</option>\n+            <option value="gnuplot_r">gnuplot reversed</option>\n+            <option value="gnuplot2_r">gnuplot2 reversed</option>\n+            <option value="CMRmap_r">CMRmap reversed</option>\n+            <option value="bwr_r">bwr reversed</option>\n+            <option value="hsv_r">hsv reversed</option>\n+            <option value="brg_r">brg reversed</option>\n+            <option value="jet_r">jet reversed</option>\n+            <option value="afmhot_r">afmhot reversed</option>\n+        </param>\n+\n+    </xml>\n+\n+</macros>\n'
b
diff -r 000000000000 -r 748076af9837 readme.rst
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/readme.rst Mon Jan 25 20:23:49 2016 -0500
b
@@ -0,0 +1,74 @@
+========================
+Galaxy deeptools wrapper
+========================
+
+deepTools are user-friendly tools for the normalization and visualization of 
+deep-sequencing data.
+They address the challenge of visualizing the large amounts of data that are now
+routinely generated from sequencing centers in a meaningful way. 
+To do so, deepTools contain useful routines to process the mapped reads data 
+through removal of duplicates and different filtering options to create coverage
+files in standard bedGraph and bigWig file formats. deepTools allow the creation
+of normalized coverage files or the comparison between two files 
+(for example, treatment and control). Finally, using such normalized and 
+standardized files, multiple visualizations can be created to identify 
+enrichments with functional annotations of the genome. 
+For a gallery of images that can be produced and a description 
+of the tools see our poster_.
+
+.. _poster: http://f1000.com/posters/browse/summary/1094053
+
+deeptools is developed under here:
+
+    https://github.com/fidelram/deepTools
+
+For support, questions, or feature requests contact: deeptools@googlegroups.com
+
+
+============
+Installation
+============
+
+Requirements: python-2.7
+
+Galaxy should be able to automatically install all other dependencies, such as numpy or scipy.
+
+For the best performance we recommend to install blas/lapack/atlas in your environment before
+installing deepTools from the Tool Shed.
+
+
+========
+Citation
+========
+
+deeptools are currently under review. In the meantime please refere to https://github.com/fidelram/deepTools.
+
+
+=======
+History
+=======
+
+ * v1.0:        Initial public release
+ * v1.5.8.2:    Include new citation tag, update version to 1.5.8.2 and change wrapper version
+
+
+Licence (MIT)
+=============
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
b
diff -r 000000000000 -r 748076af9837 repository_dependencies.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/repository_dependencies.xml Mon Jan 25 20:23:49 2016 -0500
b
@@ -0,0 +1,4 @@
+<?xml version="1.0"?>
+<repositories>
+    <repository changeset_revision="74b09c8e5f6e" name="data_manager_twobit_builder" owner="devteam" toolshed="https://toolshed.g2.bx.psu.edu" />
+</repositories>
b
diff -r 000000000000 -r 748076af9837 static/images/QC_GCplots_input.png
b
Binary file static/images/QC_GCplots_input.png has changed
b
diff -r 000000000000 -r 748076af9837 static/images/QC_fingerprint.png
b
Binary file static/images/QC_fingerprint.png has changed
b
diff -r 000000000000 -r 748076af9837 static/images/QC_multiBamSummary_humanSamples.png
b
Binary file static/images/QC_multiBamSummary_humanSamples.png has changed
b
diff -r 000000000000 -r 748076af9837 static/images/bamFP_galaxy_output.png
b
Binary file static/images/bamFP_galaxy_output.png has changed
b
diff -r 000000000000 -r 748076af9837 static/images/flowChart_computeMatrixetc.png
b
Binary file static/images/flowChart_computeMatrixetc.png has changed
b
diff -r 000000000000 -r 748076af9837 static/images/norm_IGVsnapshot_indFiles.png
b
Binary file static/images/norm_IGVsnapshot_indFiles.png has changed
b
diff -r 000000000000 -r 748076af9837 static/images/plotCorrelation_galaxy_bw_heatmap_output.png
b
Binary file static/images/plotCorrelation_galaxy_bw_heatmap_output.png has changed
b
diff -r 000000000000 -r 748076af9837 static/images/visual_hm_DmelPolII.png
b
Binary file static/images/visual_hm_DmelPolII.png has changed
b
diff -r 000000000000 -r 748076af9837 static/images/visual_profiler_DmelPolII.png
b
Binary file static/images/visual_profiler_DmelPolII.png has changed
b
diff -r 000000000000 -r 748076af9837 test-data/bamCompare_result1.bg
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/bamCompare_result1.bg Mon Jan 25 20:23:49 2016 -0500
b
@@ -0,0 +1,1 @@
+chrM 0 16569 1.0
b
diff -r 000000000000 -r 748076af9837 test-data/bamCompare_result2.bw
b
Binary file test-data/bamCompare_result2.bw has changed
b
diff -r 000000000000 -r 748076af9837 test-data/bamCoverage_result1.bw
b
Binary file test-data/bamCoverage_result1.bw has changed
b
diff -r 000000000000 -r 748076af9837 test-data/bamCoverage_result2.bw
b
Binary file test-data/bamCoverage_result2.bw has changed
b
diff -r 000000000000 -r 748076af9837 test-data/bamCoverage_result3.bg
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/bamCoverage_result3.bg Mon Jan 25 20:23:49 2016 -0500
b
@@ -0,0 +1,8 @@
+chrM 0 10 18498299.57
+chrM 10 200 9768764.94
+chrM 200 210 10184457.07
+chrM 210 220 9976611.00
+chrM 220 230 7690304.31
+chrM 230 240 6027535.81
+chrM 240 250 3325537.00
+chrM 250 260 623538.19
b
diff -r 000000000000 -r 748076af9837 test-data/bamCoverage_result4.bg
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/bamCoverage_result4.bg Mon Jan 25 20:23:49 2016 -0500
b
b'@@ -0,0 +1,472 @@\n+phiX174\t0\t10\t16038.46\n+phiX174\t10\t20\t48115.38\n+phiX174\t20\t70\t144346.15\n+phiX174\t70\t80\t192461.54\n+phiX174\t80\t90\t176423.08\n+phiX174\t90\t100\t160384.62\n+phiX174\t100\t120\t112269.23\n+phiX174\t120\t140\t144346.15\n+phiX174\t140\t150\t160384.62\n+phiX174\t150\t160\t128307.69\n+phiX174\t160\t170\t160384.62\n+phiX174\t170\t180\t176423.08\n+phiX174\t180\t200\t208500.00\n+phiX174\t200\t210\t192461.54\n+phiX174\t210\t220\t240576.92\n+phiX174\t220\t230\t272653.85\n+phiX174\t230\t240\t336807.69\n+phiX174\t240\t250\t320769.23\n+phiX174\t250\t260\t288692.31\n+phiX174\t260\t270\t336807.69\n+phiX174\t270\t280\t400961.54\n+phiX174\t280\t300\t417000.00\n+phiX174\t300\t310\t352846.15\n+phiX174\t310\t320\t320769.23\n+phiX174\t320\t330\t368884.62\n+phiX174\t330\t340\t352846.15\n+phiX174\t340\t350\t288692.31\n+phiX174\t350\t360\t256615.38\n+phiX174\t360\t370\t224538.46\n+phiX174\t370\t380\t240576.92\n+phiX174\t380\t390\t304730.77\n+phiX174\t390\t400\t256615.38\n+phiX174\t400\t410\t240576.92\n+phiX174\t410\t420\t224538.46\n+phiX174\t420\t450\t288692.31\n+phiX174\t450\t460\t304730.77\n+phiX174\t460\t470\t336807.69\n+phiX174\t470\t490\t417000.00\n+phiX174\t490\t510\t497192.31\n+phiX174\t510\t520\t465115.38\n+phiX174\t520\t530\t561346.15\n+phiX174\t530\t540\t497192.31\n+phiX174\t540\t550\t529269.23\n+phiX174\t550\t560\t545307.69\n+phiX174\t560\t570\t641538.46\n+phiX174\t570\t580\t625500.00\n+phiX174\t580\t590\t561346.15\n+phiX174\t590\t600\t609461.54\n+phiX174\t600\t610\t545307.69\n+phiX174\t610\t630\t625500.00\n+phiX174\t630\t640\t577384.62\n+phiX174\t640\t650\t513230.77\n+phiX174\t650\t660\t545307.69\n+phiX174\t660\t670\t561346.15\n+phiX174\t670\t680\t593423.08\n+phiX174\t680\t690\t657576.92\n+phiX174\t690\t700\t641538.46\n+phiX174\t700\t710\t561346.15\n+phiX174\t710\t730\t593423.08\n+phiX174\t730\t740\t513230.77\n+phiX174\t740\t760\t593423.08\n+phiX174\t760\t770\t497192.31\n+phiX174\t770\t780\t513230.77\n+phiX174\t780\t790\t529269.23\n+phiX174\t790\t800\t545307.69\n+phiX174\t800\t810\t449076.92\n+phiX174\t810\t820\t433038.46\n+phiX174\t820\t830\t368884.62\n+phiX174\t830\t840\t320769.23\n+phiX174\t840\t850\t352846.15\n+phiX174\t850\t860\t304730.77\n+phiX174\t860\t870\t336807.69\n+phiX174\t870\t880\t256615.38\n+phiX174\t880\t890\t352846.15\n+phiX174\t890\t900\t384923.08\n+phiX174\t900\t910\t465115.38\n+phiX174\t910\t920\t545307.69\n+phiX174\t920\t930\t561346.15\n+phiX174\t930\t940\t545307.69\n+phiX174\t940\t950\t577384.62\n+phiX174\t950\t960\t593423.08\n+phiX174\t960\t970\t513230.77\n+phiX174\t970\t980\t481153.85\n+phiX174\t980\t990\t433038.46\n+phiX174\t990\t1000\t417000.00\n+phiX174\t1000\t1010\t449076.92\n+phiX174\t1010\t1030\t577384.62\n+phiX174\t1030\t1040\t753807.69\n+phiX174\t1040\t1050\t785884.62\n+phiX174\t1050\t1060\t817961.54\n+phiX174\t1060\t1070\t866076.92\n+phiX174\t1070\t1080\t834000.00\n+phiX174\t1080\t1090\t866076.92\n+phiX174\t1090\t1100\t769846.15\n+phiX174\t1100\t1110\t737769.23\n+phiX174\t1110\t1120\t657576.92\n+phiX174\t1120\t1130\t641538.46\n+phiX174\t1130\t1140\t625500.00\n+phiX174\t1140\t1150\t673615.38\n+phiX174\t1150\t1160\t625500.00\n+phiX174\t1160\t1170\t593423.08\n+phiX174\t1170\t1180\t609461.54\n+phiX174\t1180\t1190\t577384.62\n+phiX174\t1190\t1200\t513230.77\n+phiX174\t1200\t1210\t481153.85\n+phiX174\t1210\t1220\t561346.15\n+phiX174\t1220\t1230\t481153.85\n+phiX174\t1230\t1240\t449076.92\n+phiX174\t1240\t1250\t352846.15\n+phiX174\t1250\t1260\t336807.69\n+phiX174\t1260\t1270\t400961.54\n+phiX174\t1270\t1280\t352846.15\n+phiX174\t1280\t1290\t368884.62\n+phiX174\t1290\t1300\t320769.23\n+phiX174\t1300\t1310\t384923.08\n+phiX174\t1310\t1320\t513230.77\n+phiX174\t1320\t1330\t497192.31\n+phiX174\t1330\t1340\t513230.77\n+phiX174\t1340\t1350\t481153.85\n+phiX174\t1350\t1370\t497192.31\n+phiX174\t1370\t1390\t465115.38\n+phiX174\t1390\t1400\t352846.15\n+phiX174\t1400\t1410\t449076.92\n+phiX174\t1410\t1430\t481153.85\n+phiX174\t1430\t1450\t545307.69\n+phiX174\t1450\t1460\t561346.15\n+phiX174\t1460\t1470\t577384.62\n+phiX174\t1470\t1480\t609461.54\n+phiX174\t1480\t1490\t593423.08\n+phiX174\t1490\t1500\t545307.69\n+phiX174\t1500\t1510\t657576.92\n+phiX174\t1510\t1520\t625500.00\n+phiX174\t1520\t1540\t785884.62\n+phiX174\t1540\t1550\t721730.77\n+phiX174\t1550\t1570\t753807.69\n+phiX174\t1570\t1580\t769846.15\n+phiX174\t1580\t1590\t673615.38\n+phiX174\t1590\t1600\t625500.00\n+phiX174\t1600\t1610\t561346.15\n+phiX174\t1610\t1620\t529269.23\n+phiX174\t1620\t1630\t497192.31\n+phiX174\t1630\t1640\t465115.38\n+phiX174\t1640\t1650\t481153.85\n+phiX174\t1650\t166'..b'\n+phiX174\t3800\t3810\t417000.00\n+phiX174\t3810\t3820\t449076.92\n+phiX174\t3820\t3830\t433038.46\n+phiX174\t3830\t3840\t545307.69\n+phiX174\t3840\t3850\t625500.00\n+phiX174\t3850\t3860\t769846.15\n+phiX174\t3860\t3870\t801923.08\n+phiX174\t3870\t3880\t769846.15\n+phiX174\t3880\t3890\t721730.77\n+phiX174\t3890\t3900\t673615.38\n+phiX174\t3900\t3910\t641538.46\n+phiX174\t3910\t3920\t593423.08\n+phiX174\t3920\t3930\t449076.92\n+phiX174\t3930\t3950\t400961.54\n+phiX174\t3950\t3960\t433038.46\n+phiX174\t3960\t3970\t529269.23\n+phiX174\t3970\t3980\t593423.08\n+phiX174\t3980\t3990\t561346.15\n+phiX174\t3990\t4000\t641538.46\n+phiX174\t4000\t4010\t625500.00\n+phiX174\t4010\t4020\t609461.54\n+phiX174\t4020\t4030\t641538.46\n+phiX174\t4030\t4040\t657576.92\n+phiX174\t4040\t4050\t545307.69\n+phiX174\t4050\t4060\t481153.85\n+phiX174\t4060\t4070\t449076.92\n+phiX174\t4070\t4080\t400961.54\n+phiX174\t4080\t4090\t433038.46\n+phiX174\t4090\t4100\t529269.23\n+phiX174\t4100\t4110\t400961.54\n+phiX174\t4110\t4120\t368884.62\n+phiX174\t4120\t4130\t304730.77\n+phiX174\t4130\t4150\t368884.62\n+phiX174\t4150\t4160\t336807.69\n+phiX174\t4160\t4170\t384923.08\n+phiX174\t4170\t4180\t272653.85\n+phiX174\t4180\t4190\t336807.69\n+phiX174\t4190\t4200\t352846.15\n+phiX174\t4200\t4210\t368884.62\n+phiX174\t4210\t4230\t320769.23\n+phiX174\t4230\t4250\t336807.69\n+phiX174\t4250\t4260\t384923.08\n+phiX174\t4260\t4280\t481153.85\n+phiX174\t4280\t4290\t449076.92\n+phiX174\t4290\t4300\t465115.38\n+phiX174\t4300\t4310\t529269.23\n+phiX174\t4310\t4320\t609461.54\n+phiX174\t4320\t4330\t577384.62\n+phiX174\t4330\t4340\t465115.38\n+phiX174\t4340\t4350\t417000.00\n+phiX174\t4350\t4360\t433038.46\n+phiX174\t4360\t4380\t513230.77\n+phiX174\t4380\t4390\t481153.85\n+phiX174\t4390\t4400\t449076.92\n+phiX174\t4400\t4410\t529269.23\n+phiX174\t4410\t4420\t657576.92\n+phiX174\t4420\t4430\t705692.31\n+phiX174\t4430\t4440\t785884.62\n+phiX174\t4440\t4450\t817961.54\n+phiX174\t4450\t4460\t801923.08\n+phiX174\t4460\t4470\t769846.15\n+phiX174\t4470\t4480\t882115.38\n+phiX174\t4480\t4490\t689653.85\n+phiX174\t4490\t4500\t625500.00\n+phiX174\t4500\t4510\t609461.54\n+phiX174\t4510\t4520\t465115.38\n+phiX174\t4520\t4540\t433038.46\n+phiX174\t4540\t4550\t497192.31\n+phiX174\t4550\t4560\t481153.85\n+phiX174\t4560\t4570\t433038.46\n+phiX174\t4570\t4580\t465115.38\n+phiX174\t4580\t4590\t417000.00\n+phiX174\t4590\t4600\t433038.46\n+phiX174\t4600\t4610\t529269.23\n+phiX174\t4610\t4620\t513230.77\n+phiX174\t4620\t4630\t577384.62\n+phiX174\t4630\t4640\t609461.54\n+phiX174\t4640\t4660\t689653.85\n+phiX174\t4660\t4670\t721730.77\n+phiX174\t4670\t4680\t673615.38\n+phiX174\t4680\t4690\t609461.54\n+phiX174\t4690\t4700\t689653.85\n+phiX174\t4700\t4720\t481153.85\n+phiX174\t4720\t4730\t400961.54\n+phiX174\t4730\t4740\t465115.38\n+phiX174\t4740\t4760\t561346.15\n+phiX174\t4760\t4780\t593423.08\n+phiX174\t4780\t4790\t609461.54\n+phiX174\t4790\t4800\t689653.85\n+phiX174\t4800\t4810\t673615.38\n+phiX174\t4810\t4820\t657576.92\n+phiX174\t4820\t4830\t593423.08\n+phiX174\t4830\t4850\t625500.00\n+phiX174\t4850\t4860\t577384.62\n+phiX174\t4860\t4870\t513230.77\n+phiX174\t4870\t4880\t497192.31\n+phiX174\t4880\t4890\t593423.08\n+phiX174\t4890\t4900\t513230.77\n+phiX174\t4900\t4910\t481153.85\n+phiX174\t4910\t4920\t417000.00\n+phiX174\t4920\t4930\t384923.08\n+phiX174\t4930\t4950\t352846.15\n+phiX174\t4950\t4960\t272653.85\n+phiX174\t4960\t4970\t176423.08\n+phiX174\t4970\t4980\t240576.92\n+phiX174\t4980\t4990\t208500.00\n+phiX174\t4990\t5020\t288692.31\n+phiX174\t5020\t5030\t352846.15\n+phiX174\t5030\t5040\t336807.69\n+phiX174\t5040\t5050\t368884.62\n+phiX174\t5050\t5060\t304730.77\n+phiX174\t5060\t5070\t288692.31\n+phiX174\t5070\t5080\t240576.92\n+phiX174\t5080\t5090\t304730.77\n+phiX174\t5090\t5100\t272653.85\n+phiX174\t5100\t5110\t224538.46\n+phiX174\t5110\t5120\t256615.38\n+phiX174\t5120\t5130\t320769.23\n+phiX174\t5130\t5140\t417000.00\n+phiX174\t5140\t5160\t497192.31\n+phiX174\t5160\t5170\t481153.85\n+phiX174\t5170\t5180\t577384.62\n+phiX174\t5180\t5190\t561346.15\n+phiX174\t5190\t5200\t529269.23\n+phiX174\t5200\t5210\t465115.38\n+phiX174\t5210\t5220\t449076.92\n+phiX174\t5220\t5230\t400961.54\n+phiX174\t5230\t5240\t449076.92\n+phiX174\t5240\t5250\t368884.62\n+phiX174\t5250\t5260\t272653.85\n+phiX174\t5260\t5270\t304730.77\n+phiX174\t5270\t5280\t336807.69\n+phiX174\t5280\t5290\t272653.85\n+phiX174\t5290\t5300\t192461.54\n+phiX174\t5300\t5310\t144346.15\n+phiX174\t5310\t5340\t96230.77\n+phiX174\t5340\t5350\t64153.85\n+phiX174\t5350\t5386\t32076.9\n'
b
diff -r 000000000000 -r 748076af9837 test-data/bamCoverage_result4.bw
b
Binary file test-data/bamCoverage_result4.bw has changed
b
diff -r 000000000000 -r 748076af9837 test-data/bamPEFragmentSize_histogram_result1.png
b
Binary file test-data/bamPEFragmentSize_histogram_result1.png has changed
b
diff -r 000000000000 -r 748076af9837 test-data/bamPEFragmentSize_result1.txt
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/bamPEFragmentSize_result1.txt Mon Jan 25 20:23:49 2016 -0500
b
@@ -0,0 +1,20 @@
+Sample size: 3
+
+
+Fragment lengths:
+Min.: 241
+1st Qu.: 241.5
+Mean: 244.666666667
+Median: 242.0
+3rd Qu.: 246.5
+Max.: 251
+Std: 4.49691252108
+
+Read lengths:
+Min.: 251
+1st Qu.: 251.0
+Mean: 251.0
+Median: 251.0
+3rd Qu.: 251.0
+Max.: 251
+Std: 0.0
b
diff -r 000000000000 -r 748076af9837 test-data/bigwigCompare_result1.bw
b
Binary file test-data/bigwigCompare_result1.bw has changed
b
diff -r 000000000000 -r 748076af9837 test-data/bigwigCompare_result2.bg
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/bigwigCompare_result2.bg Mon Jan 25 20:23:49 2016 -0500
b
@@ -0,0 +1,3 @@
+ch1 0 400 1.0
+ch2 0 400 1.0
+ch3 0 400 1.0
b
diff -r 000000000000 -r 748076af9837 test-data/bowtie2-test1.bam
b
Binary file test-data/bowtie2-test1.bam has changed
b
diff -r 000000000000 -r 748076af9837 test-data/computeGCBias_result1.png
b
Binary file test-data/computeGCBias_result1.png has changed
b
diff -r 000000000000 -r 748076af9837 test-data/computeGCBias_result1.tabular
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/computeGCBias_result1.tabular Mon Jan 25 20:23:49 2016 -0500
b
b'@@ -0,0 +1,301 @@\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.0'..b'00000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n+0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00\n'
b
diff -r 000000000000 -r 748076af9837 test-data/computeMatrix1.bed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/computeMatrix1.bed Mon Jan 25 20:23:49 2016 -0500
b
@@ -0,0 +1,8 @@
+phiX174 1000 1500 CG11023 0 +
+phiX174 150 1750 cda5 0 -
+phiX174 150 177 cda8 0 -
+phiX174 75 1500 cda9 0 +
+phiX174 101 175 C11023 0 +
+phiX174 125 150 ca5 0 -
+phiX174 450 1750 ca8 0 +
+phiX174 80 1500 cda9 0 +
b
diff -r 000000000000 -r 748076af9837 test-data/computeMatrix2.bed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/computeMatrix2.bed Mon Jan 25 20:23:49 2016 -0500
b
@@ -0,0 +1,6 @@
+ch1 100 150 CG11023 0 +
+ch2 150 175 cda5 0 -
+ch3 100 125 cda8 0 +
+ch1 75 125 C11023 0 +
+ch2 125 150 ca5 0 -
+ch3 75 100 ca8 0 +
b
diff -r 000000000000 -r 748076af9837 test-data/computeMatrix2.bw
b
Binary file test-data/computeMatrix2.bw has changed
b
diff -r 000000000000 -r 748076af9837 test-data/computeMatrix_result1.gz
b
Binary file test-data/computeMatrix_result1.gz has changed
b
diff -r 000000000000 -r 748076af9837 test-data/computeMatrix_result2.gz
b
Binary file test-data/computeMatrix_result2.gz has changed
b
diff -r 000000000000 -r 748076af9837 test-data/computeMatrix_result3.gz
b
Binary file test-data/computeMatrix_result3.gz has changed
b
diff -r 000000000000 -r 748076af9837 test-data/correctGCBias_result1.bam
b
Binary file test-data/correctGCBias_result1.bam has changed
b
diff -r 000000000000 -r 748076af9837 test-data/heatmapper_result1.png
b
Binary file test-data/heatmapper_result1.png has changed
b
diff -r 000000000000 -r 748076af9837 test-data/heatmapper_result2.png
b
Binary file test-data/heatmapper_result2.png has changed
b
diff -r 000000000000 -r 748076af9837 test-data/multiBamSummary_regions.bed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/multiBamSummary_regions.bed Mon Jan 25 20:23:49 2016 -0500
b
@@ -0,0 +1,3 @@
+chrM 1 10
+chrM 5 15
+chrM 10 20
b
diff -r 000000000000 -r 748076af9837 test-data/multiBamSummary_result1.npz
b
Binary file test-data/multiBamSummary_result1.npz has changed
b
diff -r 000000000000 -r 748076af9837 test-data/multiBamSummary_result2.npz
b
Binary file test-data/multiBamSummary_result2.npz has changed
b
diff -r 000000000000 -r 748076af9837 test-data/multiBigwigSummary_result1.npz
b
Binary file test-data/multiBigwigSummary_result1.npz has changed
b
diff -r 000000000000 -r 748076af9837 test-data/multiBigwigSummary_result1.png
b
Binary file test-data/multiBigwigSummary_result1.png has changed
b
diff -r 000000000000 -r 748076af9837 test-data/paired_chr2L.bam
b
Binary file test-data/paired_chr2L.bam has changed
b
diff -r 000000000000 -r 748076af9837 test-data/phiX.2bit
b
Binary file test-data/phiX.2bit has changed
b
diff -r 000000000000 -r 748076af9837 test-data/phiX.bam
b
Binary file test-data/phiX.bam has changed
b
diff -r 000000000000 -r 748076af9837 test-data/phiX.bam.bai
b
Binary file test-data/phiX.bam.bai has changed
b
diff -r 000000000000 -r 748076af9837 test-data/phiX.fasta
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/phiX.fasta Mon Jan 25 20:23:49 2016 -0500
b
@@ -0,0 +1,79 @@
+>phiX174
+GAGTTTTATCGCTTCCATGACGCAGAAGTTAACACTTTCGGATATTTCTGATGAGTCGAAAAATTATCTT
+GATAAAGCAGGAATTACTACTGCTTGTTTACGAATTAAATCGAAGTGGACTGCTGGCGGAAAATGAGAAA
+ATTCGACCTATCCTTGCGCAGCTCGAGAAGCTCTTACTTTGCGACCTTTCGCCATCAACTAACGATTCTG
+TCAAAAACTGACGCGTTGGATGAGGAGAAGTGGCTTAATATGCTTGGCACGTTCGTCAAGGACTGGTTTA
+GATATGAGTCACATTTTGTTCATGGTAGAGATTCTCTTGTTGACATTTTAAAAGAGCGTGGATTACTATC
+TGAGTCCGATGCTGTTCAACCACTAATAGGTAAGAAATCATGAGTCAAGTTACTGAACAATCCGTACGTT
+TCCAGACCGCTTTGGCCTCTATTAAGCTCATTCAGGCTTCTGCCGTTTTGGATTTAACCGAAGATGATTT
+CGATTTTCTGACGAGTAACAAAGTTTGGATTGCTACTGACCGCTCTCGTGCTCGTCGCTGCGTTGAGGCT
+TGCGTTTATGGTACGCTGGACTTTGTGGGATACCCTCGCTTTCCTGCTCCTGTTGAGTTTATTGCTGCCG
+TCATTGCTTATTATGTTCATCCCGTCAACATTCAAACGGCCTGTCTCATCATGGAAGGCGCTGAATTTAC
+GGAAAACATTATTAATGGCGTCGAGCGTCCGGTTAAAGCCGCTGAATTGTTCGCGTTTACCTTGCGTGTA
+CGCGCAGGAAACACTGACGTTCTTACTGACGCAGAAGAAAACGTGCGTCAAAAATTACGTGCAGAAGGAG
+TGATGTAATGTCTAAAGGTAAAAAACGTTCTGGCGCTCGCCCTGGTCGTCCGCAGCCGTTGCGAGGTACT
+AAAGGCAAGCGTAAAGGCGCTCGTCTTTGGTATGTAGGTGGTCAACAATTTTAATTGCAGGGGCTTCGGC
+CCCTTACTTGAGGATAAATTATGTCTAATATTCAAACTGGCGCCGAGCGTATGCCGCATGACCTTTCCCA
+TCTTGGCTTCCTTGCTGGTCAGATTGGTCGTCTTATTACCATTTCAACTACTCCGGTTATCGCTGGCGAC
+TCCTTCGAGATGGACGCCGTTGGCGCTCTCCGTCTTTCTCCATTGCGTCGTGGCCTTGCTATTGACTCTA
+CTGTAGACATTTTTACTTTTTATGTCCCTCATCGTCACGTTTATGGTGAACAGTGGATTAAGTTCATGAA
+GGATGGTGTTAATGCCACTCCTCTCCCGACTGTTAACACTACTGGTTATATTGACCATGCCGCTTTTCTT
+GGCACGATTAACCCTGATACCAATAAAATCCCTAAGCATTTGTTTCAGGGTTATTTGAATATCTATAACA
+ACTATTTTAAAGCGCCGTGGATGCCTGACCGTACCGAGGCTAACCCTAATGAGCTTAATCAAGATGATGC
+TCGTTATGGTTTCCGTTGCTGCCATCTCAAAAACATTTGGACTGCTCCGCTTCCTCCTGAGACTGAGCTT
+TCTCGCCAAATGACGACTTCTACCACATCTATTGACATTATGGGTCTGCAAGCTGCTTATGCTAATTTGC
+ATACTGACCAAGAACGTGATTACTTCATGCAGCGTTACCGTGATGTTATTTCTTCATTTGGAGGTAAAAC
+CTCTTATGACGCTGACAACCGTCCTTTACTTGTCATGCGCTCTAATCTCTGGGCATCTGGCTATGATGTT
+GATGGAACTGACCAAACGTCGTTAGGCCAGTTTTCTGGTCGTGTTCAACAGACCTATAAACATTCTGTGC
+CGCGTTTCTTTGTTCCTGAGCATGGCACTATGTTTACTCTTGCGCTTGTTCGTTTTCCGCCTACTGCGAC
+TAAAGAGATTCAGTACCTTAACGCTAAAGGTGCTTTGACTTATACCGATATTGCTGGCGACCCTGTTTTG
+TATGGCAACTTGCCGCCGCGTGAAATTTCTATGAAGGATGTTTTCCGTTCTGGTGATTCGTCTAAGAAGT
+TTAAGATTGCTGAGGGTCAGTGGTATCGTTATGCGCCTTCGTATGTTTCTCCTGCTTATCACCTTCTTGA
+AGGCTTCCCATTCATTCAGGAACCGCCTTCTGGTGATTTGCAAGAACGCGTACTTATTCGCCACCATGAT
+TATGACCAGTGTTTCCAGTCCGTTCAGTTGTTGCAGTGGAATAGTCAGGTTAAATTTAATGTGACCGTTT
+ATCGCAATCTGCCGACCACTCGCGATTCAATCATGACTTCGTGATAAAAGATTGAGTGTGAGGTTATAAC
+GCCGAAGCGGTAAAAATTTTAATTTTTGCCGCTGAGGGGTTGACCAAGCGAAGCGCGGTAGGTTTTCTGC
+TTAGGAGTTTAATCATGTTTCAGACTTTTATTTCTCGCCATAATTCAAACTTTTTTTCTGATAAGCTGGT
+TCTCACTTCTGTTACTCCAGCTTCTTCGGCACCTGTTTTACAGACACCTAAAGCTACATCGTCAACGTTA
+TATTTTGATAGTTTGACGGTTAATGCTGGTAATGGTGGTTTTCTTCATTGCATTCAGATGGATACATCTG
+TCAACGCCGCTAATCAGGTTGTTTCTGTTGGTGCTGATATTGCTTTTGATGCCGACCCTAAATTTTTTGC
+CTGTTTGGTTCGCTTTGAGTCTTCTTCGGTTCCGACTACCCTCCCGACTGCCTATGATGTTTATCCTTTG
+AATGGTCGCCATGATGGTGGTTATTATACCGTCAAGGACTGTGTGACTATTGACGTCCTTCCCCGTACGC
+CGGGCAATAATGTTTATGTTGGTTTCATGGTTTGGTCTAACTTTACCGCTACTAAATGCCGCGGATTGGT
+TTCGCTGAATCAGGTTATTAAAGAGATTATTTGTCTCCAGCCACTTAAGTGAGGTGATTTATGTTTGGTG
+CTATTGCTGGCGGTATTGCTTCTGCTCTTGCTGGTGGCGCCATGTCTAAATTGTTTGGAGGCGGTCAAAA
+AGCCGCCTCCGGTGGCATTCAAGGTGATGTGCTTGCTACCGATAACAATACTGTAGGCATGGGTGATGCT
+GGTATTAAATCTGCCATTCAAGGCTCTAATGTTCCTAACCCTGATGAGGCCGCCCCTAGTTTTGTTTCTG
+GTGCTATGGCTAAAGCTGGTAAAGGACTTCTTGAAGGTACGTTGCAGGCTGGCACTTCTGCCGTTTCTGA
+TAAGTTGCTTGATTTGGTTGGACTTGGTGGCAAGTCTGCCGCTGATAAAGGAAAGGATACTCGTGATTAT
+CTTGCTGCTGCATTTCCTGAGCTTAATGCTTGGGAGCGTGCTGGTGCTGATGCTTCCTCTGCTGGTATGG
+TTGACGCCGGATTTGAGAATCAAAAAGAGCTTACTAAAATGCAACTGGACAATCAGAAAGAGATTGCCGA
+GATGCAAAATGAGACTCAAAAAGAGATTGCTGGCATTCAGTCGGCGACTTCACGCCAGAATACGAAAGAC
+CAGGTATATGCACAAAATGAGATGCTTGCTTATCAACAGAAGGAGTCTACTGCTCGCGTTGCGTCTATTA
+TGGAAAACACCAATCTTTCCAAGCAACAGCAGGTTTCCGAGATTATGCGCCAAATGCTTACTCAAGCTCA
+AACGGCTGGTCAGTATTTTACCAATGACCAAATCAAAGAAATGACTCGCAAGGTTAGTGCTGAGGTTGAC
+TTAGTTCATCAGCAAACGCAGAATCAGCGGTATGGCTCTTCTCATATTGGCGCTACTGCAAAGGATATTT
+CTAATGTCGTCACTGATGCTGCTTCTGGTGTGGTTGATATTTTTCATGGTATTGATAAAGCTGTTGCCGA
+TACTTGGAACAATTTCTGGAAAGACGGTAAAGCTGATGGTATTGGCTCTAATTTGTCTAGGAAATAACCG
+TCAGGATTGACACCCTCCCAATTGTATGTTTTCATGCCTCCAAATCTTGGAGGCTTTTTTATGGTTCGTT
+CTTATTACCCTTCTGAATGTCACGCTGATTATTTTGACTTTGAGCGTATCGAGGCTCTTAAACCTGCTAT
+TGAGGCTTGTGGCATTTCTACTCTTTCTCAATCCCCAATGCTTGGCTTCCATAAGCAGATGGATAACCGC
+ATCAAGCTCTTGGAAGAGATTCTGTCTTTTCGTATGCAGGGCGTTGAGTTCGATAATGGTGATATGTATG
+TTGACGGCCATAAGGCTGCTTCTGACGTTCGTGATGAGTTTGTATCTGTTACTGAGAAGTTAATGGATGA
+ATTGGCACAATGCTACAATGTGCTCCCCCAACTTGATATTAATAACACTATAGACCACCGCCCCGAAGGG
+GACGAAAAATGGTTTTTAGAGAACGAGAAGACGGTTACGCAGTTTTGCCGCAAGCTGGCTGCTGAACGCC
+CTCTTAAGGATATTCGCGATGAGTATAATTACCCCAAAAAGAAAGGTATTAAGGATGAGTGTTCAAGATT
+GCTGGAGGCCTCCACTATGAAATCGCGTAGAGGCTTTACTATTCAGCGTTTGATGAATGCAATGCGACAG
+GCTCATGCTGATGGTTGGTTTATCGTTTTTGACACTCTCACGTTGGCTGACGACCGATTAGAGGCGTTTT
+ATGATAATCCCAATGCTTTGCGTGACTATTTTCGTGATATTGGTCGTATGGTTCTTGCTGCCGAGGGTCG
+CAAGGCTAATGATTCACACGCCGACTGCTATCAGTATTTTTGTGTGCCTGAGTATGGTACAGCTAATGGC
+CGTCTTCATTTCCATGCGGTGCATTTTATGCGGACACTTCCTACAGGTAGCGTTGACCCTAATTTTGGTC
+GTCGGGTACGCAATCGCCGCCAGTTAAATAGCTTGCAAAATACGTGGCCTTATGGTTACAGTATGCCCAT
+CGCAGTTCGCTACACGCAGGACGCTTTTTCACGTTCTGGTTGGTTGTGGCCTGTTGATGCTAAAGGTGAG
+CCGCTTAAAGCTACCAGTTATATGGCTGTTGGTTTCTATGTGGCTAAATACGTTAACAAAAAGTCAGATA
+TGGACCTTGCTGCTAAAGGTCTAGGAGCTAAAGAATGGAACAACTCACTAAAAACCAAGCTGTCGCTACT
+TCCCAAGAAGCTGTTCAGAATCAGAATGAGCCGCAACTTCGGGATGAAAATGCTCACAATGACAAATCTG
+TCCACGGAGTGCTTAATCCAACTTACCAAGCTGGGTTACGACGCGACGCCGTTCAACCAGATATTGAAGC
+AGAACGCAAAAAGAGAGATGAGATTGAGGCTGGGAAAAGTTACTGTAGCCGACGTTTTGGCGGCGCAACC
+TGTGACGACAAATCTGCTCAAATTTATGCGCGCTTCGATAAAAATGATTGGCGTATCCAACCTGCA
+
b
diff -r 000000000000 -r 748076af9837 test-data/plotCorrelation_result1.png
b
Binary file test-data/plotCorrelation_result1.png has changed
b
diff -r 000000000000 -r 748076af9837 test-data/plotCorrelation_result1.tabular
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/plotCorrelation_result1.tabular Mon Jan 25 20:23:49 2016 -0500
b
@@ -0,0 +1,3 @@
+ 'bowtie2-test1.bam' 'bowtie2-test1.bam'
+'bowtie2-test1.bam' 1.0000 1.0000
+'bowtie2-test1.bam' 1.0000 1.0000
b
diff -r 000000000000 -r 748076af9837 test-data/plotCorrelation_result2.png
b
Binary file test-data/plotCorrelation_result2.png has changed
b
diff -r 000000000000 -r 748076af9837 test-data/plotCoverage_result1.png
b
Binary file test-data/plotCoverage_result1.png has changed
b
diff -r 000000000000 -r 748076af9837 test-data/plotCoverage_result1.tabular
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/plotCoverage_result1.tabular Mon Jan 25 20:23:49 2016 -0500
b
b"@@ -0,0 +1,16570 @@\n+'bowtie2-test1.bam'\t'bowtie2-test1.bam'\n+23\t23\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+33\t33\n+33\t33\n+33\t33\n+33\t33\n+33\t33\n+33\t33\n+33\t33\n+33\t33\n+33\t33\n+33\t33\n+33\t33\n+33\t33\n+27\t27\n+25\t25\n+24\t24\n+21\t21\n+20\t20\n+19\t19\n+19\t19\n+19\t19\n+17\t17\n+17\t17\n+15\t15\n+15\t15\n+15\t15\n+10\t10\n+7\t7\n+7\t7\n+7\t7\n+7\t7\n+6\t6\n+5\t5\n+5\t5\n+5\t5\n+3\t3\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0"..b'0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n'
b
diff -r 000000000000 -r 748076af9837 test-data/plotFingerprint_result1.png
b
Binary file test-data/plotFingerprint_result1.png has changed
b
diff -r 000000000000 -r 748076af9837 test-data/plotFingerprint_result2.png
b
Binary file test-data/plotFingerprint_result2.png has changed
b
diff -r 000000000000 -r 748076af9837 test-data/plotFingerprint_result2.tabular
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/plotFingerprint_result2.tabular Mon Jan 25 20:23:49 2016 -0500
b
b"@@ -0,0 +1,16071 @@\n+'bowtie2-test1.bam'\t'bowtie2-test1.bam'\n+68\t68\n+65\t65\n+61\t61\n+57\t57\n+43\t43\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+37\t37\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+35\t35\n+29\t29\n+27\t27\n+26\t26\n+22\t22\n+21\t21\n+20\t20\n+20\t20\n+19\t19\n+17\t17\n+17\t17\n+15\t15\n+15\t15\n+15\t15\n+10\t10\n+7\t7\n+7\t7\n+7\t7\n+7\t7\n+6\t6\n+5\t5\n+5\t5\n+5\t5\n+3\t3\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0"..b'0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n+0\t0\n'
b
diff -r 000000000000 -r 748076af9837 test-data/plotPCA_result1.png
b
Binary file test-data/plotPCA_result1.png has changed
b
diff -r 000000000000 -r 748076af9837 test-data/profiler_result1.png
b
Binary file test-data/profiler_result1.png has changed
b
diff -r 000000000000 -r 748076af9837 test-data/profiler_result2.png
b
Binary file test-data/profiler_result2.png has changed
b
diff -r 000000000000 -r 748076af9837 test-data/sequence.2bit
b
Binary file test-data/sequence.2bit has changed
b
diff -r 000000000000 -r 748076af9837 test-data/test.bw
b
Binary file test-data/test.bw has changed
b
diff -r 000000000000 -r 748076af9837 tool-data/deepTools_seqs.loc.sample
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tool-data/deepTools_seqs.loc.sample Mon Jan 25 20:23:49 2016 -0500
b
@@ -0,0 +1,27 @@
+#This is a sample file distributed with Galaxy that enables tools
+#to use a directory of 2bit genome files for use with deepTools. You will
+#need to supply these files and then create a deepTools_seqs.loc file
+#similar to this one (store it in this directory) that points to
+#the directories in which those files are stored. The deepTools_seqs.loc
+#file has this format:
+#
+#<unique_build_id> <display_name> <file_path>
+#
+#So, for example, if your deepTools_seqs.loc began like this:
+#
+#hg18 Human (Homo sapiens): hg18 /depot/data2/galaxy/twobit/hg18.2bit
+#hg19 Human (Homo sapiens): hg19 /depot/data2/galaxy/twobit/hg19.2bit
+#mm9 Mouse (Mus musculus): mm9 /depot/data2/galaxy/twobit/mm9.2bit
+#
+#then your /depot/data2/galaxy/twobit/ directory
+#would need to contain the following 2bit files:
+#
+#-rw-r--r--  1 james    universe 830134 2005-09-13 10:12 hg18.2bit
+#-rw-r--r--  1 james    universe 527388 2005-09-13 10:12 hg19.2bit
+#-rw-r--r--  1 james    universe 269808 2005-09-13 10:12 mm9.2bit
+#
+#Your deepTools_seqs.loc file should include an entry per line for 
+#each file you have stored that you want to be available. Note that 
+#your files should all have the extension '2bit'.
+#
+#Please note that the <unique_build_id> is also used as "Species name abbreviation".
b
diff -r 000000000000 -r 748076af9837 tool-data/lastz_seqs.loc.sample
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tool-data/lastz_seqs.loc.sample Mon Jan 25 20:23:49 2016 -0500
b
@@ -0,0 +1,29 @@
+#This is a sample file distributed with Galaxy that enables tools
+#to use a directory of 2bit genome files for use with deepTools. 
+#This file is named lastz_seqs.loc file to make use of an already existing loc
+#file from the lastz tool that is created by the twobit data-manager.
+#You will need to supply these files and then create a lastz_seqs.loc file
+#similar to this one (store it in this directory) that points to
+#the directories in which those files are stored. The lastz_seqs.loc
+#file has this format:
+#
+#<unique_build_id> <display_name> <file_path>
+#
+#So, for example, if your lastz_seqs.loc began like this:
+#
+#hg18 Human (Homo sapiens): hg18 /depot/data2/galaxy/twobit/hg18.2bit
+#hg19 Human (Homo sapiens): hg19 /depot/data2/galaxy/twobit/hg19.2bit
+#mm9 Mouse (Mus musculus): mm9 /depot/data2/galaxy/twobit/mm9.2bit
+#
+#then your /depot/data2/galaxy/twobit/ directory
+#would need to contain the following 2bit files:
+#
+#-rw-r--r--  1 james    universe 830134 2005-09-13 10:12 hg18.2bit
+#-rw-r--r--  1 james    universe 527388 2005-09-13 10:12 hg19.2bit
+#-rw-r--r--  1 james    universe 269808 2005-09-13 10:12 mm9.2bit
+#
+#Your lastz_seqs.loc file should include an entry per line for 
+#each file you have stored that you want to be available. Note that 
+#your files should all have the extension '2bit'.
+#
+#Please note that the <unique_build_id> is also used as "Species name abbreviation".
b
diff -r 000000000000 -r 748076af9837 tool_data_table_conf.xml.sample
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tool_data_table_conf.xml.sample Mon Jan 25 20:23:49 2016 -0500
b
@@ -0,0 +1,8 @@
+<!-- Use the file tool_data_table_conf.xml.oldlocstyle if you don't want to update your loc files as changed in revision 4550:535d276c92bc-->
+<tables>
+    <!-- Locations of 2bit sequence files for use in Lastz -->
+    <table name="lastz_seqs" comment_char="#">
+        <columns>value, name, path</columns>
+        <file path="tool-data/lastz_seqs.loc" />
+    </table>
+</tables>
b
diff -r 000000000000 -r 748076af9837 tool_dependencies.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tool_dependencies.xml Mon Jan 25 20:23:49 2016 -0500
b
@@ -0,0 +1,9 @@
+<?xml version="1.0"?>
+<tool_dependency>
+    <package name="python" version="2.7.10">
+        <repository changeset_revision="0339c4a9b87b" name="package_python_2_7_10" owner="iuc" toolshed="https://toolshed.g2.bx.psu.edu" />
+    </package>
+    <package name="deepTools" version="2.0.1">
+        <repository changeset_revision="1fb61fa32733" name="package_python_2_7_deeptools_2_0_1" owner="iuc" toolshed="https://toolshed.g2.bx.psu.edu" />
+    </package>
+</tool_dependency>