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

Changeset 0:1638c02b28b5 (2016-12-05)
Next changeset 1:0240a81c3ae6 (2017-01-24)
Commit message:
planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 0eeb2e1a184186ba5ac044136e71b943e2af0f09
added:
computeMatrixOperations.xml
datatypes_conf.xml
deepTools_macros.xml
deepTools_macros.xml.orig
readme.rst
repository_dependencies.xml
static/images/GC_bias_simulated_reads_2L.png
static/images/QC_GCplots_input.png
static/images/QC_fingerprint.png
static/images/QC_multiBamSummary_humanSamples.png
static/images/QC_plotCoverage.png
static/images/bamCompare_output.png
static/images/bamCoverage_output.png
static/images/bamFP_galaxy_output.png
static/images/bamPEFragmentSize_output.png
static/images/bigwigCompare_output.png
static/images/computeGCBias_output.png
static/images/computeMatrix_advancedOutput.png
static/images/computeMatrix_output.png
static/images/computeMatrix_overview.png
static/images/computeMatrix_selectRegions.png
static/images/computeMatrix_selectScores.png
static/images/multiBamSummary_output.png
static/images/multiBigwigSummary_output.png
static/images/norm_IGVsnapshot_indFiles.png
static/images/plotCorrelate_RNAseq.png
static/images/plotCorrelation_galaxy_bw_heatmap_output.png
static/images/plotCorrelation_output.png
static/images/plotCorrelation_scatterplot_PearsonCorr_bigwigScores.png
static/images/plotCoverage_annotated.png
static/images/plotCoverage_output.png
static/images/plotEnrichment_output.png
static/images/plotFingerprint_output.png
static/images/plotHeatmap_example.png
static/images/plotHeatmap_example02.png
static/images/plotPCA_annotated.png
static/images/plotProfiler_examples.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/bamCoverage_result5.bw
test-data/bamCoverage_result6.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/computeMatrixOperations.txt
test-data/computeMatrixOperations_result2.mat.gz
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/heatmapper_result2.tabular
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/plotEnrichment_output.png
test-data/plotEnrichment_output.txt
test-data/plotFingerprint_quality_metrics.tabular
test-data/plotFingerprint_result1.png
test-data/plotFingerprint_result2.png
test-data/plotFingerprint_result2.tabular
test-data/plotPCA_result1.png
test-data/plotPCA_result2.png
test-data/plotPCA_result2.tabular
test-data/profiler_result1.png
test-data/profiler_result2.png
test-data/profiler_result2.tabular
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 1638c02b28b5 computeMatrixOperations.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/computeMatrixOperations.xml Mon Dec 05 08:09:05 2016 -0500
[
b'@@ -0,0 +1,179 @@\n+<tool id="deeptools_compute_matrix_operations" name="computeMatrixOperations" version="@WRAPPER_VERSION@.0">\n+    <description>Modify or combine the output of computeMatrix in a variety of ways.</description>\n+    <macros>\n+        <token name="@BINARY@">computeMatrixOperations</token>\n+        <import>deepTools_macros.xml</import>\n+    </macros>\n+    <expand macro="requirements"/>\n+    <command>\n+<![CDATA[\n+        @BINARY@\n+            #if $submodule.command == "info":\n+                info\n+                -m $submodule.matrixFile\n+                > $outFileTxt\n+            #else if $submodule.command == "subset":\n+                subset\n+                -m $submodule.matrixFile\n+                #if $submodule.groups is not None and str($submodule.groups) != \'\':\n+                    --groups $submodule.groups\n+                #end if\n+                #if $submodule.samples is not None and str($submodule.samples) != \'\':\n+                    --samples $submodule.samples\n+                #end if\n+                -o $outFileName\n+            #else if $submodule.command == "filterStrand":\n+                filterStrand\n+                -m $submodule.matrixFile\n+                --strand $submodule.strand\n+                -o $outFileName\n+            #else if $submodule.command == "rbind":\n+                #set $files=[]\n+                #for $f in $submodule.matrixFiles:\n+                    #silent $files.append(str($f.matrixFile))\n+                #end for\n+                rbind\n+                -m \'#echo "\' \'".join($files)#\'\n+                -o $outFileName\n+            #else if $submodule.command == "cbind":\n+                cbind\n+                #set $files=[]\n+                #for $f in $submodule.matrixFiles:\n+                    #silent $files.append(str($f.matrixFile))\n+                #end for\n+                -m \'#echo "\' \'".join($files)#\'\n+                -o $outFileName\n+            #else if $submodule.command == "sort":\n+                sort\n+                #set $files=[]\n+                #for $f in $submodule.regionsFiles:\n+                    #silent $files.append(str($f.regionsFile))\n+                #end for\n+                -m $submodule.matrixFile\n+                -R \'#echo "\' \'".join($files)#\'\n+                -o $outFileName\n+            #end if\n+]]>\n+    </command>\n+    <inputs>\n+        <conditional name="submodule">\n+            <param name="command" type="select" label="Operation type">\n+                <option value="info" selected="true">Print information (info)</option>\n+                <option value="subset">Subset by samples and/or groups of regions (subset)</option>\n+                <option value="filterStrand">Filter by strand (filterStrand)</option>\n+                <option value="rbind">Bind matrices, top to bottom (rbind)</option>\n+                <option value="cbind">Bind matrices, left to right (cbind)</option>\n+                <option value="sort">Sort by region order in specified files (sort)</option>\n+            </param>\n+            <when value="info">\n+                <param argument="matrixFile" format="deeptools_compute_matrix_archive" type="data"\n+                       label="Matrix file from the computeMatrix tool" help=""/>\n+            </when>\n+\n+            <when value="subset">\n+                <param argument="matrixFile" format="deeptools_compute_matrix_archive" type="data"\n+                       label="Matrix file from the computeMatrix tool" help=""/>\n+                <param argument="groups" type="text" optional="true" label="Region groups to include."\n+                    help="If blank, all region groups are output. Alternatively, one or more groups listed in the output of the \'info\' command can be used (separate groups by a space and enclose in quotes if needed)" />\n+                <param argument="samples" type="text" optional="true" label="Samples to include."\n+                    help="If blank, all samples are output. Alternatively, one or mo'..b'ool.name} ${submodule.command} on ${on_string}">\n+            <filter>\n+            ((\n+                submodule[\'command\'] != "info"\n+            ))\n+            </filter>\n+        </data>\n+        <data format="txt" name="outFileTxt" label="${tool.name} info on ${on_string}">\n+            <filter>\n+            ((\n+                submodule[\'command\'] == "info"\n+            ))\n+            </filter>\n+        </data>\n+    </outputs>\n+    <tests>\n+        <test>\n+            <param name="command" value="info" />\n+            <param name="matrixFile" value="computeMatrix_result1.gz" ftype="deeptools_compute_matrix_archive" />\n+            <output name="outFileTxt" file="computeMatrixOperations.txt" ftype="txt" />\n+        </test>\n+        <test>\n+            <param name="command" value="rbind" />\n+            <param name="matrixFile" value="computeMatrix_result1.gz" ftype="deeptools_compute_matrix_archive" />\n+            <param name="matrixFile" value="computeMatrix_result1.gz" ftype="deeptools_compute_matrix_archive" />\n+            <output name="outFileName" file="computeMatrixOperations_result2.mat.gz" ftype="deeptools_compute_matrix_archive" compare="sim_size" delta="100"/>\n+        </test>\n+    </tests>\n+    <help>\n+<![CDATA[\n+\n+What it does\n+------------\n+\n+``computeMatrixOperations`` can perform a variety of operations on one or more files produced by ``computeMatrix`` (N.B., the output is always written to a new file):\n+\n++----------------+--------------------------------------------------------------------------------------------------------------------------+\n++ **Subcommand** | **What it does**                                                                                                         |\n++----------------+--------------------------------------------------------------------------------------------------------------------------+\n++ info           | Prints out the sample and region group names in the order in which they appear.                                          |\n++----------------+--------------------------------------------------------------------------------------------------------------------------+\n++ subset         | Subsets a file by the desired samples/region group names. This can also change the order of these samples/region groups. |\n++----------------+--------------------------------------------------------------------------------------------------------------------------+\n++ filterStrand   | Filters the file to only include regions annotated as being on a particular strand.                                      |\n++----------------+--------------------------------------------------------------------------------------------------------------------------+\n++ rbind          | Concatenates multiple matrices together, top to bottom.                                                                  |\n++----------------+--------------------------------------------------------------------------------------------------------------------------+\n++ cbind          | Merges multiple matrices, left to right.                                                                                 |\n++----------------+--------------------------------------------------------------------------------------------------------------------------+\n++ sort           | Sorts the given file so regions are in the order of occurence in the input BED/GTF file(s).                              |\n++----------------+--------------------------------------------------------------------------------------------------------------------------+\n+\n+\n+These operations are useful when you want to run computeMatrix on multiple files (thereby keeping all of the values together) and later exclude regions/samples or add new ones. Another common use would be if you require the output of computeMatrix to be sorted to match the order of regions in the input file.\n+\n+-----\n+\n+@REFERENCES@\n+]]>\n+    </help>\n+    <expand macro="citations" />\n+</tool>\n'
b
diff -r 000000000000 -r 1638c02b28b5 datatypes_conf.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/datatypes_conf.xml Mon Dec 05 08:09:05 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 1638c02b28b5 deepTools_macros.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/deepTools_macros.xml Mon Dec 05 08:09:05 2016 -0500
b
b'@@ -0,0 +1,811 @@\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+        #if $advancedOpt.minFragmentLength:\n+            --minFragmentLength $advancedOpt.minFragmentLength\n+        #end if\n+        #if $advancedOpt.maxFragmentLength:\n+            --maxFragmentLength $advancedOpt.maxFragmentLength\n+        #end if\n+    </token>\n+\n+    <token name="@ADVANCED_OPTS_GTF@">\n+        $advancedOpt.metagene\n+        #if $advancedOpt.transcriptID:\n+            --transcriptID $advancedOpt.transcriptID\n+        #end if\n+        #if $advancedOpt.exonID:\n+            --exonID $advancedOpt.exonID\n+        #end if\n+        #if $advancedOpt.transcript_id_designator:\n+            --transcript_id_designator $advancedOpt.transcript_id_designator\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="text" 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="text" 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+            <sanitizer>\n+                <valid initial="string.letters,string.digits">\n+                    <add value="|"/>\n+                    <add value=":"/>\n+                 </valid>\n+            </sanitizer>\n+        </param>\n+    </xml>\n+\n+    <token name="@THREADS@">--numberOfProcessors "\\${GALAXY_SLOTS:-4}"</token>\n+    <token name="@WRAPPER_VERSION@">2.4.1</token>\n+    <x'..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 1638c02b28b5 deepTools_macros.xml.orig
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/deepTools_macros.xml.orig Mon Dec 05 08:09:05 2016 -0500
b
b'@@ -0,0 +1,639 @@\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+<<<<<<< HEAD\n+    <token name="@WRAPPER_VERSION@">2.0.1.0</token>\n+=======\n+    <token name="@WRAPPER_VERSION@">2.1.0</token>\n+>>>>>>> d56067f86089e75354a2fad266002db3730766d9\n+    <xml name="requirements">\n+        <requirements>\n+            <requirement type="package" version="2.7.10">python</requirement>\n+            <requirement type="binary">@BINARY@</requirement>\n+<<<<<<< HEAD\n+            <requirement type="package" version="2.0.1">deepTools</requirement>\n+=======\n+            <requirement type="package" version="2.1.0">deepTools</requirement>\n+>>>>>>> d56067f86089e75354a2fad266002db3730766d9\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 '..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 1638c02b28b5 readme.rst
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/readme.rst Mon Dec 05 08:09:05 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 1638c02b28b5 repository_dependencies.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/repository_dependencies.xml Mon Dec 05 08:09:05 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 1638c02b28b5 static/images/GC_bias_simulated_reads_2L.png
b
Binary file static/images/GC_bias_simulated_reads_2L.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/QC_GCplots_input.png
b
Binary file static/images/QC_GCplots_input.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/QC_fingerprint.png
b
Binary file static/images/QC_fingerprint.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/QC_multiBamSummary_humanSamples.png
b
Binary file static/images/QC_multiBamSummary_humanSamples.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/QC_plotCoverage.png
b
Binary file static/images/QC_plotCoverage.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/bamCompare_output.png
b
Binary file static/images/bamCompare_output.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/bamCoverage_output.png
b
Binary file static/images/bamCoverage_output.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/bamFP_galaxy_output.png
b
Binary file static/images/bamFP_galaxy_output.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/bamPEFragmentSize_output.png
b
Binary file static/images/bamPEFragmentSize_output.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/bigwigCompare_output.png
b
Binary file static/images/bigwigCompare_output.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/computeGCBias_output.png
b
Binary file static/images/computeGCBias_output.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/computeMatrix_advancedOutput.png
b
Binary file static/images/computeMatrix_advancedOutput.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/computeMatrix_output.png
b
Binary file static/images/computeMatrix_output.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/computeMatrix_overview.png
b
Binary file static/images/computeMatrix_overview.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/computeMatrix_selectRegions.png
b
Binary file static/images/computeMatrix_selectRegions.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/computeMatrix_selectScores.png
b
Binary file static/images/computeMatrix_selectScores.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/multiBamSummary_output.png
b
Binary file static/images/multiBamSummary_output.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/multiBigwigSummary_output.png
b
Binary file static/images/multiBigwigSummary_output.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/norm_IGVsnapshot_indFiles.png
b
Binary file static/images/norm_IGVsnapshot_indFiles.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/plotCorrelate_RNAseq.png
b
Binary file static/images/plotCorrelate_RNAseq.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 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 1638c02b28b5 static/images/plotCorrelation_output.png
b
Binary file static/images/plotCorrelation_output.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/plotCorrelation_scatterplot_PearsonCorr_bigwigScores.png
b
Binary file static/images/plotCorrelation_scatterplot_PearsonCorr_bigwigScores.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/plotCoverage_annotated.png
b
Binary file static/images/plotCoverage_annotated.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/plotCoverage_output.png
b
Binary file static/images/plotCoverage_output.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/plotEnrichment_output.png
b
Binary file static/images/plotEnrichment_output.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/plotFingerprint_output.png
b
Binary file static/images/plotFingerprint_output.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/plotHeatmap_example.png
b
Binary file static/images/plotHeatmap_example.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/plotHeatmap_example02.png
b
Binary file static/images/plotHeatmap_example02.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/plotPCA_annotated.png
b
Binary file static/images/plotPCA_annotated.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/plotProfiler_examples.png
b
Binary file static/images/plotProfiler_examples.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/visual_hm_DmelPolII.png
b
Binary file static/images/visual_hm_DmelPolII.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 static/images/visual_profiler_DmelPolII.png
b
Binary file static/images/visual_profiler_DmelPolII.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/bamCompare_result1.bg
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/bamCompare_result1.bg Mon Dec 05 08:09:05 2016 -0500
b
@@ -0,0 +1,1 @@
+chrM 0 16569 1
b
diff -r 000000000000 -r 1638c02b28b5 test-data/bamCompare_result2.bw
b
Binary file test-data/bamCompare_result2.bw has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/bamCoverage_result1.bw
b
Binary file test-data/bamCoverage_result1.bw has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/bamCoverage_result2.bw
b
Binary file test-data/bamCoverage_result2.bw has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/bamCoverage_result3.bg
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/bamCoverage_result3.bg Mon Dec 05 08:09:05 2016 -0500
b
@@ -0,0 +1,7 @@
+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
b
diff -r 000000000000 -r 1638c02b28b5 test-data/bamCoverage_result4.bg
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/bamCoverage_result4.bg Mon Dec 05 08:09:05 2016 -0500
b
b'@@ -0,0 +1,472 @@\n+phiX174\t0\t10\t16302.8\n+phiX174\t10\t20\t48908.5\n+phiX174\t20\t70\t146725\n+phiX174\t70\t80\t195634\n+phiX174\t80\t90\t179331\n+phiX174\t90\t100\t163028\n+phiX174\t100\t120\t114120\n+phiX174\t120\t140\t146725\n+phiX174\t140\t150\t163028\n+phiX174\t150\t160\t130423\n+phiX174\t160\t170\t163028\n+phiX174\t170\t180\t179331\n+phiX174\t180\t200\t211937\n+phiX174\t200\t210\t195634\n+phiX174\t210\t220\t244542\n+phiX174\t220\t230\t277148\n+phiX174\t230\t240\t342359\n+phiX174\t240\t250\t326057\n+phiX174\t250\t260\t293451\n+phiX174\t260\t270\t342359\n+phiX174\t270\t280\t407571\n+phiX174\t280\t300\t423874\n+phiX174\t300\t310\t358662\n+phiX174\t310\t320\t326057\n+phiX174\t320\t330\t374965\n+phiX174\t330\t340\t358662\n+phiX174\t340\t350\t293451\n+phiX174\t350\t360\t260845\n+phiX174\t360\t370\t228240\n+phiX174\t370\t380\t244542\n+phiX174\t380\t390\t309754\n+phiX174\t390\t400\t260845\n+phiX174\t400\t410\t244542\n+phiX174\t410\t420\t228240\n+phiX174\t420\t450\t293451\n+phiX174\t450\t460\t309754\n+phiX174\t460\t470\t342359\n+phiX174\t470\t490\t423874\n+phiX174\t490\t510\t505388\n+phiX174\t510\t520\t472782\n+phiX174\t520\t530\t570599\n+phiX174\t530\t540\t505388\n+phiX174\t540\t550\t537993\n+phiX174\t550\t560\t554296\n+phiX174\t560\t570\t652113\n+phiX174\t570\t580\t635810\n+phiX174\t580\t590\t570599\n+phiX174\t590\t600\t619508\n+phiX174\t600\t610\t554296\n+phiX174\t610\t630\t635810\n+phiX174\t630\t640\t586902\n+phiX174\t640\t650\t521691\n+phiX174\t650\t660\t554296\n+phiX174\t660\t670\t570599\n+phiX174\t670\t680\t603205\n+phiX174\t680\t690\t668416\n+phiX174\t690\t700\t652113\n+phiX174\t700\t710\t570599\n+phiX174\t710\t730\t603205\n+phiX174\t730\t740\t521691\n+phiX174\t740\t760\t603205\n+phiX174\t760\t770\t505388\n+phiX174\t770\t780\t521691\n+phiX174\t780\t790\t537993\n+phiX174\t790\t800\t554296\n+phiX174\t800\t810\t456479\n+phiX174\t810\t820\t440176\n+phiX174\t820\t830\t374965\n+phiX174\t830\t840\t326057\n+phiX174\t840\t850\t358662\n+phiX174\t850\t860\t309754\n+phiX174\t860\t870\t342359\n+phiX174\t870\t880\t260845\n+phiX174\t880\t890\t358662\n+phiX174\t890\t900\t391268\n+phiX174\t900\t910\t472782\n+phiX174\t910\t920\t554296\n+phiX174\t920\t930\t570599\n+phiX174\t930\t940\t554296\n+phiX174\t940\t950\t586902\n+phiX174\t950\t960\t603205\n+phiX174\t960\t970\t521691\n+phiX174\t970\t980\t489085\n+phiX174\t980\t990\t440176\n+phiX174\t990\t1000\t423874\n+phiX174\t1000\t1010\t456479\n+phiX174\t1010\t1030\t586902\n+phiX174\t1030\t1040\t766233\n+phiX174\t1040\t1050\t798839\n+phiX174\t1050\t1060\t831444\n+phiX174\t1060\t1070\t880353\n+phiX174\t1070\t1080\t847747\n+phiX174\t1080\t1090\t880353\n+phiX174\t1090\t1100\t782536\n+phiX174\t1100\t1110\t749930\n+phiX174\t1110\t1120\t668416\n+phiX174\t1120\t1130\t652113\n+phiX174\t1130\t1140\t635810\n+phiX174\t1140\t1150\t684719\n+phiX174\t1150\t1160\t635810\n+phiX174\t1160\t1170\t603205\n+phiX174\t1170\t1180\t619508\n+phiX174\t1180\t1190\t586902\n+phiX174\t1190\t1200\t521691\n+phiX174\t1200\t1210\t489085\n+phiX174\t1210\t1220\t570599\n+phiX174\t1220\t1230\t489085\n+phiX174\t1230\t1240\t456479\n+phiX174\t1240\t1250\t358662\n+phiX174\t1250\t1260\t342359\n+phiX174\t1260\t1270\t407571\n+phiX174\t1270\t1280\t358662\n+phiX174\t1280\t1290\t374965\n+phiX174\t1290\t1300\t326057\n+phiX174\t1300\t1310\t391268\n+phiX174\t1310\t1320\t521691\n+phiX174\t1320\t1330\t505388\n+phiX174\t1330\t1340\t521691\n+phiX174\t1340\t1350\t489085\n+phiX174\t1350\t1370\t505388\n+phiX174\t1370\t1390\t472782\n+phiX174\t1390\t1400\t358662\n+phiX174\t1400\t1410\t456479\n+phiX174\t1410\t1430\t489085\n+phiX174\t1430\t1450\t554296\n+phiX174\t1450\t1460\t570599\n+phiX174\t1460\t1470\t586902\n+phiX174\t1470\t1480\t619508\n+phiX174\t1480\t1490\t603205\n+phiX174\t1490\t1500\t554296\n+phiX174\t1500\t1510\t668416\n+phiX174\t1510\t1520\t635810\n+phiX174\t1520\t1540\t798839\n+phiX174\t1540\t1550\t733627\n+phiX174\t1550\t1570\t766233\n+phiX174\t1570\t1580\t782536\n+phiX174\t1580\t1590\t684719\n+phiX174\t1590\t1600\t635810\n+phiX174\t1600\t1610\t570599\n+phiX174\t1610\t1620\t537993\n+phiX174\t1620\t1630\t505388\n+phiX174\t1630\t1640\t472782\n+phiX174\t1640\t1650\t489085\n+phiX174\t1650\t1660\t505388\n+phiX174\t1660\t1670\t537993\n+phiX174\t1670\t1680\t603205\n+phiX174\t1680\t1690\t521691\n+phiX174\t1690\t1700\t537993\n+phiX174\t1700\t1710\t603205\n+phiX174\t1710\t1720\t554296\n+phiX174\t1720\t1730\t537993\n+phiX174\t1730\t1740\t586902\n+phiX174\t1740\t1750\t537993\n+phiX174\t1750\t1760\t440176\n+phiX174\t1760\t1770\t423874\n+phiX174\t1770\t1780\t374965\n+phiX174\t1780\t1790\t358662\n+phiX174\t1790\t1810\t342359\n+phiX174\t1810\t1820\t326057\n+phiX174\t1820\t1830\t472782\n'..b'74\t3620\t3630\t407571\n+phiX174\t3630\t3640\t391268\n+phiX174\t3640\t3650\t358662\n+phiX174\t3650\t3660\t440176\n+phiX174\t3660\t3680\t407571\n+phiX174\t3680\t3690\t423874\n+phiX174\t3690\t3700\t342359\n+phiX174\t3700\t3710\t391268\n+phiX174\t3710\t3720\t440176\n+phiX174\t3720\t3730\t635810\n+phiX174\t3730\t3740\t603205\n+phiX174\t3740\t3750\t717325\n+phiX174\t3750\t3760\t684719\n+phiX174\t3760\t3780\t668416\n+phiX174\t3780\t3790\t635810\n+phiX174\t3790\t3800\t505388\n+phiX174\t3800\t3810\t423874\n+phiX174\t3810\t3820\t456479\n+phiX174\t3820\t3830\t440176\n+phiX174\t3830\t3840\t554296\n+phiX174\t3840\t3850\t635810\n+phiX174\t3850\t3860\t782536\n+phiX174\t3860\t3870\t815142\n+phiX174\t3870\t3880\t782536\n+phiX174\t3880\t3890\t733627\n+phiX174\t3890\t3900\t684719\n+phiX174\t3900\t3910\t652113\n+phiX174\t3910\t3920\t603205\n+phiX174\t3920\t3930\t456479\n+phiX174\t3930\t3950\t407571\n+phiX174\t3950\t3960\t440176\n+phiX174\t3960\t3970\t537993\n+phiX174\t3970\t3980\t603205\n+phiX174\t3980\t3990\t570599\n+phiX174\t3990\t4000\t652113\n+phiX174\t4000\t4010\t635810\n+phiX174\t4010\t4020\t619508\n+phiX174\t4020\t4030\t652113\n+phiX174\t4030\t4040\t668416\n+phiX174\t4040\t4050\t554296\n+phiX174\t4050\t4060\t489085\n+phiX174\t4060\t4070\t456479\n+phiX174\t4070\t4080\t407571\n+phiX174\t4080\t4090\t440176\n+phiX174\t4090\t4100\t537993\n+phiX174\t4100\t4110\t407571\n+phiX174\t4110\t4120\t374965\n+phiX174\t4120\t4130\t309754\n+phiX174\t4130\t4150\t374965\n+phiX174\t4150\t4160\t342359\n+phiX174\t4160\t4170\t391268\n+phiX174\t4170\t4180\t277148\n+phiX174\t4180\t4190\t342359\n+phiX174\t4190\t4200\t358662\n+phiX174\t4200\t4210\t374965\n+phiX174\t4210\t4230\t326057\n+phiX174\t4230\t4250\t342359\n+phiX174\t4250\t4260\t391268\n+phiX174\t4260\t4280\t489085\n+phiX174\t4280\t4290\t456479\n+phiX174\t4290\t4300\t472782\n+phiX174\t4300\t4310\t537993\n+phiX174\t4310\t4320\t619508\n+phiX174\t4320\t4330\t586902\n+phiX174\t4330\t4340\t472782\n+phiX174\t4340\t4350\t423874\n+phiX174\t4350\t4360\t440176\n+phiX174\t4360\t4380\t521691\n+phiX174\t4380\t4390\t489085\n+phiX174\t4390\t4400\t456479\n+phiX174\t4400\t4410\t537993\n+phiX174\t4410\t4420\t668416\n+phiX174\t4420\t4430\t717325\n+phiX174\t4430\t4440\t798839\n+phiX174\t4440\t4450\t831444\n+phiX174\t4450\t4460\t815142\n+phiX174\t4460\t4470\t782536\n+phiX174\t4470\t4480\t798839\n+phiX174\t4480\t4490\t701022\n+phiX174\t4490\t4500\t635810\n+phiX174\t4500\t4510\t619508\n+phiX174\t4510\t4520\t472782\n+phiX174\t4520\t4540\t440176\n+phiX174\t4540\t4550\t505388\n+phiX174\t4550\t4560\t489085\n+phiX174\t4560\t4570\t440176\n+phiX174\t4570\t4580\t472782\n+phiX174\t4580\t4590\t423874\n+phiX174\t4590\t4600\t440176\n+phiX174\t4600\t4610\t537993\n+phiX174\t4610\t4620\t521691\n+phiX174\t4620\t4630\t586902\n+phiX174\t4630\t4640\t619508\n+phiX174\t4640\t4660\t701022\n+phiX174\t4660\t4670\t733627\n+phiX174\t4670\t4680\t684719\n+phiX174\t4680\t4690\t619508\n+phiX174\t4690\t4700\t701022\n+phiX174\t4700\t4720\t489085\n+phiX174\t4720\t4730\t407571\n+phiX174\t4730\t4740\t472782\n+phiX174\t4740\t4760\t570599\n+phiX174\t4760\t4780\t603205\n+phiX174\t4780\t4790\t619508\n+phiX174\t4790\t4800\t701022\n+phiX174\t4800\t4810\t684719\n+phiX174\t4810\t4820\t668416\n+phiX174\t4820\t4830\t603205\n+phiX174\t4830\t4850\t635810\n+phiX174\t4850\t4860\t586902\n+phiX174\t4860\t4870\t521691\n+phiX174\t4870\t4880\t505388\n+phiX174\t4880\t4890\t603205\n+phiX174\t4890\t4900\t521691\n+phiX174\t4900\t4910\t489085\n+phiX174\t4910\t4920\t423874\n+phiX174\t4920\t4930\t391268\n+phiX174\t4930\t4950\t358662\n+phiX174\t4950\t4960\t277148\n+phiX174\t4960\t4970\t179331\n+phiX174\t4970\t4980\t244542\n+phiX174\t4980\t4990\t211937\n+phiX174\t4990\t5020\t293451\n+phiX174\t5020\t5030\t358662\n+phiX174\t5030\t5040\t342359\n+phiX174\t5040\t5050\t374965\n+phiX174\t5050\t5060\t309754\n+phiX174\t5060\t5070\t293451\n+phiX174\t5070\t5080\t244542\n+phiX174\t5080\t5090\t309754\n+phiX174\t5090\t5100\t277148\n+phiX174\t5100\t5110\t228240\n+phiX174\t5110\t5120\t260845\n+phiX174\t5120\t5130\t326057\n+phiX174\t5130\t5140\t423874\n+phiX174\t5140\t5160\t505388\n+phiX174\t5160\t5170\t489085\n+phiX174\t5170\t5180\t586902\n+phiX174\t5180\t5190\t570599\n+phiX174\t5190\t5200\t537993\n+phiX174\t5200\t5210\t472782\n+phiX174\t5210\t5220\t456479\n+phiX174\t5220\t5230\t407571\n+phiX174\t5230\t5240\t456479\n+phiX174\t5240\t5250\t374965\n+phiX174\t5250\t5260\t277148\n+phiX174\t5260\t5270\t309754\n+phiX174\t5270\t5280\t342359\n+phiX174\t5280\t5290\t277148\n+phiX174\t5290\t5300\t195634\n+phiX174\t5300\t5310\t146725\n+phiX174\t5310\t5340\t97817\n+phiX174\t5340\t5350\t65211.3\n+phiX174\t5350\t5386\t32605.7\n'
b
diff -r 000000000000 -r 1638c02b28b5 test-data/bamCoverage_result4.bw
b
Binary file test-data/bamCoverage_result4.bw has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/bamCoverage_result5.bw
b
Binary file test-data/bamCoverage_result5.bw has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/bamCoverage_result6.bw
b
Binary file test-data/bamCoverage_result6.bw has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/bamPEFragmentSize_histogram_result1.png
b
Binary file test-data/bamPEFragmentSize_histogram_result1.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/bamPEFragmentSize_result1.txt
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/bamPEFragmentSize_result1.txt Mon Dec 05 08:09:05 2016 -0500
b
@@ -0,0 +1,22 @@
+
+
+BAM file : 0.bam
+Sample size: 3
+
+Fragment lengths:
+Min.: 241.0
+1st Qu.: 241.5
+Mean: 244.666666667
+Median: 242.0
+3rd Qu.: 246.5
+Max.: 251.0
+Std: 4.49691252108
+
+Read lengths:
+Min.: 251.0
+1st Qu.: 251.0
+Mean: 251.0
+Median: 251.0
+3rd Qu.: 251.0
+Max.: 251.0
+Std: 0.0
b
diff -r 000000000000 -r 1638c02b28b5 test-data/bigwigCompare_result1.bw
b
Binary file test-data/bigwigCompare_result1.bw has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/bigwigCompare_result2.bg
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/bigwigCompare_result2.bg Mon Dec 05 08:09:05 2016 -0500
b
@@ -0,0 +1,3 @@
+ch1 0 400 1
+ch2 0 400 1
+ch3 0 400 1
b
diff -r 000000000000 -r 1638c02b28b5 test-data/bowtie2 test1.bam
b
Binary file test-data/bowtie2 test1.bam has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/computeGCBias_result1.png
b
Binary file test-data/computeGCBias_result1.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/computeGCBias_result1.tabular
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/computeGCBias_result1.tabular Mon Dec 05 08:09:05 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 1638c02b28b5 test-data/computeMatrix1.bed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/computeMatrix1.bed Mon Dec 05 08:09:05 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 1638c02b28b5 test-data/computeMatrix2.bed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/computeMatrix2.bed Mon Dec 05 08:09:05 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 1638c02b28b5 test-data/computeMatrix2.bw
b
Binary file test-data/computeMatrix2.bw has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/computeMatrixOperations.txt
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/computeMatrixOperations.txt Mon Dec 05 08:09:05 2016 -0500
b
@@ -0,0 +1,4 @@
+Groups:
+ genes
+Samples:
+ file_0
b
diff -r 000000000000 -r 1638c02b28b5 test-data/computeMatrixOperations_result2.mat.gz
b
Binary file test-data/computeMatrixOperations_result2.mat.gz has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/computeMatrix_result1.gz
b
Binary file test-data/computeMatrix_result1.gz has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/computeMatrix_result2.gz
b
Binary file test-data/computeMatrix_result2.gz has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/computeMatrix_result3.gz
b
Binary file test-data/computeMatrix_result3.gz has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/correctGCBias_result1.bam
b
Binary file test-data/correctGCBias_result1.bam has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/heatmapper_result1.png
b
Binary file test-data/heatmapper_result1.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/heatmapper_result2.png
b
Binary file test-data/heatmapper_result2.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/heatmapper_result2.tabular
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/heatmapper_result2.tabular Mon Dec 05 08:09:05 2016 -0500
b
@@ -0,0 +1,3 @@
+bin labels -0.0Kb 0.0Kb
+bins 1 2
+file_0 genes 2477942.34473 2610259.65234
b
diff -r 000000000000 -r 1638c02b28b5 test-data/multiBamSummary_regions.bed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/multiBamSummary_regions.bed Mon Dec 05 08:09:05 2016 -0500
b
@@ -0,0 +1,3 @@
+chrM 1 10
+chrM 5 15
+chrM 10 20
b
diff -r 000000000000 -r 1638c02b28b5 test-data/multiBamSummary_result1.npz
b
Binary file test-data/multiBamSummary_result1.npz has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/multiBamSummary_result2.npz
b
Binary file test-data/multiBamSummary_result2.npz has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/multiBigwigSummary_result1.npz
b
Binary file test-data/multiBigwigSummary_result1.npz has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/multiBigwigSummary_result1.png
b
Binary file test-data/multiBigwigSummary_result1.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/paired_chr2L.bam
b
Binary file test-data/paired_chr2L.bam has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/phiX.2bit
b
Binary file test-data/phiX.2bit has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/phiX.bam
b
Binary file test-data/phiX.bam has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/phiX.bam.bai
b
Binary file test-data/phiX.bam.bai has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/phiX.fasta
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/phiX.fasta Mon Dec 05 08:09:05 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 1638c02b28b5 test-data/plotCorrelation_result1.png
b
Binary file test-data/plotCorrelation_result1.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/plotCorrelation_result1.tabular
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/plotCorrelation_result1.tabular Mon Dec 05 08:09:05 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 1638c02b28b5 test-data/plotCorrelation_result2.png
b
Binary file test-data/plotCorrelation_result2.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/plotCoverage_result1.png
b
Binary file test-data/plotCoverage_result1.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/plotCoverage_result1.tabular
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/plotCoverage_result1.tabular Mon Dec 05 08:09:05 2016 -0500
b
b"@@ -0,0 +1,16570 @@\n+#'chr'\t'start'\t'end'\t'bowtie2 test1.bam'\t'bowtie2 test1.bam'\n+chrM\t0\t1\t23.0\t23.0\n+chrM\t1\t2\t35.0\t35.0\n+chrM\t2\t3\t35.0\t35.0\n+chrM\t3\t4\t35.0\t35.0\n+chrM\t4\t5\t35.0\t35.0\n+chrM\t5\t6\t35.0\t35.0\n+chrM\t6\t7\t35.0\t35.0\n+chrM\t7\t8\t35.0\t35.0\n+chrM\t8\t9\t35.0\t35.0\n+chrM\t9\t10\t35.0\t35.0\n+chrM\t10\t11\t35.0\t35.0\n+chrM\t11\t12\t35.0\t35.0\n+chrM\t12\t13\t35.0\t35.0\n+chrM\t13\t14\t35.0\t35.0\n+chrM\t14\t15\t35.0\t35.0\n+chrM\t15\t16\t35.0\t35.0\n+chrM\t16\t17\t35.0\t35.0\n+chrM\t17\t18\t35.0\t35.0\n+chrM\t18\t19\t35.0\t35.0\n+chrM\t19\t20\t35.0\t35.0\n+chrM\t20\t21\t35.0\t35.0\n+chrM\t21\t22\t35.0\t35.0\n+chrM\t22\t23\t35.0\t35.0\n+chrM\t23\t24\t35.0\t35.0\n+chrM\t24\t25\t35.0\t35.0\n+chrM\t25\t26\t35.0\t35.0\n+chrM\t26\t27\t35.0\t35.0\n+chrM\t27\t28\t35.0\t35.0\n+chrM\t28\t29\t35.0\t35.0\n+chrM\t29\t30\t35.0\t35.0\n+chrM\t30\t31\t35.0\t35.0\n+chrM\t31\t32\t35.0\t35.0\n+chrM\t32\t33\t35.0\t35.0\n+chrM\t33\t34\t35.0\t35.0\n+chrM\t34\t35\t35.0\t35.0\n+chrM\t35\t36\t35.0\t35.0\n+chrM\t36\t37\t35.0\t35.0\n+chrM\t37\t38\t35.0\t35.0\n+chrM\t38\t39\t35.0\t35.0\n+chrM\t39\t40\t35.0\t35.0\n+chrM\t40\t41\t35.0\t35.0\n+chrM\t41\t42\t35.0\t35.0\n+chrM\t42\t43\t35.0\t35.0\n+chrM\t43\t44\t35.0\t35.0\n+chrM\t44\t45\t35.0\t35.0\n+chrM\t45\t46\t35.0\t35.0\n+chrM\t46\t47\t35.0\t35.0\n+chrM\t47\t48\t35.0\t35.0\n+chrM\t48\t49\t35.0\t35.0\n+chrM\t49\t50\t35.0\t35.0\n+chrM\t50\t51\t35.0\t35.0\n+chrM\t51\t52\t35.0\t35.0\n+chrM\t52\t53\t35.0\t35.0\n+chrM\t53\t54\t35.0\t35.0\n+chrM\t54\t55\t35.0\t35.0\n+chrM\t55\t56\t35.0\t35.0\n+chrM\t56\t57\t35.0\t35.0\n+chrM\t57\t58\t35.0\t35.0\n+chrM\t58\t59\t35.0\t35.0\n+chrM\t59\t60\t35.0\t35.0\n+chrM\t60\t61\t35.0\t35.0\n+chrM\t61\t62\t35.0\t35.0\n+chrM\t62\t63\t35.0\t35.0\n+chrM\t63\t64\t35.0\t35.0\n+chrM\t64\t65\t35.0\t35.0\n+chrM\t65\t66\t35.0\t35.0\n+chrM\t66\t67\t35.0\t35.0\n+chrM\t67\t68\t35.0\t35.0\n+chrM\t68\t69\t35.0\t35.0\n+chrM\t69\t70\t35.0\t35.0\n+chrM\t70\t71\t35.0\t35.0\n+chrM\t71\t72\t35.0\t35.0\n+chrM\t72\t73\t35.0\t35.0\n+chrM\t73\t74\t35.0\t35.0\n+chrM\t74\t75\t35.0\t35.0\n+chrM\t75\t76\t35.0\t35.0\n+chrM\t76\t77\t35.0\t35.0\n+chrM\t77\t78\t35.0\t35.0\n+chrM\t78\t79\t35.0\t35.0\n+chrM\t79\t80\t35.0\t35.0\n+chrM\t80\t81\t35.0\t35.0\n+chrM\t81\t82\t35.0\t35.0\n+chrM\t82\t83\t35.0\t35.0\n+chrM\t83\t84\t35.0\t35.0\n+chrM\t84\t85\t35.0\t35.0\n+chrM\t85\t86\t35.0\t35.0\n+chrM\t86\t87\t35.0\t35.0\n+chrM\t87\t88\t35.0\t35.0\n+chrM\t88\t89\t35.0\t35.0\n+chrM\t89\t90\t35.0\t35.0\n+chrM\t90\t91\t35.0\t35.0\n+chrM\t91\t92\t35.0\t35.0\n+chrM\t92\t93\t35.0\t35.0\n+chrM\t93\t94\t35.0\t35.0\n+chrM\t94\t95\t35.0\t35.0\n+chrM\t95\t96\t35.0\t35.0\n+chrM\t96\t97\t35.0\t35.0\n+chrM\t97\t98\t35.0\t35.0\n+chrM\t98\t99\t35.0\t35.0\n+chrM\t99\t100\t35.0\t35.0\n+chrM\t100\t101\t35.0\t35.0\n+chrM\t101\t102\t35.0\t35.0\n+chrM\t102\t103\t35.0\t35.0\n+chrM\t103\t104\t35.0\t35.0\n+chrM\t104\t105\t35.0\t35.0\n+chrM\t105\t106\t35.0\t35.0\n+chrM\t106\t107\t35.0\t35.0\n+chrM\t107\t108\t35.0\t35.0\n+chrM\t108\t109\t35.0\t35.0\n+chrM\t109\t110\t35.0\t35.0\n+chrM\t110\t111\t35.0\t35.0\n+chrM\t111\t112\t35.0\t35.0\n+chrM\t112\t113\t35.0\t35.0\n+chrM\t113\t114\t35.0\t35.0\n+chrM\t114\t115\t35.0\t35.0\n+chrM\t115\t116\t35.0\t35.0\n+chrM\t116\t117\t35.0\t35.0\n+chrM\t117\t118\t35.0\t35.0\n+chrM\t118\t119\t35.0\t35.0\n+chrM\t119\t120\t35.0\t35.0\n+chrM\t120\t121\t35.0\t35.0\n+chrM\t121\t122\t35.0\t35.0\n+chrM\t122\t123\t35.0\t35.0\n+chrM\t123\t124\t35.0\t35.0\n+chrM\t124\t125\t35.0\t35.0\n+chrM\t125\t126\t35.0\t35.0\n+chrM\t126\t127\t35.0\t35.0\n+chrM\t127\t128\t35.0\t35.0\n+chrM\t128\t129\t35.0\t35.0\n+chrM\t129\t130\t35.0\t35.0\n+chrM\t130\t131\t35.0\t35.0\n+chrM\t131\t132\t35.0\t35.0\n+chrM\t132\t133\t35.0\t35.0\n+chrM\t133\t134\t35.0\t35.0\n+chrM\t134\t135\t35.0\t35.0\n+chrM\t135\t136\t35.0\t35.0\n+chrM\t136\t137\t35.0\t35.0\n+chrM\t137\t138\t35.0\t35.0\n+chrM\t138\t139\t35.0\t35.0\n+chrM\t139\t140\t35.0\t35.0\n+chrM\t140\t141\t35.0\t35.0\n+chrM\t141\t142\t35.0\t35.0\n+chrM\t142\t143\t35.0\t35.0\n+chrM\t143\t144\t35.0\t35.0\n+chrM\t144\t145\t35.0\t35.0\n+chrM\t145\t146\t35.0\t35.0\n+chrM\t146\t147\t35.0\t35.0\n+chrM\t147\t148\t35.0\t35.0\n+chrM\t148\t149\t35.0\t35.0\n+chrM\t149\t150\t35.0\t35.0\n+chrM\t150\t151\t35.0\t35.0\n+chrM\t151\t152\t35.0\t35.0\n+chrM\t152\t153\t35.0\t35.0\n+chrM\t153\t154\t35.0\t35.0\n+chrM\t154\t155\t35.0\t35.0\n+chrM\t155\t156\t35.0\t35.0\n+chrM\t156\t157\t35.0\t35.0\n+chrM\t157\t158\t35.0\t35.0\n+chrM\t158\t159\t35.0\t35.0\n+chrM\t159\t160\t35.0\t35.0\n+chrM\t160\t161\t35.0\t35.0\n+chrM\t161\t162\t35.0\t35.0\n+chrM\t162\t163\t35.0\t35.0\n+chrM\t163\t164\t35.0\t35.0\n+chrM\t164\t165\t35.0\t35.0\n+chrM\t165\t166\t35.0\t35.0\n+chrM\t166\t167\t35.0\t35.0\n+chrM\t167\t168\t35.0\t35.0\n+chrM\t168\t169\t35.0\t35.0\n+chrM\t169\t170\t35.0\t35.0\n+chrM\t170\t171\t35.0\t35.0\n+chrM\t171\t172\t35.0\t35.0\n+chrM\t1"..b'\t16415\t16416\t0.0\t0.0\n+chrM\t16416\t16417\t0.0\t0.0\n+chrM\t16417\t16418\t0.0\t0.0\n+chrM\t16418\t16419\t0.0\t0.0\n+chrM\t16419\t16420\t0.0\t0.0\n+chrM\t16420\t16421\t0.0\t0.0\n+chrM\t16421\t16422\t0.0\t0.0\n+chrM\t16422\t16423\t0.0\t0.0\n+chrM\t16423\t16424\t0.0\t0.0\n+chrM\t16424\t16425\t0.0\t0.0\n+chrM\t16425\t16426\t0.0\t0.0\n+chrM\t16426\t16427\t0.0\t0.0\n+chrM\t16427\t16428\t0.0\t0.0\n+chrM\t16428\t16429\t0.0\t0.0\n+chrM\t16429\t16430\t0.0\t0.0\n+chrM\t16430\t16431\t0.0\t0.0\n+chrM\t16431\t16432\t0.0\t0.0\n+chrM\t16432\t16433\t0.0\t0.0\n+chrM\t16433\t16434\t0.0\t0.0\n+chrM\t16434\t16435\t0.0\t0.0\n+chrM\t16435\t16436\t0.0\t0.0\n+chrM\t16436\t16437\t0.0\t0.0\n+chrM\t16437\t16438\t0.0\t0.0\n+chrM\t16438\t16439\t0.0\t0.0\n+chrM\t16439\t16440\t0.0\t0.0\n+chrM\t16440\t16441\t0.0\t0.0\n+chrM\t16441\t16442\t0.0\t0.0\n+chrM\t16442\t16443\t0.0\t0.0\n+chrM\t16443\t16444\t0.0\t0.0\n+chrM\t16444\t16445\t0.0\t0.0\n+chrM\t16445\t16446\t0.0\t0.0\n+chrM\t16446\t16447\t0.0\t0.0\n+chrM\t16447\t16448\t0.0\t0.0\n+chrM\t16448\t16449\t0.0\t0.0\n+chrM\t16449\t16450\t0.0\t0.0\n+chrM\t16450\t16451\t0.0\t0.0\n+chrM\t16451\t16452\t0.0\t0.0\n+chrM\t16452\t16453\t0.0\t0.0\n+chrM\t16453\t16454\t0.0\t0.0\n+chrM\t16454\t16455\t0.0\t0.0\n+chrM\t16455\t16456\t0.0\t0.0\n+chrM\t16456\t16457\t0.0\t0.0\n+chrM\t16457\t16458\t0.0\t0.0\n+chrM\t16458\t16459\t0.0\t0.0\n+chrM\t16459\t16460\t0.0\t0.0\n+chrM\t16460\t16461\t0.0\t0.0\n+chrM\t16461\t16462\t0.0\t0.0\n+chrM\t16462\t16463\t0.0\t0.0\n+chrM\t16463\t16464\t0.0\t0.0\n+chrM\t16464\t16465\t0.0\t0.0\n+chrM\t16465\t16466\t0.0\t0.0\n+chrM\t16466\t16467\t0.0\t0.0\n+chrM\t16467\t16468\t0.0\t0.0\n+chrM\t16468\t16469\t0.0\t0.0\n+chrM\t16469\t16470\t0.0\t0.0\n+chrM\t16470\t16471\t0.0\t0.0\n+chrM\t16471\t16472\t0.0\t0.0\n+chrM\t16472\t16473\t0.0\t0.0\n+chrM\t16473\t16474\t0.0\t0.0\n+chrM\t16474\t16475\t0.0\t0.0\n+chrM\t16475\t16476\t0.0\t0.0\n+chrM\t16476\t16477\t0.0\t0.0\n+chrM\t16477\t16478\t0.0\t0.0\n+chrM\t16478\t16479\t0.0\t0.0\n+chrM\t16479\t16480\t0.0\t0.0\n+chrM\t16480\t16481\t0.0\t0.0\n+chrM\t16481\t16482\t0.0\t0.0\n+chrM\t16482\t16483\t0.0\t0.0\n+chrM\t16483\t16484\t0.0\t0.0\n+chrM\t16484\t16485\t0.0\t0.0\n+chrM\t16485\t16486\t0.0\t0.0\n+chrM\t16486\t16487\t0.0\t0.0\n+chrM\t16487\t16488\t0.0\t0.0\n+chrM\t16488\t16489\t0.0\t0.0\n+chrM\t16489\t16490\t0.0\t0.0\n+chrM\t16490\t16491\t0.0\t0.0\n+chrM\t16491\t16492\t0.0\t0.0\n+chrM\t16492\t16493\t0.0\t0.0\n+chrM\t16493\t16494\t0.0\t0.0\n+chrM\t16494\t16495\t0.0\t0.0\n+chrM\t16495\t16496\t0.0\t0.0\n+chrM\t16496\t16497\t0.0\t0.0\n+chrM\t16497\t16498\t0.0\t0.0\n+chrM\t16498\t16499\t0.0\t0.0\n+chrM\t16499\t16500\t0.0\t0.0\n+chrM\t16500\t16501\t0.0\t0.0\n+chrM\t16501\t16502\t0.0\t0.0\n+chrM\t16502\t16503\t0.0\t0.0\n+chrM\t16503\t16504\t0.0\t0.0\n+chrM\t16504\t16505\t0.0\t0.0\n+chrM\t16505\t16506\t0.0\t0.0\n+chrM\t16506\t16507\t0.0\t0.0\n+chrM\t16507\t16508\t0.0\t0.0\n+chrM\t16508\t16509\t0.0\t0.0\n+chrM\t16509\t16510\t0.0\t0.0\n+chrM\t16510\t16511\t0.0\t0.0\n+chrM\t16511\t16512\t0.0\t0.0\n+chrM\t16512\t16513\t0.0\t0.0\n+chrM\t16513\t16514\t0.0\t0.0\n+chrM\t16514\t16515\t0.0\t0.0\n+chrM\t16515\t16516\t0.0\t0.0\n+chrM\t16516\t16517\t0.0\t0.0\n+chrM\t16517\t16518\t0.0\t0.0\n+chrM\t16518\t16519\t0.0\t0.0\n+chrM\t16519\t16520\t0.0\t0.0\n+chrM\t16520\t16521\t0.0\t0.0\n+chrM\t16521\t16522\t0.0\t0.0\n+chrM\t16522\t16523\t0.0\t0.0\n+chrM\t16523\t16524\t0.0\t0.0\n+chrM\t16524\t16525\t0.0\t0.0\n+chrM\t16525\t16526\t0.0\t0.0\n+chrM\t16526\t16527\t0.0\t0.0\n+chrM\t16527\t16528\t0.0\t0.0\n+chrM\t16528\t16529\t0.0\t0.0\n+chrM\t16529\t16530\t0.0\t0.0\n+chrM\t16530\t16531\t0.0\t0.0\n+chrM\t16531\t16532\t0.0\t0.0\n+chrM\t16532\t16533\t0.0\t0.0\n+chrM\t16533\t16534\t0.0\t0.0\n+chrM\t16534\t16535\t0.0\t0.0\n+chrM\t16535\t16536\t0.0\t0.0\n+chrM\t16536\t16537\t0.0\t0.0\n+chrM\t16537\t16538\t0.0\t0.0\n+chrM\t16538\t16539\t0.0\t0.0\n+chrM\t16539\t16540\t0.0\t0.0\n+chrM\t16540\t16541\t0.0\t0.0\n+chrM\t16541\t16542\t0.0\t0.0\n+chrM\t16542\t16543\t0.0\t0.0\n+chrM\t16543\t16544\t0.0\t0.0\n+chrM\t16544\t16545\t0.0\t0.0\n+chrM\t16545\t16546\t0.0\t0.0\n+chrM\t16546\t16547\t0.0\t0.0\n+chrM\t16547\t16548\t0.0\t0.0\n+chrM\t16548\t16549\t0.0\t0.0\n+chrM\t16549\t16550\t0.0\t0.0\n+chrM\t16550\t16551\t0.0\t0.0\n+chrM\t16551\t16552\t0.0\t0.0\n+chrM\t16552\t16553\t0.0\t0.0\n+chrM\t16553\t16554\t0.0\t0.0\n+chrM\t16554\t16555\t0.0\t0.0\n+chrM\t16555\t16556\t0.0\t0.0\n+chrM\t16556\t16557\t0.0\t0.0\n+chrM\t16557\t16558\t0.0\t0.0\n+chrM\t16558\t16559\t0.0\t0.0\n+chrM\t16559\t16560\t0.0\t0.0\n+chrM\t16560\t16561\t0.0\t0.0\n+chrM\t16561\t16562\t0.0\t0.0\n+chrM\t16562\t16563\t0.0\t0.0\n+chrM\t16563\t16564\t0.0\t0.0\n+chrM\t16564\t16565\t0.0\t0.0\n+chrM\t16565\t16566\t0.0\t0.0\n+chrM\t16566\t16567\t0.0\t0.0\n+chrM\t16567\t16568\t0.0\t0.0\n+chrM\t16568\t16569\t0.0\t0.0\n'
b
diff -r 000000000000 -r 1638c02b28b5 test-data/plotEnrichment_output.png
b
Binary file test-data/plotEnrichment_output.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/plotEnrichment_output.txt
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/plotEnrichment_output.txt Mon Dec 05 08:09:05 2016 -0500
b
@@ -0,0 +1,5 @@
+file featureType percent
+bowtie2 test1.bam down 100.00
+bowtie2 test1.bam up 100.00
+bowtie2 test1.bam down 100.00
+bowtie2 test1.bam up 100.00
b
diff -r 000000000000 -r 1638c02b28b5 test-data/plotFingerprint_quality_metrics.tabular
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/plotFingerprint_quality_metrics.tabular Mon Dec 05 08:09:05 2016 -0500
b
@@ -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
b
diff -r 000000000000 -r 1638c02b28b5 test-data/plotFingerprint_result1.png
b
Binary file test-data/plotFingerprint_result1.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/plotFingerprint_result2.png
b
Binary file test-data/plotFingerprint_result2.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/plotFingerprint_result2.tabular
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/plotFingerprint_result2.tabular Mon Dec 05 08:09:05 2016 -0500
b
b"@@ -0,0 +1,16071 @@\n+'bowtie2 test1.bam'\t'bowtie2 test1.bam'\n+1085\t1085\n+1782\t1782\n+2706\t2706\n+3570\t3570\n+6753\t6753\n+8069\t8069\n+8034\t8034\n+7999\t7999\n+7964\t7964\n+7929\t7929\n+7894\t7894\n+7859\t7859\n+7824\t7824\n+7789\t7789\n+7754\t7754\n+7719\t7719\n+7684\t7684\n+7649\t7649\n+7614\t7614\n+7579\t7579\n+7544\t7544\n+7509\t7509\n+7474\t7474\n+7439\t7439\n+7404\t7404\n+7369\t7369\n+7334\t7334\n+7299\t7299\n+7264\t7264\n+7229\t7229\n+7194\t7194\n+7159\t7159\n+7124\t7124\n+7089\t7089\n+7054\t7054\n+7019\t7019\n+6984\t6984\n+6949\t6949\n+6914\t6914\n+6879\t6879\n+6844\t6844\n+6809\t6809\n+6774\t6774\n+6739\t6739\n+6704\t6704\n+6669\t6669\n+6634\t6634\n+6599\t6599\n+6564\t6564\n+6529\t6529\n+6494\t6494\n+6459\t6459\n+6424\t6424\n+6389\t6389\n+6354\t6354\n+6319\t6319\n+6284\t6284\n+6249\t6249\n+6214\t6214\n+6179\t6179\n+6144\t6144\n+6109\t6109\n+6074\t6074\n+6039\t6039\n+6004\t6004\n+5969\t5969\n+5934\t5934\n+5899\t5899\n+5864\t5864\n+5829\t5829\n+5794\t5794\n+5759\t5759\n+5724\t5724\n+5689\t5689\n+5654\t5654\n+5619\t5619\n+5584\t5584\n+5549\t5549\n+5514\t5514\n+5479\t5479\n+5444\t5444\n+5409\t5409\n+5374\t5374\n+5339\t5339\n+5304\t5304\n+5269\t5269\n+5234\t5234\n+5199\t5199\n+5164\t5164\n+5129\t5129\n+5094\t5094\n+5059\t5059\n+5024\t5024\n+4989\t4989\n+4954\t4954\n+4919\t4919\n+4884\t4884\n+4849\t4849\n+4814\t4814\n+4779\t4779\n+4744\t4744\n+4709\t4709\n+4674\t4674\n+4639\t4639\n+4604\t4604\n+4569\t4569\n+4534\t4534\n+4499\t4499\n+4464\t4464\n+4429\t4429\n+4394\t4394\n+4359\t4359\n+4324\t4324\n+4289\t4289\n+4254\t4254\n+4219\t4219\n+4184\t4184\n+4149\t4149\n+4114\t4114\n+4079\t4079\n+4044\t4044\n+4009\t4009\n+3974\t3974\n+3939\t3939\n+3904\t3904\n+3869\t3869\n+3834\t3834\n+3799\t3799\n+3764\t3764\n+3729\t3729\n+3694\t3694\n+3659\t3659\n+3624\t3624\n+3589\t3589\n+3554\t3554\n+3519\t3519\n+3484\t3484\n+3449\t3449\n+3414\t3414\n+3379\t3379\n+3344\t3344\n+3309\t3309\n+3274\t3274\n+3239\t3239\n+3204\t3204\n+3169\t3169\n+3134\t3134\n+3099\t3099\n+3064\t3064\n+3029\t3029\n+2994\t2994\n+2959\t2959\n+2924\t2924\n+2889\t2889\n+2854\t2854\n+2819\t2819\n+2784\t2784\n+2749\t2749\n+2714\t2714\n+2679\t2679\n+2644\t2644\n+2609\t2609\n+2574\t2574\n+2539\t2539\n+2504\t2504\n+2469\t2469\n+2434\t2434\n+2399\t2399\n+2364\t2364\n+2329\t2329\n+2294\t2294\n+2259\t2259\n+2224\t2224\n+2189\t2189\n+2154\t2154\n+2119\t2119\n+2084\t2084\n+2049\t2049\n+2014\t2014\n+1979\t1979\n+1944\t1944\n+1909\t1909\n+1874\t1874\n+1839\t1839\n+1804\t1804\n+1769\t1769\n+1734\t1734\n+1699\t1699\n+1664\t1664\n+1629\t1629\n+1594\t1594\n+1559\t1559\n+1524\t1524\n+1489\t1489\n+1454\t1454\n+1419\t1419\n+1384\t1384\n+1349\t1349\n+1314\t1314\n+1279\t1279\n+1244\t1244\n+1209\t1209\n+1174\t1174\n+1139\t1139\n+1104\t1104\n+1069\t1069\n+1034\t1034\n+999\t999\n+964\t964\n+929\t929\n+894\t894\n+859\t859\n+824\t824\n+789\t789\n+754\t754\n+719\t719\n+684\t684\n+651\t651\n+618\t618\n+585\t585\n+552\t552\n+519\t519\n+486\t486\n+453\t453\n+420\t420\n+387\t387\n+354\t354\n+321\t321\n+288\t288\n+261\t261\n+236\t236\n+227\t227\n+206\t206\n+186\t186\n+167\t167\n+160\t160\n+141\t141\n+124\t124\n+107\t107\n+92\t92\n+77\t77\n+62\t62\n+52\t52\n+45\t45\n+38\t38\n+31\t31\n+24\t24\n+18\t18\n+13\t13\n+8\t8\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\t"..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 1638c02b28b5 test-data/plotPCA_result1.png
b
Binary file test-data/plotPCA_result1.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/plotPCA_result2.png
b
Binary file test-data/plotPCA_result2.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/plotPCA_result2.tabular
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/plotPCA_result2.tabular Mon Dec 05 08:09:05 2016 -0500
b
@@ -0,0 +1,3 @@
+Component bowtie2-test1.bam bowtie2-test1.bam Eigenvalue
+1 -0.707106781187 -0.707106781187 6.0
+2 -0.707106781187 0.707106781187 1.23259516441e-32
b
diff -r 000000000000 -r 1638c02b28b5 test-data/profiler_result1.png
b
Binary file test-data/profiler_result1.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/profiler_result2.png
b
Binary file test-data/profiler_result2.png has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/profiler_result2.tabular
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/profiler_result2.tabular Mon Dec 05 08:09:05 2016 -0500
b
@@ -0,0 +1,3 @@
+bin labels -0.0Kb 0.0Kb
+bins 1 2
+file_0 genes 2477942.34473 2610259.65234
b
diff -r 000000000000 -r 1638c02b28b5 test-data/sequence.2bit
b
Binary file test-data/sequence.2bit has changed
b
diff -r 000000000000 -r 1638c02b28b5 test-data/test.bw
b
Binary file test-data/test.bw has changed
b
diff -r 000000000000 -r 1638c02b28b5 tool-data/deepTools_seqs.loc.sample
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tool-data/deepTools_seqs.loc.sample Mon Dec 05 08:09:05 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 1638c02b28b5 tool-data/lastz_seqs.loc.sample
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tool-data/lastz_seqs.loc.sample Mon Dec 05 08:09:05 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 1638c02b28b5 tool_data_table_conf.xml.sample
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tool_data_table_conf.xml.sample Mon Dec 05 08:09:05 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 1638c02b28b5 tool_dependencies.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tool_dependencies.xml Mon Dec 05 08:09:05 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" prior_installation_required="True" toolshed="https://toolshed.g2.bx.psu.edu" />
+    </package>
+    <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>