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

Changeset 0:a9050bffb50c (2017-03-30)
Next changeset 1:68e57be0d284 (2017-04-03)
Commit message:
planemo upload for repository https://github.com/maxplanck-ie/HiCExplorer/tree/master/galaxy/wrapper/ commit 2f347b0756d720114f037ed1ff9ba4836e1b3b04
added:
_hicExport._xml
hicFindEnrichedContacts.xml
hicPlotMatrix.xml
involucro
macros.xml
test-data/Li_et_al_2015.h5
test-data/diagnostic_plot.png
test-data/dm3_genes.bed.gz
test-data/dm3_genes.bed6.gz
test-data/domains.bed
test-data/hicBuildMatrix_result1.bam
test-data/hicBuildMatrix_result1.h5
test-data/hicCorrectMatrix_result1.npz.h5
test-data/hicCorrelate_heatmap_result1.png
test-data/hicCorrelate_scatter_result1.png
test-data/hicFindTADs_TAD_score.tabular
test-data/hicFindTADs_find_boundaries.bed
test-data/hicFindTADs_find_boundaries.gff
test-data/hicFindTADs_find_domains.bed
test-data/hicFindTADs_find_score.bedgraph
test-data/hicPlotDistVsCounts_result1.png
test-data/hicPlotMatrix_result1.svg
test-data/hicPlotTADs_result1.svg
test-data/hicSumMatrices_result1.npz.h5
test-data/merged_matrix.npz.h5
test-data/small_test_R1_unsorted.bam
test-data/small_test_R2_unsorted.bam
test-data/small_test_matrix_50kb_res.h5
test-data/tadScoreFile.tabular_zscore_matrix.h5
test-data/tad_classification.bed
test-data/tad_score.gz
b
diff -r 000000000000 -r a9050bffb50c _hicExport._xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/_hicExport._xml Thu Mar 30 02:12:31 2017 -0400
[
@@ -0,0 +1,55 @@
+<tool id="hicExport" name="hicExport" version="1.0">
+    <description>saves a HiC Matrix in text format</description>
+    <macros>
+        <token name="@BINARY@">hicExport</token>
+        <import>macros.xml</import>
+    </macros>
+    <expand macro="requirements" />
+    <command><![CDATA[
+        hicExport
+            #if $matrix and $matrix is not None:
+                --matrix $matrix
+            #end if
+            --outputFormat $outputFormat
+            $clearMaskedBins
+            --outFileName $output
+
+    ]]></command>
+    <inputs>
+        <param label="Matrix to use" name="matrix" type="data" help="(--matrix)" />
+        <param label="Output format" name="outputFormat" type="select"
+            help="There are two possibilities: &quot;dekker&quot; and &quot;ren&quot;.
+            The dekker format outputs the whole matrix where the first column and first row are the bin widths and labels.
+            The &quot;ren&quot; format is a list of tuples of the form chrom, bin_star, bin_end, values. (--outputFormat)">
+            <option selected="true" value="dekker">Dekker (first column and first rows are labels)</option>
+            <option value="ren">Ren (chrom, bin_star, bin_end, values)</option>
+        </param>
+        <param name="clearMaskedBins" type="boolean" truevalue="--clearMaskedBins" falsevalue="" label="If set, masked bins are removed from the matrix"
+            help="Masked bins are those that do not have any values, mainly because they are repetitive regions of the genome (--clearMaskedBins)" />
+    </inputs>
+    <outputs>
+        <data format="txt" name="output"/>
+    </outputs>
+    <tests>
+        <test>
+            <param name="matrix" value="hicBuildMatrix_result1.npz"/>
+            <param name="outputFormat" value="dekker"/>
+            <output name="output" file="hicExport_result1.txt" ftpye="txt"/>
+        </test>
+        <test>
+            <param name="matrix" value="hicBuildMatrix_result1.npz"/>
+            <param name="outputFormat" value="ren"/>
+            <param name="clearMaskedBins" value="True"/>
+            <output name="output" file="hicExport_result2.txt" ftpye="txt"/>
+        </test>
+    </tests>
+    <help><![CDATA[
+
+**What it does**
+
+Saves a HiC Matrix in text format
+
+    ]]></help>
+    <expand macro="citations" />
+</tool>
+
b
diff -r 000000000000 -r a9050bffb50c hicPlotMatrix.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/hicPlotMatrix.xml Thu Mar 30 02:12:31 2017 -0400
[
@@ -0,0 +1,135 @@
+<tool id="hicexplorer_hicplotmatrix" name="@BINARY@" version="@WRAPPER_VERSION@.0">
+    <description>Plots a HiC matrix heatmap</description>
+    <macros>
+        <token name="@BINARY@">hicPlotMatrix</token>
+        <import>macros.xml</import>
+    </macros>
+    <expand macro="requirements" />
+    <command>
+<![CDATA[
+        ln -s '$matrix' input_matrix.h5 &&
+
+        @BINARY@
+
+            --matrix input_matrix.h5
+
+            #if $title and $title is not None:
+                --title '$title'
+            #end if
+
+            #if $scoreName and $scoreName is not None:
+                --scoreName '$scoreName'
+            #end if
+
+
+            --outFileName plot.svg
+
+            $perChromosome
+            $clearMaskedBins
+
+            --whatToShow $whatToShow.whatToShow_select
+
+
+            ## special: --chromosomeOrder is optional, but if given needs at least one argument
+            #set chroms = '" "'.join([ str($var.chromosome) for $var in $chromosomeOrder ])
+            #if chroms
+                --chromosomeOrder '$chroms'
+            #end if
+
+            #if $region:
+                --region '$region'
+            #end if
+
+            #if $region2:
+                --region2 '$region2'
+            #end if
+            $log1p
+            $log
+
+            #if $colormap:
+                --colorMap $colormap
+            #end if
+
+            #if $vMin:
+                --vMin $vMin
+            #end if
+
+            #if $vMax:
+                --vMax $vMax
+            #end if
+
+            #if $whatToShow.whatToShow_select != 'heatmap':
+                #if $whatToShow.zMax:
+                    --zMax $whatToShow.zMax
+                #end if
+            #end if
+
+]]>
+    </command>
+    <inputs>
+        <param argument="--matrix" type="data" format="h5" label="Hi-C matrix to plot"/>
+        <param argument="--title" type="text" optional="true" label="Plot title"/>
+        <param argument="--scoreName" type="text" optional="true" label="Score name"/>
+        <param argument="--perChromosome" type="boolean" truevalue="--perChromosome" falsevalue="" checked="false"
+            label="Plot per chromosome"
+            help="Instead of plotting the whole matrix each chromosome is plotted next to the other. This parameter is not compatible with --region" />
+        <param argument="--clearMaskedBins" type="boolean" truevalue="--clearMaskedBins" falsevalue="" checked="false"
+            label="Remove masked bins from the matrix"  />
+
+        <conditional name="whatToShow">
+            <param argument="--whatToShow" name="whatToShow_select" type="select" label="Show heatmap/3D">
+                <option value="both">Show both</option>
+                <option value="heatmap" selected="true">Only heatmap</option>
+                <option value="3D">Only 3D</option>
+            </param>
+            <when value="both">
+                <expand macro="zMax" />
+            </when>
+            <when value="3D">
+                <expand macro="zMax" />
+            </when>
+            <when value="heatmap"/>
+        </conditional>
+
+        <repeat name="chromosomeOrder" min="1" title="Chromosomes to include (and order to plot in):"
+            help="This option overrides --region and --region2">
+            <param name="chromosome" type="text" />
+        </repeat>
+
+        <param argument="--region" type="text" optional="True" label="Plot only this region"
+            help="The format is chr:start-end The plotted region contains the main diagonal and is symmetric unless  --region2 is given"/>
+        <param argument="--region2" type="text" optional="True" label="Region two to plot"
+            help="If given then only the region defined by --region and --region2 is plotted. The format is the same as --region"/>
+        <param argument="--log1p" type="boolean" truevalue="--log1p" falsevalue="" checked="false" label="Plot the log1p of the matrix values."/>
+        <param argument="--log" type="boolean" truevalue="--log" falsevalue="" checked="false" label="Plot the *MINUS* log of the matrix values."/>
+
+        <expand macro="colormap" />
+
+        <param argument="--vMin" type="float" optional="true" label="vMin"/>
+        <param argument="--vMax" type="float" optional="true" label="vMax"/>
+
+    </inputs>
+    <outputs>
+        <data name="outFileName" from_work_dir="plot.svg" format="svg" label="${tool.name} on ${on_string}"/>
+    </outputs>
+    <tests>
+        <test>
+            <param name="matrix" ftype="h5" value="Li_et_al_2015.h5"/>
+            <param name="region" value="chrX:3000000-3500000"/>
+            <param name="region2" value="chrX:3100000-3600000"/>
+            <param name="log1p" value="True"/>
+            <param name="clearMaskedBins" value="True"/>
+            <param name="whatToShow_select" value="heatmap"/>
+            <output name="outFileName" file="hicPlotMatrix_result1.svg" ftype="svg" compare="sim_size"/>
+        </test>
+    </tests>
+    <help><![CDATA[
+
+**What it does**
+
+Plots a HiC matrix heatmap.
+
+]]></help>
+    <expand macro="citations" />
+</tool>
+
b
diff -r 000000000000 -r a9050bffb50c involucro
b
Binary file involucro has changed
b
diff -r 000000000000 -r a9050bffb50c macros.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/macros.xml Thu Mar 30 02:12:31 2017 -0400
[
b'@@ -0,0 +1,542 @@\n+<macros>\n+    <xml name="stdio">\n+        <stdio>\n+            <exit_code range="1:" />\n+            <exit_code range=":-1" />\n+            <regex match="Error:" />\n+            <regex match="Exception:" />\n+            <regex match="EXception:" />\n+            <regex match="Traceback" />\n+        </stdio>\n+    </xml>\n+\n+    <token name="@THREADS@">--numberOfProcessors "\\${GALAXY_SLOTS:-4}"</token>\n+    <token name="@WRAPPER_VERSION@">1.7.1</token>\n+    <xml name="requirements">\n+        <requirements>\n+            <requirement type="package" version="2.7.13">python</requirement>\n+            <requirement type="package" version="@WRAPPER_VERSION@">hicexplorer</requirement>\n+            <yield />\n+        </requirements>\n+        <expand macro="stdio" />\n+        <version_command>@BINARY@ --version</version_command>\n+    </xml>\n+\n+    <xml name="citations">\n+        <citations>\n+            <citation type="doi">10.5281/zenodo.159780</citation>\n+            <yield />\n+        </citations>\n+    </xml>\n+\n+    <xml name="zMax">\n+        <param argument="--zMax" name="zMax" type="float" optional="true" label="zMax for 3D plot"/> <!-- this should only be enabled when both or 3d is selected for param whatToShow -->\n+    </xml>\n+\n+    <xml name="colormap">\n+        <param argument="--colorMap" name="colormap" type="select" optional="True" label="Color map to use for the heatmap" help=" Available color map names can be found here: http://www.astro.lsa.umich.edu/~msshin/science/code/matplotlib_cm/">\n+            <option value="RdYlBu">RdYlBu</option>\n+            <option value="Accent">Accent</option>\n+            <option value="Spectral">Spectral</option>\n+            <option value="Set1">Set1</option>\n+            <option value="Set2">Set2</option>\n+            <option value="Set3">Set3</option>\n+            <option value="Dark2">Dark2</option>\n+            <option value="Reds">Reds</option>\n+            <option value="Oranges">Oranges</option>\n+            <option value="Greens">Greens</option>\n+            <option value="Blues">Blues</option>\n+            <option value="Greys">Greys</option>\n+            <option value="Purples">Purples</option>\n+            <option value="Paired">Paired</option>\n+            <option value="Pastel1">Pastel1</option>\n+            <option value="Pastel2">Pastel2</option>\n+            <option value="spring">spring</option>\n+            <option value="summer">summer</option>\n+            <option value="autumn">autumn</option>\n+            <option value="winter">winter</option>\n+            <option value="hot">hot</option>\n+            <option value="coolwarm">coolwarm</option>\n+            <option value="cool">cool</option>\n+            <option value="seismic">seismic</option>\n+            <option value="terrain">terrain</option>\n+            <option value="ocean">ocean</option>\n+            <option value="rainbow">rainbow</option>\n+            <option value="bone">bone</option>\n+            <option value="flag">flag</option>\n+            <option value="prism">prism</option>\n+            <option value="cubehelix">cubehelix</option>\n+            <option value="binary">binary</option>\n+            <option value="pink">pink</option>\n+            <option value="gray">gray</option>\n+            <option value="copper">copper</option>\n+            <option value="BrBG">BrBG</option>\n+            <option value="BuGn">BuGn</option>\n+            <option value="BuPu">BuPu</option>\n+            <option value="GnBu">GnBu</option>\n+            <option value="OrRd">OrRd</option>\n+            <option value="PiYG">PiYG</option>\n+            <option value="PRGn">PRGn</option>\n+            <option value="PuOr">PuOr</option>\n+            <option value="PuRd">PuRd</option>\n+            <option value="PuBu">PuBu</option>\n+            <option value="RdBu">RdBu</option>\n+            <option value="RdGy">RdGy</option>\n+            <option value="RdPu">RdPu</option>\n+            <option value="YlGn">YlGn</option'..b'="93260000" />\n+        </conditional>\n+    </xml>\n+\n+    <xml name="image_file_format">\n+        <param name="outFileFormat" type="select" label="Image file format">\n+            <option value="png" selected="true">png</option>\n+            <option value="pdf">pdf</option>\n+            <option value="svg">svg</option>\n+            <option value="eps">eps</option>\n+            <option value="emf">emf</option>\n+        </param>\n+    </xml>\n+\n+    <xml name="missingDataAsZero">\n+                <param name="missingDataAsZero" type="boolean" truevalue="yes" falsevalue="no" checked="True"\n+                    label ="Treat missing data as zero"\n+                    help  ="This parameter determines if missing data should be treated as zeros. If unchecked, missing data will be ignored and not included in the output file. Missing data is defined as those regions for which both BAM files have 0 reads." />\n+    </xml>\n+\n+    <xml name="input_save_matrix_values">\n+        <param name="saveMatrix" type="boolean" label="Save the matrix of values underlying the heatmap"/>\n+    </xml>\n+\n+    <xml name="input_graphic_output_settings">\n+        <conditional name="output" >\n+            <param name="showOutputSettings" type="select" label="Show advanced output settings" >\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+                <param name="saveData" type="boolean" label="Save the data underlying the average profile"/>\n+                <param name="saveSortedRegions" type="boolean" label="Save the regions after skipping zeros or min/max threshold values" help="The order of the regions in the file follows the sorting order selected. This is useful, for example, to generate other heatmaps keeping the sorting of the first heatmap."/>\n+            </when>\n+        </conditional>\n+    </xml>\n+\n+    <xml name="input_image_file_format">\n+        <param name="outFileFormat" type="select" label="Image file format">\n+            <option value="png" selected="true">png</option>\n+            <option value="pdf">pdf</option>\n+            <option value="svg">svg</option>\n+            <option value="eps">eps</option>\n+            <option value="emf">emf</option>\n+        </param>\n+    </xml>\n+\n+    <xml name="output_image_file_format">\n+        <data format="png" name="outFileName" label="${tool.name} image">\n+            <change_format>\n+                <when input="output.outFileFormat" value="pdf" format="pdf" />\n+                <when input="output.outFileFormat" value="svg" format="svg" />\n+                <when input="output.outFileFormat" value="eps" format="eps" />\n+                <when input="output.outFileFormat" value="emf" format="emf" />\n+            </change_format>\n+        </data>\n+    </xml>\n+\n+    <xml name="output_save_matrix_values">\n+        <data format="tabular" name="outFileNameMatrix" label="${tool.name} on ${on_string}: Heatmap values">\n+            <filter>\n+            ((\n+                output[\'showOutputSettings\'] == \'yes\' and\n+                output[\'saveMatrix\'] is True\n+            ))\n+            </filter>\n+        </data>\n+    </xml>\n+\n+    <xml name="output_graphic_outputs">\n+        <data format="tabular" name="outFileNameData" label="${tool.name} on ${on_string}: averages per matrix column">\n+            <filter>\n+            ((\n+                output[\'showOutputSettings\'] == \'yes\' and\n+                output[\'saveData\'] is True\n+            ))\n+            </filter>\n+        </data>\n+        <data format="bed" name="outFileSortedRegions" label="${tool.name} on ${on_string}: sorted/filtered regions">\n+            <filter>\n+            ((\n+                output[\'showOutputSettings\'] == \'yes\' and\n+                output[\'saveSortedRegions\'] is True\n+            ))\n+            </filter>\n+        </data>\n+    </xml>\n+\n+\n+\n+</macros>\n'
b
diff -r 000000000000 -r a9050bffb50c test-data/Li_et_al_2015.h5
b
Binary file test-data/Li_et_al_2015.h5 has changed
b
diff -r 000000000000 -r a9050bffb50c test-data/diagnostic_plot.png
b
Binary file test-data/diagnostic_plot.png has changed
b
diff -r 000000000000 -r a9050bffb50c test-data/dm3_genes.bed.gz
b
Binary file test-data/dm3_genes.bed.gz has changed
b
diff -r 000000000000 -r a9050bffb50c test-data/dm3_genes.bed6.gz
b
Binary file test-data/dm3_genes.bed6.gz has changed
b
diff -r 000000000000 -r a9050bffb50c test-data/domains.bed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/domains.bed Thu Mar 30 02:12:31 2017 -0400
b
b'@@ -0,0 +1,498 @@\n+X\t73624\t98011\tID_2159\t0.24484225\t.\t73624\t98011\t31,120,180\n+X\t98011\t163162\tID_2160\t0.078244125\t.\t98011\t163162\t51,160,44\n+X\t163162\t173032\tID_2161\t0.1488125\t.\t163162\t173032\t31,120,180\n+X\t173032\t245055\tID_2162\t0.10021325\t.\t173032\t245055\t51,160,44\n+X\t245055\t256176\tID_2163\t0.24866425\t.\t245055\t256176\t31,120,180\n+X\t256176\t370742\tID_2164\t0.218105125\t.\t256176\t370742\t51,160,44\n+X\t370742\t387797\tID_2165\t0.09920975\t.\t370742\t387797\t31,120,180\n+X\t387797\t425626\tID_2166\t0.1315695\t.\t387797\t425626\t51,160,44\n+X\t425626\t511958\tID_2167\t0.12402975\t.\t425626\t511958\t31,120,180\n+X\t511958\t549785\tID_2168\t0.093640125\t.\t511958\t549785\t51,160,44\n+X\t549785\t653272\tID_2169\t0.067879125\t.\t549785\t653272\t31,120,180\n+X\t653272\t659365\tID_2170\t0.14385325\t.\t653272\t659365\t51,160,44\n+X\t659365\t695160\tID_2171\t0.145119\t.\t659365\t695160\t31,120,180\n+X\t695160\t762046\tID_2172\t0.136754875\t.\t695160\t762046\t51,160,44\n+X\t762046\t811178\tID_2173\t0.25650025\t.\t762046\t811178\t31,120,180\n+X\t811178\t835720\tID_2174\t0.202794625\t.\t811178\t835720\t51,160,44\n+X\t835720\t920690\tID_2175\t0.201687125\t.\t835720\t920690\t31,120,180\n+X\t920690\t950857\tID_2176\t0.16776375\t.\t920690\t950857\t51,160,44\n+X\t950857\t1129676\tID_2177\t0.16578775\t.\t950857\t1129676\t31,120,180\n+X\t1129676\t1182377\tID_2178\t0.125434875\t.\t1129676\t1182377\t51,160,44\n+X\t1182377\t1215679\tID_2179\t0.127644875\t.\t1182377\t1215679\t31,120,180\n+X\t1215679\t1235538\tID_2180\t0.22391225\t.\t1215679\t1235538\t51,160,44\n+X\t1235538\t1269714\tID_2181\t0.14388225\t.\t1235538\t1269714\t31,120,180\n+X\t1269714\t1275302\tID_2182\t0.167577875\t.\t1269714\t1275302\t51,160,44\n+X\t1275302\t1293467\tID_2183\t0.175340125\t.\t1275302\t1293467\t31,120,180\n+X\t1293467\t1348185\tID_2184\t0.148177125\t.\t1293467\t1348185\t51,160,44\n+X\t1348185\t1378848\tID_2185\t0.104369375\t.\t1348185\t1378848\t31,120,180\n+X\t1378848\t1417785\tID_2186\t0.055848375\t.\t1378848\t1417785\t51,160,44\n+X\t1417785\t1509963\tID_2187\t0.1912035\t.\t1417785\t1509963\t31,120,180\n+X\t1509963\t1559576\tID_2188\t0.2622635\t.\t1509963\t1559576\t51,160,44\n+X\t1559576\t1590437\tID_2189\t0.1759295\t.\t1559576\t1590437\t31,120,180\n+X\t1590437\t1666959\tID_2190\t0.194465875\t.\t1590437\t1666959\t51,160,44\n+X\t1666959\t1721470\tID_2191\t0.22292475\t.\t1666959\t1721470\t31,120,180\n+X\t1721470\t1736471\tID_2192\t0.16601325\t.\t1721470\t1736471\t51,160,44\n+X\t1736471\t1753234\tID_2193\t0.208370375\t.\t1736471\t1753234\t31,120,180\n+X\t1753234\t1771304\tID_2194\t0.132250375\t.\t1753234\t1771304\t51,160,44\n+X\t1771304\t1784093\tID_2195\t0.180027625\t.\t1771304\t1784093\t31,120,180\n+X\t1784093\t1794340\tID_2196\t0.177347375\t.\t1784093\t1794340\t51,160,44\n+X\t1794340\t1847331\tID_2197\t0.155302\t.\t1794340\t1847331\t31,120,180\n+X\t1847331\t1904345\tID_2198\t0.091353\t.\t1847331\t1904345\t51,160,44\n+X\t1904345\t1935891\tID_2199\t0.144274625\t.\t1904345\t1935891\t31,120,180\n+X\t1935891\t1965737\tID_2200\t0.19876325\t.\t1935891\t1965737\t51,160,44\n+X\t1965737\t1988470\tID_2201\t0.0987945\t.\t1965737\t1988470\t31,120,180\n+X\t1988470\t2015677\tID_2202\t0.126307125\t.\t1988470\t2015677\t51,160,44\n+X\t2015677\t2039288\tID_2203\t0.11469475\t.\t2015677\t2039288\t31,120,180\n+X\t2039288\t2053111\tID_2204\t0.11339725\t.\t2039288\t2053111\t51,160,44\n+X\t2053111\t2066003\tID_2205\t0.092177375\t.\t2053111\t2066003\t31,120,180\n+X\t2066003\t2116316\tID_2206\t0.14135825\t.\t2066003\t2116316\t51,160,44\n+X\t2116316\t2136020\tID_2207\t0.13430075\t.\t2116316\t2136020\t31,120,180\n+X\t2136020\t2164365\tID_2208\t0.194079625\t.\t2136020\t2164365\t51,160,44\n+X\t2164365\t2169170\tID_2209\t0.11761975\t.\t2164365\t2169170\t31,120,180\n+X\t2169170\t2179239\tID_2210\t0.132970125\t.\t2169170\t2179239\t51,160,44\n+X\t2179239\t2234701\tID_2211\t0.159815375\t.\t2179239\t2234701\t31,120,180\n+X\t2234701\t2238520\tID_2212\t0.127241125\t.\t2234701\t2238520\t51,160,44\n+X\t2238520\t2280041\tID_2213\t0.125103375\t.\t2238520\t2280041\t31,120,180\n+X\t2280041\t2318567\tID_2214\t0.270983375\t.\t2280041\t2318567\t51,160,44\n+X\t2318567\t2338007\tID_2215\t0.167261375\t.\t2318567\t2338007\t31,120,180\n+X\t2338007\t2477307\tID_2216\t0.150055375\t.\t2338007\t2477307\t51,160,44\n+X\t2477307\t2508070\tID_2217\t0.103612\t.\t2477307\t2508070\t31,120,180\n+X\t2508070\t2528894\tID_2218\t0.156815\t.\t2508070\t2528894\t51,160,44\n+X\t2528894\t2557128\tID_2219\t0.0914065\t.\t2528894\t2557128\t31'..b'9416481\tID_2600\t0.21749325\t.\t19399952\t19416481\t51,160,44\n+X\t19416481\t19456185\tID_2601\t0.185489875\t.\t19416481\t19456185\t31,120,180\n+X\t19456185\t19473065\tID_2602\t0.188489875\t.\t19456185\t19473065\t51,160,44\n+X\t19473065\t19491987\tID_2603\t0.152931125\t.\t19473065\t19491987\t31,120,180\n+X\t19491987\t19507538\tID_2604\t0.12015975\t.\t19491987\t19507538\t51,160,44\n+X\t19507538\t19531934\tID_2605\t0.159455125\t.\t19507538\t19531934\t31,120,180\n+X\t19531934\t19557899\tID_2606\t0.1147575\t.\t19531934\t19557899\t51,160,44\n+X\t19557899\t19577569\tID_2607\t0.14880575\t.\t19557899\t19577569\t31,120,180\n+X\t19577569\t19607671\tID_2608\t0.170184125\t.\t19577569\t19607671\t51,160,44\n+X\t19607671\t19625150\tID_2609\t0.12170925\t.\t19607671\t19625150\t31,120,180\n+X\t19625150\t19639107\tID_2610\t0.18795025\t.\t19625150\t19639107\t51,160,44\n+X\t19639107\t19644907\tID_2611\t0.1373115\t.\t19639107\t19644907\t31,120,180\n+X\t19644907\t19657054\tID_2612\t0.136064375\t.\t19644907\t19657054\t51,160,44\n+X\t19657054\t19686912\tID_2613\t0.11615975\t.\t19657054\t19686912\t31,120,180\n+X\t19686912\t19745861\tID_2614\t0.280371875\t.\t19686912\t19745861\t51,160,44\n+X\t19745861\t19760530\tID_2615\t0.126236875\t.\t19745861\t19760530\t31,120,180\n+X\t19760530\t19815382\tID_2616\t0.120401125\t.\t19760530\t19815382\t51,160,44\n+X\t19815382\t19987457\tID_2617\t0.07716825\t.\t19815382\t19987457\t31,120,180\n+X\t19987457\t20054086\tID_2618\t0.25898975\t.\t19987457\t20054086\t51,160,44\n+X\t20054086\t20068910\tID_2619\t0.09501175\t.\t20054086\t20068910\t31,120,180\n+X\t20068910\t20125761\tID_2620\t0.11080175\t.\t20068910\t20125761\t51,160,44\n+X\t20125761\t20262048\tID_2621\t0.13531825\t.\t20125761\t20262048\t31,120,180\n+X\t20262048\t20294608\tID_2622\t0.128170125\t.\t20262048\t20294608\t51,160,44\n+X\t20294608\t20305771\tID_2623\t0.174142\t.\t20294608\t20305771\t31,120,180\n+X\t20305771\t20339275\tID_2624\t0.132944375\t.\t20305771\t20339275\t51,160,44\n+X\t20339275\t20382809\tID_2625\t0.171998625\t.\t20339275\t20382809\t31,120,180\n+X\t20382809\t20395830\tID_2626\t0.167720375\t.\t20382809\t20395830\t51,160,44\n+X\t20395830\t20508892\tID_2627\t0.099498875\t.\t20395830\t20508892\t31,120,180\n+X\t20508892\t20526971\tID_2628\t0.207408875\t.\t20508892\t20526971\t51,160,44\n+X\t20526971\t20631727\tID_2629\t0.234505875\t.\t20526971\t20631727\t31,120,180\n+X\t20631727\t20894364\tID_2630\t0.1618915\t.\t20631727\t20894364\t51,160,44\n+X\t20894364\t20907117\tID_2631\t0.115476\t.\t20894364\t20907117\t31,120,180\n+X\t20907117\t20916940\tID_2632\t0.131365625\t.\t20907117\t20916940\t51,160,44\n+X\t20916940\t20931445\tID_2633\t0.13657475\t.\t20916940\t20931445\t31,120,180\n+X\t20931445\t20944384\tID_2634\t0.08793725\t.\t20931445\t20944384\t51,160,44\n+X\t20944384\t20996348\tID_2635\t0.1540235\t.\t20944384\t20996348\t31,120,180\n+X\t20996348\t21012072\tID_2636\t0.20320025\t.\t20996348\t21012072\t51,160,44\n+X\t21012072\t21178100\tID_2637\t0.226353125\t.\t21012072\t21178100\t31,120,180\n+X\t21178100\t21186628\tID_2638\t0.157524\t.\t21178100\t21186628\t51,160,44\n+X\t21186628\t21194946\tID_2639\t0.1443005\t.\t21186628\t21194946\t31,120,180\n+X\t21194946\t21220857\tID_2640\t0.1486745\t.\t21194946\t21220857\t51,160,44\n+X\t21220857\t21240098\tID_2641\t0.130596\t.\t21220857\t21240098\t31,120,180\n+X\t21240098\t21271964\tID_2642\t0.097698\t.\t21240098\t21271964\t51,160,44\n+X\t21271964\t21343699\tID_2643\t0.154854\t.\t21271964\t21343699\t31,120,180\n+X\t21343699\t21656357\tID_2644\t0.308289\t.\t21343699\t21656357\t51,160,44\n+X\t21656357\t21857607\tID_2645\t0.011076375\t.\t21656357\t21857607\t31,120,180\n+X\t21857607\t21873688\tID_2646\t0.156261\t.\t21857607\t21873688\t51,160,44\n+X\t21873688\t21889804\tID_2647\t0.177314875\t.\t21873688\t21889804\t31,120,180\n+X\t21889804\t21907001\tID_2648\t0.1288\t.\t21889804\t21907001\t51,160,44\n+X\t21907001\t21931844\tID_2649\t0.2055825\t.\t21907001\t21931844\t31,120,180\n+X\t21931844\t21954371\tID_2650\t0.210974875\t.\t21931844\t21954371\t51,160,44\n+X\t21954371\t22120033\tID_2651\t0.145109\t.\t21954371\t22120033\t31,120,180\n+X\t22120033\t22274227\tID_2652\t0.293565625\t.\t22120033\t22274227\t51,160,44\n+X\t22274227\t22287785\tID_2653\t0.224372\t.\t22274227\t22287785\t31,120,180\n+X\t22287785\t22349277\tID_2654\t0.227037375\t.\t22287785\t22349277\t51,160,44\n+X\t22349277\t22380885\tID_2655\t0.190254625\t.\t22349277\t22380885\t31,120,180\n+X\t22380885\t22421267\tID_2656\t0.153354125\t.\t22380885\t22421267\t51,160,44\n'
b
diff -r 000000000000 -r a9050bffb50c test-data/hicBuildMatrix_result1.bam
b
Binary file test-data/hicBuildMatrix_result1.bam has changed
b
diff -r 000000000000 -r a9050bffb50c test-data/hicBuildMatrix_result1.h5
b
Binary file test-data/hicBuildMatrix_result1.h5 has changed
b
diff -r 000000000000 -r a9050bffb50c test-data/hicCorrectMatrix_result1.npz.h5
b
Binary file test-data/hicCorrectMatrix_result1.npz.h5 has changed
b
diff -r 000000000000 -r a9050bffb50c test-data/hicCorrelate_heatmap_result1.png
b
Binary file test-data/hicCorrelate_heatmap_result1.png has changed
b
diff -r 000000000000 -r a9050bffb50c test-data/hicCorrelate_scatter_result1.png
b
Binary file test-data/hicCorrelate_scatter_result1.png has changed
b
diff -r 000000000000 -r a9050bffb50c test-data/hicFindTADs_TAD_score.tabular
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/hicFindTADs_TAD_score.tabular Thu Mar 30 02:12:31 2017 -0400
b
b'@@ -0,0 +1,25261 @@\n+#{"numberOfProcessors":1,"minDepth":20000,"matrix":"matrix.npz.h5","outFileName":"./tadScoreFile.tabular","binsize":5000,"step":100000,"command":"TAD_score","maxDepth":60000,"zscore_matrix":"./tadScoreFile.tabular_zscore_matrix.h5"}\n+chr2RHet\t0\t5000\t0.000000\n+chr2RHet\t5000\t10000\t-0.095120\n+chr2RHet\t10000\t15000\t-0.086382\n+chr2RHet\t15000\t20000\t-0.080500\n+chr2RHet\t20000\t25000\t-0.075802\n+chr2RHet\t25000\t30000\t0.847009\n+chr2RHet\t30000\t35000\t-0.075802\n+chr2RHet\t35000\t40000\t-0.075802\n+chr2RHet\t40000\t45000\t-0.075802\n+chr2RHet\t45000\t50000\t-0.075802\n+chr2RHet\t50000\t55000\t-0.075802\n+chr2RHet\t55000\t60000\t-0.075802\n+chr2RHet\t60000\t65000\t-0.075802\n+chr2RHet\t65000\t70000\t-0.075802\n+chr2RHet\t70000\t75000\t-0.075802\n+chr2RHet\t75000\t80000\t-0.075802\n+chr2RHet\t80000\t85000\t0.580227\n+chr2RHet\t85000\t90000\t0.580227\n+chr2RHet\t90000\t95000\t0.580227\n+chr2RHet\t95000\t100000\t0.339230\n+chr2RHet\t100000\t105000\t0.339230\n+chr2RHet\t105000\t110000\t-0.075802\n+chr2RHet\t110000\t115000\t-0.075802\n+chr2RHet\t115000\t120000\t-0.075802\n+chr2RHet\t120000\t125000\t1.054400\n+chr2RHet\t125000\t130000\t1.054400\n+chr2RHet\t130000\t135000\t-0.075802\n+chr2RHet\t135000\t140000\t-0.075802\n+chr2RHet\t140000\t145000\t0.339230\n+chr2RHet\t145000\t150000\t0.339230\n+chr2RHet\t150000\t155000\t-0.075802\n+chr2RHet\t155000\t160000\t-0.075802\n+chr2RHet\t160000\t165000\t-0.075802\n+chr2RHet\t165000\t170000\t-0.075802\n+chr2RHet\t170000\t175000\t-0.075802\n+chr2RHet\t175000\t180000\t-0.075802\n+chr2RHet\t180000\t185000\t-0.075802\n+chr2RHet\t185000\t190000\t-0.075802\n+chr2RHet\t190000\t195000\t-0.075802\n+chr2RHet\t195000\t200000\t0.328485\n+chr2RHet\t200000\t205000\t1.712156\n+chr2RHet\t205000\t210000\t1.712156\n+chr2RHet\t210000\t215000\t1.712156\n+chr2RHet\t215000\t220000\t1.056126\n+chr2RHet\t220000\t225000\t-0.075802\n+chr2RHet\t225000\t230000\t-0.075802\n+chr2RHet\t230000\t235000\t-0.075802\n+chr2RHet\t235000\t240000\t-0.075802\n+chr2RHet\t240000\t245000\t-0.075802\n+chr2RHet\t245000\t250000\t-0.075802\n+chr2RHet\t250000\t255000\t-0.075802\n+chr2RHet\t255000\t260000\t-0.075802\n+chr2RHet\t260000\t265000\t-0.075802\n+chr2RHet\t265000\t270000\t-0.075802\n+chr2RHet\t270000\t275000\t-0.075802\n+chr2RHet\t275000\t280000\t-0.075802\n+chr2RHet\t280000\t285000\t-0.075802\n+chr2RHet\t285000\t290000\t-0.075802\n+chr2RHet\t290000\t295000\t-0.075802\n+chr2RHet\t295000\t300000\t-0.075802\n+chr2RHet\t300000\t305000\t-0.075802\n+chr2RHet\t305000\t310000\t-0.075802\n+chr2RHet\t310000\t315000\t-0.075802\n+chr2RHet\t315000\t320000\t-0.075802\n+chr2RHet\t320000\t325000\t-0.075802\n+chr2RHet\t325000\t330000\t-0.075802\n+chr2RHet\t330000\t335000\t-0.075802\n+chr2RHet\t335000\t340000\t-0.075802\n+chr2RHet\t340000\t345000\t-0.075802\n+chr2RHet\t345000\t350000\t-0.075802\n+chr2RHet\t350000\t355000\t-0.075802\n+chr2RHet\t355000\t360000\t-0.075802\n+chr2RHet\t360000\t365000\t-0.075802\n+chr2RHet\t365000\t370000\t-0.075802\n+chr2RHet\t370000\t375000\t-0.075802\n+chr2RHet\t375000\t380000\t1.056126\n+chr2RHet\t380000\t385000\t1.056126\n+chr2RHet\t385000\t390000\t1.056126\n+chr2RHet\t390000\t395000\t1.056126\n+chr2RHet\t395000\t400000\t-0.075802\n+chr2RHet\t400000\t405000\t-0.075802\n+chr2RHet\t405000\t410000\t-0.075802\n+chr2RHet\t410000\t415000\t-0.075802\n+chr2RHet\t415000\t420000\t-0.075802\n+chr2RHet\t420000\t425000\t-0.075802\n+chr2RHet\t425000\t430000\t-0.075802\n+chr2RHet\t430000\t435000\t-0.075802\n+chr2RHet\t435000\t440000\t-0.075802\n+chr2RHet\t440000\t445000\t-0.075802\n+chr2RHet\t445000\t450000\t-0.075802\n+chr2RHet\t450000\t455000\t-0.075802\n+chr2RHet\t455000\t460000\t-0.075802\n+chr2RHet\t460000\t465000\t-0.075802\n+chr2RHet\t465000\t470000\t-0.075802\n+chr2RHet\t470000\t475000\t-0.075802\n+chr2RHet\t475000\t480000\t-0.075802\n+chr2RHet\t480000\t485000\t-0.075802\n+chr2RHet\t485000\t490000\t-0.075802\n+chr2RHet\t490000\t495000\t-0.075802\n+chr2RHet\t495000\t500000\t-0.075802\n+chr2RHet\t500000\t505000\t-0.075802\n+chr2RHet\t505000\t510000\t-0.075802\n+chr2RHet\t510000\t515000\t-0.075802\n+chr2RHet\t515000\t520000\t-0.075802\n+chr2RHet\t520000\t525000\t-0.075802\n+chr2RHet\t525000\t530000\t-0.075802\n+chr2RHet\t530000\t535000\t-0.075802\n+chr2RHet\t535000\t540000\t-0.075802\n+chr2RHet\t540000\t545000\t-0.075802\n+chr2RHet\t545000\t550000\t-0.075802\n+chr2RHet\t550000\t555000\t0.848419\n+chr2RHet\t555000\t560000\t1.504449\n+chr'..b'\n+chr3R\t27375000\t27380000\t-0.202334\n+chr3R\t27380000\t27385000\t-0.202334\n+chr3R\t27385000\t27390000\t-0.202334\n+chr3R\t27390000\t27395000\t-0.202334\n+chr3R\t27395000\t27400000\t0.199516\n+chr3R\t27400000\t27405000\t0.726185\n+chr3R\t27405000\t27410000\t1.190531\n+chr3R\t27410000\t27415000\t0.833625\n+chr3R\t27415000\t27420000\t-0.202334\n+chr3R\t27420000\t27425000\t-0.202334\n+chr3R\t27425000\t27430000\t0.368686\n+chr3R\t27430000\t27435000\t0.691346\n+chr3R\t27435000\t27440000\t0.691346\n+chr3R\t27440000\t27445000\t0.430560\n+chr3R\t27445000\t27450000\t-0.032570\n+chr3R\t27450000\t27455000\t-0.202334\n+chr3R\t27455000\t27460000\t-0.202334\n+chr3R\t27460000\t27465000\t-0.202334\n+chr3R\t27465000\t27470000\t-0.202334\n+chr3R\t27470000\t27475000\t-0.202334\n+chr3R\t27475000\t27480000\t-0.202334\n+chr3R\t27480000\t27485000\t-0.202334\n+chr3R\t27485000\t27490000\t0.029753\n+chr3R\t27490000\t27495000\t0.029753\n+chr3R\t27495000\t27500000\t-0.202334\n+chr3R\t27500000\t27505000\t-0.202334\n+chr3R\t27505000\t27510000\t-0.202334\n+chr3R\t27510000\t27515000\t-0.202334\n+chr3R\t27515000\t27520000\t-0.202334\n+chr3R\t27520000\t27525000\t-0.202334\n+chr3R\t27525000\t27530000\t0.143582\n+chr3R\t27530000\t27535000\t-0.202334\n+chr3R\t27535000\t27540000\t-0.202334\n+chr3R\t27540000\t27545000\t-0.202334\n+chr3R\t27545000\t27550000\t0.261840\n+chr3R\t27550000\t27555000\t0.261840\n+chr3R\t27555000\t27560000\t-0.202334\n+chr3R\t27560000\t27565000\t-0.202334\n+chr3R\t27565000\t27570000\t-0.202334\n+chr3R\t27570000\t27575000\t-0.202334\n+chr3R\t27575000\t27580000\t-0.032570\n+chr3R\t27580000\t27585000\t0.418133\n+chr3R\t27585000\t27590000\t0.418133\n+chr3R\t27590000\t27595000\t0.418133\n+chr3R\t27595000\t27600000\t0.650220\n+chr3R\t27600000\t27605000\t0.029753\n+chr3R\t27605000\t27610000\t-0.202334\n+chr3R\t27610000\t27615000\t-0.202334\n+chr3R\t27615000\t27620000\t0.143582\n+chr3R\t27620000\t27625000\t0.058452\n+chr3R\t27625000\t27630000\t0.058452\n+chr3R\t27630000\t27635000\t0.058452\n+chr3R\t27635000\t27640000\t-0.202334\n+chr3R\t27640000\t27645000\t-0.032570\n+chr3R\t27645000\t27650000\t0.418133\n+chr3R\t27650000\t27655000\t1.349796\n+chr3R\t27655000\t27660000\t1.349796\n+chr3R\t27660000\t27665000\t1.347495\n+chr3R\t27665000\t27670000\t0.107900\n+chr3R\t27670000\t27675000\t0.339986\n+chr3R\t27675000\t27680000\t0.339986\n+chr3R\t27680000\t27685000\t0.728367\n+chr3R\t27685000\t27690000\t0.678919\n+chr3R\t27690000\t27695000\t0.678919\n+chr3R\t27695000\t27700000\t0.678919\n+chr3R\t27700000\t27705000\t-0.202334\n+chr3R\t27705000\t27710000\t-0.202334\n+chr3R\t27710000\t27715000\t-0.202334\n+chr3R\t27715000\t27720000\t-0.202334\n+chr3R\t27720000\t27725000\t0.145883\n+chr3R\t27725000\t27730000\t0.145883\n+chr3R\t27730000\t27735000\t0.277663\n+chr3R\t27735000\t27740000\t0.107900\n+chr3R\t27740000\t27745000\t0.107900\n+chr3R\t27745000\t27750000\t0.107900\n+chr3R\t27750000\t27755000\t0.835412\n+chr3R\t27755000\t27760000\t-0.202334\n+chr3R\t27760000\t27765000\t0.029753\n+chr3R\t27765000\t27770000\t0.029753\n+chr3R\t27770000\t27775000\t-0.202334\n+chr3R\t27775000\t27780000\t-0.202334\n+chr3R\t27780000\t27785000\t0.491798\n+chr3R\t27785000\t27790000\t0.145883\n+chr3R\t27790000\t27795000\t-0.032570\n+chr3R\t27795000\t27800000\t-0.202334\n+chr3R\t27800000\t27805000\t-0.032570\n+chr3R\t27805000\t27810000\t0.058452\n+chr3R\t27810000\t27815000\t0.058452\n+chr3R\t27815000\t27820000\t0.058452\n+chr3R\t27820000\t27825000\t-0.032570\n+chr3R\t27825000\t27830000\t-0.202334\n+chr3R\t27830000\t27835000\t-0.202334\n+chr3R\t27835000\t27840000\t-0.202334\n+chr3R\t27840000\t27845000\t0.466242\n+chr3R\t27845000\t27850000\t0.120327\n+chr3R\t27850000\t27855000\t0.613200\n+chr3R\t27855000\t27860000\t0.290539\n+chr3R\t27860000\t27865000\t0.058452\n+chr3R\t27865000\t27870000\t0.199516\n+chr3R\t27870000\t27875000\t0.431603\n+chr3R\t27875000\t27880000\t0.029753\n+chr3R\t27880000\t27885000\t-0.202334\n+chr3R\t27885000\t27890000\t-0.202334\n+chr3R\t27890000\t27895000\t-0.211316\n+chr3R\t27895000\t27900000\t-0.223360\n+chr3R\t27900000\t27905000\t-0.240151\n+chr3R\t27905000\t27905053\t0.000000\n+chrUextra\t0\t5000\t0.000000\n+chrUextra\t29000000\t29004656\t0.000000\n+chrM\t0\t5000\t0.000000\n+chrM\t15000\t19517\t0.000000\n+chr3LHet\t0\t5000\t0.000000\n+chr3LHet\t5000\t10000\t-0.081356\n+chr3LHet\t10000\t15000\t-0.069252\n+chr3LHet\t2545000\t2550000\t1.565363\n+chr3LHet\t2550000\t2555000\t-0.081356\n+chr3LHet\t2555000\t2555491\t0.000000\n'
b
diff -r 000000000000 -r a9050bffb50c test-data/hicFindTADs_find_score.bedgraph
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/hicFindTADs_find_score.bedgraph Thu Mar 30 02:12:31 2017 -0400
b
b'@@ -0,0 +1,25245 @@\n+chr2RHet\t2500\t7500\t-0.09512\n+chr2RHet\t7500\t12500\t-0.086382\n+chr2RHet\t12500\t17500\t-0.0805\n+chr2RHet\t17500\t22500\t-0.075802\n+chr2RHet\t22500\t27500\t0.847009\n+chr2RHet\t27500\t32500\t-0.075802\n+chr2RHet\t32500\t37500\t-0.075802\n+chr2RHet\t37500\t42500\t-0.075802\n+chr2RHet\t42500\t47500\t-0.075802\n+chr2RHet\t47500\t52500\t-0.075802\n+chr2RHet\t52500\t57500\t-0.075802\n+chr2RHet\t57500\t62500\t-0.075802\n+chr2RHet\t62500\t67500\t-0.075802\n+chr2RHet\t67500\t72500\t-0.075802\n+chr2RHet\t72500\t77500\t-0.075802\n+chr2RHet\t77500\t82500\t0.580227\n+chr2RHet\t82500\t87500\t0.580227\n+chr2RHet\t87500\t92500\t0.580227\n+chr2RHet\t92500\t97500\t0.33923\n+chr2RHet\t97500\t102500\t0.33923\n+chr2RHet\t102500\t107500\t-0.075802\n+chr2RHet\t107500\t112500\t-0.075802\n+chr2RHet\t112500\t117500\t-0.075802\n+chr2RHet\t117500\t122500\t1.0544\n+chr2RHet\t122500\t127500\t1.0544\n+chr2RHet\t127500\t132500\t-0.075802\n+chr2RHet\t132500\t137500\t-0.075802\n+chr2RHet\t137500\t142500\t0.33923\n+chr2RHet\t142500\t147500\t0.33923\n+chr2RHet\t147500\t152500\t-0.075802\n+chr2RHet\t152500\t157500\t-0.075802\n+chr2RHet\t157500\t162500\t-0.075802\n+chr2RHet\t162500\t167500\t-0.075802\n+chr2RHet\t167500\t172500\t-0.075802\n+chr2RHet\t172500\t177500\t-0.075802\n+chr2RHet\t177500\t182500\t-0.075802\n+chr2RHet\t182500\t187500\t-0.075802\n+chr2RHet\t187500\t192500\t-0.075802\n+chr2RHet\t192500\t197500\t0.328485\n+chr2RHet\t197500\t202500\t1.712156\n+chr2RHet\t202500\t207500\t1.712156\n+chr2RHet\t207500\t212500\t1.712156\n+chr2RHet\t212500\t217500\t1.056126\n+chr2RHet\t217500\t222500\t-0.075802\n+chr2RHet\t222500\t227500\t-0.075802\n+chr2RHet\t227500\t232500\t-0.075802\n+chr2RHet\t232500\t237500\t-0.075802\n+chr2RHet\t237500\t242500\t-0.075802\n+chr2RHet\t242500\t247500\t-0.075802\n+chr2RHet\t247500\t252500\t-0.075802\n+chr2RHet\t252500\t257500\t-0.075802\n+chr2RHet\t257500\t262500\t-0.075802\n+chr2RHet\t262500\t267500\t-0.075802\n+chr2RHet\t267500\t272500\t-0.075802\n+chr2RHet\t272500\t277500\t-0.075802\n+chr2RHet\t277500\t282500\t-0.075802\n+chr2RHet\t282500\t287500\t-0.075802\n+chr2RHet\t287500\t292500\t-0.075802\n+chr2RHet\t292500\t297500\t-0.075802\n+chr2RHet\t297500\t302500\t-0.075802\n+chr2RHet\t302500\t307500\t-0.075802\n+chr2RHet\t307500\t312500\t-0.075802\n+chr2RHet\t312500\t317500\t-0.075802\n+chr2RHet\t317500\t322500\t-0.075802\n+chr2RHet\t322500\t327500\t-0.075802\n+chr2RHet\t327500\t332500\t-0.075802\n+chr2RHet\t332500\t337500\t-0.075802\n+chr2RHet\t337500\t342500\t-0.075802\n+chr2RHet\t342500\t347500\t-0.075802\n+chr2RHet\t347500\t352500\t-0.075802\n+chr2RHet\t352500\t357500\t-0.075802\n+chr2RHet\t357500\t362500\t-0.075802\n+chr2RHet\t362500\t367500\t-0.075802\n+chr2RHet\t367500\t372500\t-0.075802\n+chr2RHet\t372500\t377500\t1.056126\n+chr2RHet\t377500\t382500\t1.056126\n+chr2RHet\t382500\t387500\t1.056126\n+chr2RHet\t387500\t392500\t1.056126\n+chr2RHet\t392500\t397500\t-0.075802\n+chr2RHet\t397500\t402500\t-0.075802\n+chr2RHet\t402500\t407500\t-0.075802\n+chr2RHet\t407500\t412500\t-0.075802\n+chr2RHet\t412500\t417500\t-0.075802\n+chr2RHet\t417500\t422500\t-0.075802\n+chr2RHet\t422500\t427500\t-0.075802\n+chr2RHet\t427500\t432500\t-0.075802\n+chr2RHet\t432500\t437500\t-0.075802\n+chr2RHet\t437500\t442500\t-0.075802\n+chr2RHet\t442500\t447500\t-0.075802\n+chr2RHet\t447500\t452500\t-0.075802\n+chr2RHet\t452500\t457500\t-0.075802\n+chr2RHet\t457500\t462500\t-0.075802\n+chr2RHet\t462500\t467500\t-0.075802\n+chr2RHet\t467500\t472500\t-0.075802\n+chr2RHet\t472500\t477500\t-0.075802\n+chr2RHet\t477500\t482500\t-0.075802\n+chr2RHet\t482500\t487500\t-0.075802\n+chr2RHet\t487500\t492500\t-0.075802\n+chr2RHet\t492500\t497500\t-0.075802\n+chr2RHet\t497500\t502500\t-0.075802\n+chr2RHet\t502500\t507500\t-0.075802\n+chr2RHet\t507500\t512500\t-0.075802\n+chr2RHet\t512500\t517500\t-0.075802\n+chr2RHet\t517500\t522500\t-0.075802\n+chr2RHet\t522500\t527500\t-0.075802\n+chr2RHet\t527500\t532500\t-0.075802\n+chr2RHet\t532500\t537500\t-0.075802\n+chr2RHet\t537500\t542500\t-0.075802\n+chr2RHet\t542500\t547500\t-0.075802\n+chr2RHet\t547500\t552500\t0.848419\n+chr2RHet\t552500\t557500\t1.504449\n+chr2RHet\t557500\t562500\t1.504449\n+chr2RHet\t562500\t567500\t0.580227\n+chr2RHet\t567500\t572500\t-0.075802\n+chr2RHet\t572500\t577500\t-0.075802\n+chr2RHet\t577500\t582500\t-0.075802\n+chr2RHet\t582500\t587500\t-0.075802\n+chr2RHet\t587500\t592500\t-0.075802\n+chr2RHet\t592500\t597500\t-0.075802\n+chr2RHet'..b'0\t27357500\t-0.202334\n+chr3R\t27357500\t27362500\t-0.202334\n+chr3R\t27362500\t27367500\t-0.202334\n+chr3R\t27367500\t27372500\t-0.202334\n+chr3R\t27372500\t27377500\t-0.202334\n+chr3R\t27377500\t27382500\t-0.202334\n+chr3R\t27382500\t27387500\t-0.202334\n+chr3R\t27387500\t27392500\t-0.202334\n+chr3R\t27392500\t27397500\t0.199516\n+chr3R\t27397500\t27402500\t0.726185\n+chr3R\t27402500\t27407500\t1.190531\n+chr3R\t27407500\t27412500\t0.833625\n+chr3R\t27412500\t27417500\t-0.202334\n+chr3R\t27417500\t27422500\t-0.202334\n+chr3R\t27422500\t27427500\t0.368686\n+chr3R\t27427500\t27432500\t0.691346\n+chr3R\t27432500\t27437500\t0.691346\n+chr3R\t27437500\t27442500\t0.43056\n+chr3R\t27442500\t27447500\t-0.03257\n+chr3R\t27447500\t27452500\t-0.202334\n+chr3R\t27452500\t27457500\t-0.202334\n+chr3R\t27457500\t27462500\t-0.202334\n+chr3R\t27462500\t27467500\t-0.202334\n+chr3R\t27467500\t27472500\t-0.202334\n+chr3R\t27472500\t27477500\t-0.202334\n+chr3R\t27477500\t27482500\t-0.202334\n+chr3R\t27482500\t27487500\t0.029753\n+chr3R\t27487500\t27492500\t0.029753\n+chr3R\t27492500\t27497500\t-0.202334\n+chr3R\t27497500\t27502500\t-0.202334\n+chr3R\t27502500\t27507500\t-0.202334\n+chr3R\t27507500\t27512500\t-0.202334\n+chr3R\t27512500\t27517500\t-0.202334\n+chr3R\t27517500\t27522500\t-0.202334\n+chr3R\t27522500\t27527500\t0.143582\n+chr3R\t27527500\t27532500\t-0.202334\n+chr3R\t27532500\t27537500\t-0.202334\n+chr3R\t27537500\t27542500\t-0.202334\n+chr3R\t27542500\t27547500\t0.26184\n+chr3R\t27547500\t27552500\t0.26184\n+chr3R\t27552500\t27557500\t-0.202334\n+chr3R\t27557500\t27562500\t-0.202334\n+chr3R\t27562500\t27567500\t-0.202334\n+chr3R\t27567500\t27572500\t-0.202334\n+chr3R\t27572500\t27577500\t-0.03257\n+chr3R\t27577500\t27582500\t0.418133\n+chr3R\t27582500\t27587500\t0.418133\n+chr3R\t27587500\t27592500\t0.418133\n+chr3R\t27592500\t27597500\t0.65022\n+chr3R\t27597500\t27602500\t0.029753\n+chr3R\t27602500\t27607500\t-0.202334\n+chr3R\t27607500\t27612500\t-0.202334\n+chr3R\t27612500\t27617500\t0.143582\n+chr3R\t27617500\t27622500\t0.058452\n+chr3R\t27622500\t27627500\t0.058452\n+chr3R\t27627500\t27632500\t0.058452\n+chr3R\t27632500\t27637500\t-0.202334\n+chr3R\t27637500\t27642500\t-0.03257\n+chr3R\t27642500\t27647500\t0.418133\n+chr3R\t27647500\t27652500\t1.349796\n+chr3R\t27652500\t27657500\t1.349796\n+chr3R\t27657500\t27662500\t1.347495\n+chr3R\t27662500\t27667500\t0.1079\n+chr3R\t27667500\t27672500\t0.339986\n+chr3R\t27672500\t27677500\t0.339986\n+chr3R\t27677500\t27682500\t0.728367\n+chr3R\t27682500\t27687500\t0.678919\n+chr3R\t27687500\t27692500\t0.678919\n+chr3R\t27692500\t27697500\t0.678919\n+chr3R\t27697500\t27702500\t-0.202334\n+chr3R\t27702500\t27707500\t-0.202334\n+chr3R\t27707500\t27712500\t-0.202334\n+chr3R\t27712500\t27717500\t-0.202334\n+chr3R\t27717500\t27722500\t0.145883\n+chr3R\t27722500\t27727500\t0.145883\n+chr3R\t27727500\t27732500\t0.277663\n+chr3R\t27732500\t27737500\t0.1079\n+chr3R\t27737500\t27742500\t0.1079\n+chr3R\t27742500\t27747500\t0.1079\n+chr3R\t27747500\t27752500\t0.835412\n+chr3R\t27752500\t27757500\t-0.202334\n+chr3R\t27757500\t27762500\t0.029753\n+chr3R\t27762500\t27767500\t0.029753\n+chr3R\t27767500\t27772500\t-0.202334\n+chr3R\t27772500\t27777500\t-0.202334\n+chr3R\t27777500\t27782500\t0.491798\n+chr3R\t27782500\t27787500\t0.145883\n+chr3R\t27787500\t27792500\t-0.03257\n+chr3R\t27792500\t27797500\t-0.202334\n+chr3R\t27797500\t27802500\t-0.03257\n+chr3R\t27802500\t27807500\t0.058452\n+chr3R\t27807500\t27812500\t0.058452\n+chr3R\t27812500\t27817500\t0.058452\n+chr3R\t27817500\t27822500\t-0.03257\n+chr3R\t27822500\t27827500\t-0.202334\n+chr3R\t27827500\t27832500\t-0.202334\n+chr3R\t27832500\t27837500\t-0.202334\n+chr3R\t27837500\t27842500\t0.466242\n+chr3R\t27842500\t27847500\t0.120327\n+chr3R\t27847500\t27852500\t0.6132\n+chr3R\t27852500\t27857500\t0.290539\n+chr3R\t27857500\t27862500\t0.058452\n+chr3R\t27862500\t27867500\t0.199516\n+chr3R\t27867500\t27872500\t0.431603\n+chr3R\t27872500\t27877500\t0.029753\n+chr3R\t27877500\t27882500\t-0.202334\n+chr3R\t27882500\t27887500\t-0.202334\n+chr3R\t27887500\t27892500\t-0.211316\n+chr3R\t27892500\t27897500\t-0.22336\n+chr3R\t27897500\t27902500\t-0.240151\n+chr3R\t27902500\t27905026\t0.0\n+chrUextra\t2500\t29002328\t0.0\n+chrM\t2500\t17258\t0.0\n+chr3LHet\t2500\t7500\t-0.081356\n+chr3LHet\t7500\t12500\t-0.069252\n+chr3LHet\t12500\t2547500\t1.565363\n+chr3LHet\t2547500\t2552500\t-0.081356\n+chr3LHet\t2552500\t2555245\t0.0\n'
b
diff -r 000000000000 -r a9050bffb50c test-data/hicPlotDistVsCounts_result1.png
b
Binary file test-data/hicPlotDistVsCounts_result1.png has changed
b
diff -r 000000000000 -r a9050bffb50c test-data/hicPlotMatrix_result1.svg
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/hicPlotMatrix_result1.svg Thu Mar 30 02:12:31 2017 -0400
b
b'@@ -0,0 +1,591 @@\n+<?xml version="1.0" encoding="utf-8" standalone="no"?>\n+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"\n+  "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">\n+<!-- Created with matplotlib (http://matplotlib.org/) -->\n+<svg height="432pt" version="1.1" viewBox="0 0 504 432" width="504pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">\n+ <defs>\n+  <style type="text/css">\n+*{stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:100000;}\n+  </style>\n+ </defs>\n+ <g id="figure_1">\n+  <g id="patch_1">\n+   <path d="M 0 432 \n+L 504 432 \n+L 504 0 \n+L 0 0 \n+z\n+" style="fill:#ffffff;"/>\n+  </g>\n+  <g id="axes_1">\n+   <g id="patch_2">\n+    <path d="M 65.52 381.6 \n+L 368.27122 381.6 \n+L 368.27122 21.6 \n+L 65.52 21.6 \n+z\n+" style="fill:#ffffff;"/>\n+   </g>\n+   <image height="360.0" id="imageecf3b4cfd0" width="302.0" x="66.0" xlink:href="data:image/png;base64,\n+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'..b'     <!-- 5 -->\n+      <g transform="translate(386.32 302.409660814)scale(0.12 -0.12)">\n+       <use xlink:href="#BitstreamVeraSans-Roman-35"/>\n+      </g>\n+     </g>\n+    </g>\n+    <g id="ytick_8">\n+     <g id="line2d_20">\n+      <g>\n+       <use style="stroke:#000000;stroke-width:0.5;" x="382.32" xlink:href="#m2c7b8366e1" y="263.566910348"/>\n+      </g>\n+     </g>\n+     <g id="text_14">\n+      <!-- 10 -->\n+      <g transform="translate(386.32 266.878160348)scale(0.12 -0.12)">\n+       <use xlink:href="#BitstreamVeraSans-Roman-31"/>\n+       <use x="63.623046875" xlink:href="#BitstreamVeraSans-Roman-30"/>\n+      </g>\n+     </g>\n+    </g>\n+    <g id="ytick_9">\n+     <g id="line2d_21">\n+      <g>\n+       <use style="stroke:#000000;stroke-width:0.5;" x="382.32" xlink:href="#m2c7b8366e1" y="228.035409882"/>\n+      </g>\n+     </g>\n+     <g id="text_15">\n+      <!-- 20 -->\n+      <g transform="translate(386.32 231.346659882)scale(0.12 -0.12)">\n+       <use xlink:href="#BitstreamVeraSans-Roman-32"/>\n+       <use x="63.623046875" xlink:href="#BitstreamVeraSans-Roman-30"/>\n+      </g>\n+     </g>\n+    </g>\n+    <g id="ytick_10">\n+     <g id="line2d_22">\n+      <g>\n+       <use style="stroke:#000000;stroke-width:0.5;" x="382.32" xlink:href="#m2c7b8366e1" y="181.065321162"/>\n+      </g>\n+     </g>\n+     <g id="text_16">\n+      <!-- 50 -->\n+      <g transform="translate(386.32 184.376571162)scale(0.12 -0.12)">\n+       <use xlink:href="#BitstreamVeraSans-Roman-35"/>\n+       <use x="63.623046875" xlink:href="#BitstreamVeraSans-Roman-30"/>\n+      </g>\n+     </g>\n+    </g>\n+    <g id="ytick_11">\n+     <g id="line2d_23">\n+      <g>\n+       <use style="stroke:#000000;stroke-width:0.5;" x="382.32" xlink:href="#m2c7b8366e1" y="145.533820696"/>\n+      </g>\n+     </g>\n+     <g id="text_17">\n+      <!-- 100 -->\n+      <g transform="translate(386.32 148.845070696)scale(0.12 -0.12)">\n+       <use xlink:href="#BitstreamVeraSans-Roman-31"/>\n+       <use x="63.623046875" xlink:href="#BitstreamVeraSans-Roman-30"/>\n+       <use x="127.24609375" xlink:href="#BitstreamVeraSans-Roman-30"/>\n+      </g>\n+     </g>\n+    </g>\n+    <g id="ytick_12">\n+     <g id="line2d_24">\n+      <g>\n+       <use style="stroke:#000000;stroke-width:0.5;" x="382.32" xlink:href="#m2c7b8366e1" y="110.00232023"/>\n+      </g>\n+     </g>\n+     <g id="text_18">\n+      <!-- 200 -->\n+      <g transform="translate(386.32 113.31357023)scale(0.12 -0.12)">\n+       <use xlink:href="#BitstreamVeraSans-Roman-32"/>\n+       <use x="63.623046875" xlink:href="#BitstreamVeraSans-Roman-30"/>\n+       <use x="127.24609375" xlink:href="#BitstreamVeraSans-Roman-30"/>\n+      </g>\n+     </g>\n+    </g>\n+    <g id="ytick_13">\n+     <g id="line2d_25">\n+      <g>\n+       <use style="stroke:#000000;stroke-width:0.5;" x="382.32" xlink:href="#m2c7b8366e1" y="63.0322315098"/>\n+      </g>\n+     </g>\n+     <g id="text_19">\n+      <!-- 500 -->\n+      <g transform="translate(386.32 66.3434815098)scale(0.12 -0.12)">\n+       <use xlink:href="#BitstreamVeraSans-Roman-35"/>\n+       <use x="63.623046875" xlink:href="#BitstreamVeraSans-Roman-30"/>\n+       <use x="127.24609375" xlink:href="#BitstreamVeraSans-Roman-30"/>\n+      </g>\n+     </g>\n+    </g>\n+    <g id="ytick_14">\n+     <g id="line2d_26">\n+      <g>\n+       <use style="stroke:#000000;stroke-width:0.5;" x="382.32" xlink:href="#m2c7b8366e1" y="27.5007310436"/>\n+      </g>\n+     </g>\n+     <g id="text_20">\n+      <!-- 1000 -->\n+      <g transform="translate(386.32 30.8119810436)scale(0.12 -0.12)">\n+       <use xlink:href="#BitstreamVeraSans-Roman-31"/>\n+       <use x="63.623046875" xlink:href="#BitstreamVeraSans-Roman-30"/>\n+       <use x="127.24609375" xlink:href="#BitstreamVeraSans-Roman-30"/>\n+       <use x="190.869140625" xlink:href="#BitstreamVeraSans-Roman-30"/>\n+      </g>\n+     </g>\n+    </g>\n+   </g>\n+  </g>\n+ </g>\n+ <defs>\n+  <clipPath id="p858d1c6223">\n+   <rect height="360.0" width="7.5687804878" x="374.751219512" y="21.6"/>\n+  </clipPath>\n+ </defs>\n+</svg>\n'
b
diff -r 000000000000 -r a9050bffb50c test-data/hicPlotTADs_result1.svg
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/hicPlotTADs_result1.svg Thu Mar 30 02:12:31 2017 -0400
b
b'@@ -0,0 +1,13600 @@\n+<?xml version="1.0" encoding="utf-8" standalone="no"?>\n+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"\n+  "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">\n+<!-- Created with matplotlib (http://matplotlib.org/) -->\n+<svg height="1318pt" version="1.1" viewBox="0 0 1133 1318" width="1133pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">\n+ <defs>\n+  <style type="text/css">\n+*{stroke-linecap:butt;stroke-linejoin:round;}\n+  </style>\n+ </defs>\n+ <g id="figure_1">\n+  <g id="patch_1">\n+   <path d="M 0 1318.110236 \n+L 1133.858268 1318.110236 \n+L 1133.858268 0 \n+L 0 0 \n+z\n+" style="fill:#ffffff;"/>\n+  </g>\n+  <g id="axes_1">\n+   <g id="mpl_toolkits.axisartist.axis_artist_1">\n+    <defs>\n+     <path d="M 0 0 \n+L 0 -3.5 \n+" id="m447a3a4c03" style="stroke:#000000;stroke-width:0.8;"/>\n+    </defs>\n+    <g>\n+     <use style="fill:none;stroke:#000000;stroke-width:0.8;" x="45.354331" xlink:href="#m447a3a4c03" y="164.976378"/>\n+     <use style="fill:none;stroke:#000000;stroke-width:0.8;" x="45.354331" xlink:href="#m447a3a4c03" y="164.976378"/>\n+    </g>\n+    <g>\n+     <use style="fill:none;stroke:#000000;stroke-width:0.8;" x="234.935433" xlink:href="#m447a3a4c03" y="164.976378"/>\n+     <use style="fill:none;stroke:#000000;stroke-width:0.8;" x="234.935433" xlink:href="#m447a3a4c03" y="164.976378"/>\n+    </g>\n+    <g>\n+     <use style="fill:none;stroke:#000000;stroke-width:0.8;" x="424.516535" xlink:href="#m447a3a4c03" y="164.976378"/>\n+     <use style="fill:none;stroke:#000000;stroke-width:0.8;" x="424.516535" xlink:href="#m447a3a4c03" y="164.976378"/>\n+    </g>\n+    <g>\n+     <use style="fill:none;stroke:#000000;stroke-width:0.8;" x="614.097638" xlink:href="#m447a3a4c03" y="164.976378"/>\n+     <use style="fill:none;stroke:#000000;stroke-width:0.8;" x="614.097638" xlink:href="#m447a3a4c03" y="164.976378"/>\n+    </g>\n+    <g>\n+     <use style="fill:none;stroke:#000000;stroke-width:0.8;" x="803.67874" xlink:href="#m447a3a4c03" y="164.976378"/>\n+     <use style="fill:none;stroke:#000000;stroke-width:0.8;" x="803.67874" xlink:href="#m447a3a4c03" y="164.976378"/>\n+    </g>\n+    <g>\n+     <use style="fill:none;stroke:#000000;stroke-width:0.8;" x="993.259843" xlink:href="#m447a3a4c03" y="164.976378"/>\n+     <use style="fill:none;stroke:#000000;stroke-width:0.8;" x="993.259843" xlink:href="#m447a3a4c03" y="164.976378"/>\n+    </g>\n+    <g id="text_1">\n+     <!-- 3,000 kb -->\n+     <defs>\n+      <path d="M 40.578125 39.3125 \n+Q 47.65625 37.796875 51.625 33 \n+Q 55.609375 28.21875 55.609375 21.1875 \n+Q 55.609375 10.40625 48.1875 4.484375 \n+Q 40.765625 -1.421875 27.09375 -1.421875 \n+Q 22.515625 -1.421875 17.65625 -0.515625 \n+Q 12.796875 0.390625 7.625 2.203125 \n+L 7.625 11.71875 \n+Q 11.71875 9.328125 16.59375 8.109375 \n+Q 21.484375 6.890625 26.8125 6.890625 \n+Q 36.078125 6.890625 40.9375 10.546875 \n+Q 45.796875 14.203125 45.796875 21.1875 \n+Q 45.796875 27.640625 41.28125 31.265625 \n+Q 36.765625 34.90625 28.71875 34.90625 \n+L 20.21875 34.90625 \n+L 20.21875 43.015625 \n+L 29.109375 43.015625 \n+Q 36.375 43.015625 40.234375 45.921875 \n+Q 44.09375 48.828125 44.09375 54.296875 \n+Q 44.09375 59.90625 40.109375 62.90625 \n+Q 36.140625 65.921875 28.71875 65.921875 \n+Q 24.65625 65.921875 20.015625 65.03125 \n+Q 15.375 64.15625 9.8125 62.3125 \n+L 9.8125 71.09375 \n+Q 15.4375 72.65625 20.34375 73.4375 \n+Q 25.25 74.21875 29.59375 74.21875 \n+Q 40.828125 74.21875 47.359375 69.109375 \n+Q 53.90625 64.015625 53.90625 55.328125 \n+Q 53.90625 49.265625 50.4375 45.09375 \n+Q 46.96875 40.921875 40.578125 39.3125 \n+" id="DejaVuSans-33"/>\n+      <path d="M 11.71875 12.40625 \n+L 22.015625 12.40625 \n+L 22.015625 4 \n+L 14.015625 -11.625 \n+L 7.71875 -11.625 \n+L 11.71875 4 \n+z\n+" id="DejaVuSans-2c"/>\n+      <path d="M 31.78125 66.40625 \n+Q 24.171875 66.40625 20.328125 58.90625 \n+Q 16.5 51.421875 16.5 36.375 \n+Q 16.5 21.390625 20.328125 13.890625 \n+Q 24.171875 6.390625 31.78125 6.390625 \n+Q 39.453125 6.390625 43.28125 13.890625 \n+Q 47.125 '..b' \n+" style="fill:none;stroke:#000000;stroke-dasharray:5.6,2.4;stroke-dashoffset:0;stroke-opacity:0.5;stroke-width:0.5;"/>\n+    <path clip-path="url(#p3fa574ca5d)" d="M 388.416502 1159.937008 \n+L 388.416502 717.732283 \n+" style="fill:none;stroke:#000000;stroke-dasharray:5.6,2.4;stroke-dashoffset:0;stroke-opacity:0.5;stroke-width:0.5;"/>\n+    <path clip-path="url(#p3fa574ca5d)" d="M 489.958036 1159.937008 \n+L 489.958036 717.732283 \n+" style="fill:none;stroke:#000000;stroke-dasharray:5.6,2.4;stroke-dashoffset:0;stroke-opacity:0.5;stroke-width:0.5;"/>\n+    <path clip-path="url(#p3fa574ca5d)" d="M 704.569531 1159.937008 \n+L 704.569531 717.732283 \n+" style="fill:none;stroke:#000000;stroke-dasharray:5.6,2.4;stroke-dashoffset:0;stroke-opacity:0.5;stroke-width:0.5;"/>\n+    <path clip-path="url(#p3fa574ca5d)" d="M 756.328964 1159.937008 \n+L 756.328964 717.732283 \n+" style="fill:none;stroke:#000000;stroke-dasharray:5.6,2.4;stroke-dashoffset:0;stroke-opacity:0.5;stroke-width:0.5;"/>\n+    <path clip-path="url(#p3fa574ca5d)" d="M 932.965469 1159.937008 \n+L 932.965469 717.732283 \n+" style="fill:none;stroke:#000000;stroke-dasharray:5.6,2.4;stroke-dashoffset:0;stroke-opacity:0.5;stroke-width:0.5;"/>\n+   </g>\n+  </g>\n+  <g id="axes_23">\n+   <g id="text_112">\n+    <!-- bed6 global -->\n+    <g transform="translate(1000.743307 728.674033)scale(0.144 -0.144)">\n+     <use xlink:href="#DejaVuSans-62"/>\n+     <use x="63.476562" xlink:href="#DejaVuSans-65"/>\n+     <use x="125" xlink:href="#DejaVuSans-64"/>\n+     <use x="188.476562" xlink:href="#DejaVuSans-36"/>\n+     <use x="252.099609" xlink:href="#DejaVuSans-20"/>\n+     <use x="283.886719" xlink:href="#DejaVuSans-67"/>\n+     <use x="347.363281" xlink:href="#DejaVuSans-6c"/>\n+     <use x="375.146484" xlink:href="#DejaVuSans-6f"/>\n+     <use x="436.328125" xlink:href="#DejaVuSans-62"/>\n+     <use x="499.804688" xlink:href="#DejaVuSans-61"/>\n+     <use x="561.083984" xlink:href="#DejaVuSans-6c"/>\n+    </g>\n+    <!-- max row -->\n+    <g transform="translate(1000.743307 744.798883)scale(0.144 -0.144)">\n+     <use xlink:href="#DejaVuSans-6d"/>\n+     <use x="97.412109" xlink:href="#DejaVuSans-61"/>\n+     <use x="158.691406" xlink:href="#DejaVuSans-78"/>\n+     <use x="217.871094" xlink:href="#DejaVuSans-20"/>\n+     <use x="249.658203" xlink:href="#DejaVuSans-72"/>\n+     <use x="290.740234" xlink:href="#DejaVuSans-6f"/>\n+     <use x="351.921875" xlink:href="#DejaVuSans-77"/>\n+    </g>\n+   </g>\n+  </g>\n+ </g>\n+ <defs>\n+  <clipPath id="p216d6f73c8">\n+   <rect height="66.330709" width="947.905512" x="45.354331" y="131.811024"/>\n+  </clipPath>\n+  <clipPath id="p4297ceb9e9">\n+   <rect height="33.165354" width="947.905512" x="45.354331" y="198.141732"/>\n+  </clipPath>\n+  <clipPath id="pca5831d39d">\n+   <rect height="33.165354" width="1.658268" x="995.754331" y="198.141732"/>\n+  </clipPath>\n+  <clipPath id="p2c58aecce8">\n+   <rect height="11.055118" width="947.905512" x="45.354331" y="231.307087"/>\n+  </clipPath>\n+  <clipPath id="p05cf55b846">\n+   <rect height="11.055118" width="947.905512" x="45.354331" y="242.362205"/>\n+  </clipPath>\n+  <clipPath id="pe1a7a0f47d">\n+   <rect height="221.102362" width="947.905512" x="45.354331" y="253.417323"/>\n+  </clipPath>\n+  <clipPath id="pa756550b50">\n+   <rect height="22.110236" width="947.905512" x="45.354331" y="474.519685"/>\n+  </clipPath>\n+  <clipPath id="pc5712f492a">\n+   <rect height="110.551181" width="947.905512" x="45.354331" y="496.629921"/>\n+  </clipPath>\n+  <clipPath id="p13116cec0b">\n+   <rect height="22.110236" width="947.905512" x="45.354331" y="607.181102"/>\n+  </clipPath>\n+  <clipPath id="pdd38922d50">\n+   <rect height="66.330709" width="947.905512" x="45.354331" y="629.291339"/>\n+  </clipPath>\n+  <clipPath id="pae4d92ed9e">\n+   <rect height="22.110236" width="947.905512" x="45.354331" y="695.622047"/>\n+  </clipPath>\n+  <clipPath id="p3fa574ca5d">\n+   <rect height="442.204724" width="947.905512" x="45.354331" y="717.732283"/>\n+  </clipPath>\n+ </defs>\n+</svg>\n'
b
diff -r 000000000000 -r a9050bffb50c test-data/hicSumMatrices_result1.npz.h5
b
Binary file test-data/hicSumMatrices_result1.npz.h5 has changed
b
diff -r 000000000000 -r a9050bffb50c test-data/merged_matrix.npz.h5
b
Binary file test-data/merged_matrix.npz.h5 has changed
b
diff -r 000000000000 -r a9050bffb50c test-data/small_test_R1_unsorted.bam
b
Binary file test-data/small_test_R1_unsorted.bam has changed
b
diff -r 000000000000 -r a9050bffb50c test-data/small_test_R2_unsorted.bam
b
Binary file test-data/small_test_R2_unsorted.bam has changed
b
diff -r 000000000000 -r a9050bffb50c test-data/small_test_matrix_50kb_res.h5
b
Binary file test-data/small_test_matrix_50kb_res.h5 has changed
b
diff -r 000000000000 -r a9050bffb50c test-data/tadScoreFile.tabular_zscore_matrix.h5
b
Binary file test-data/tadScoreFile.tabular_zscore_matrix.h5 has changed
b
diff -r 000000000000 -r a9050bffb50c test-data/tad_classification.bed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/tad_classification.bed Thu Mar 30 02:12:31 2017 -0400
b
b'@@ -0,0 +1,2685 @@\n+chr2L\t73103\t94543\tactive\t2\t.\t73103\t94543\t255,255,153\n+chr2L\t94543\t108120\tactive\t4\t.\t94543\t108120\t255,255,153\n+chr2L\t108120\t132269\tactive\t2\t.\t108120\t132269\t255,255,153\n+chr2L\t132269\t143461\tactive\t2\t.\t132269\t143461\t255,255,153\n+chr2L\t143461\t159101\tactive\t2\t.\t143461\t159101\t255,255,153\n+chr2L\t159101\t181297\tinactive\t1\t.\t159101\t181297\t0,0,0\n+chr2L\t181297\t207416\tactive\t4\t.\t181297\t207416\t255,255,153\n+chr2L\t207416\t248687\tactive\t4\t.\t207416\t248687\t255,255,153\n+chr2L\t248687\t271451\tinactive\t1\t.\t248687\t271451\t0,0,0\n+chr2L\t271451\t283072\tactive\t4\t.\t271451\t283072\t255,255,153\n+chr2L\t283072\t294919\tactive\t2\t.\t283072\t294919\t255,255,153\n+chr2L\t294919\t306028\tactive\t4\t.\t294919\t306028\t255,255,153\n+chr2L\t306028\t357775\tinactive\t1\t.\t306028\t357775\t0,0,0\n+chr2L\t357775\t403068\tinactive\t1\t.\t357775\t403068\t0,0,0\n+chr2L\t403068\t421370\tactive\t4\t.\t403068\t421370\t255,255,153\n+chr2L\t421370\t472506\tactive\t2\t.\t421370\t472506\t255,255,153\n+chr2L\t472506\t490303\tactive\t2\t.\t472506\t490303\t255,255,153\n+chr2L\t490303\t541886\tactive\t2\t.\t490303\t541886\t255,255,153\n+chr2L\t541886\t553339\tactive\t2\t.\t541886\t553339\t255,255,153\n+chr2L\t553339\t559789\tactive\t4\t.\t553339\t559789\t255,255,153\n+chr2L\t559789\t574511\tactive\t4\t.\t559789\t574511\t255,255,153\n+chr2L\t574511\t602435\tPcG\t0\t.\t574511\t602435\t56,108,176\n+chr2L\t602435\t810330\tinactive\t1\t.\t602435\t810330\t0,0,0\n+chr2L\t810330\t825970\tactive\t4\t.\t810330\t825970\t255,255,153\n+chr2L\t825970\t853278\tactive\t2\t.\t825970\t853278\t255,255,153\n+chr2L\t853278\t871106\tactive\t2\t.\t853278\t871106\t255,255,153\n+chr2L\t871106\t887664\tactive\t2\t.\t871106\t887664\t255,255,153\n+chr2L\t887664\t1006986\tinactive\t1\t.\t887664\t1006986\t0,0,0\n+chr2L\t1006986\t1077753\tinactive\t1\t.\t1006986\t1077753\t0,0,0\n+chr2L\t1077753\t1102940\tinactive\t1\t.\t1077753\t1102940\t0,0,0\n+chr2L\t1102940\t1108427\tactive\t4\t.\t1102940\t1108427\t255,255,153\n+chr2L\t1108427\t1142854\tactive\t2\t.\t1108427\t1142854\t255,255,153\n+chr2L\t1142854\t1157702\tactive\t4\t.\t1142854\t1157702\t255,255,153\n+chr2L\t1157702\t1185674\tactive\t4\t.\t1157702\t1185674\t255,255,153\n+chr2L\t1185674\t1246112\tinactive\t1\t.\t1185674\t1246112\t0,0,0\n+chr2L\t1246112\t1348267\tinactive\t1\t.\t1246112\t1348267\t0,0,0\n+chr2L\t1348267\t1492300\tinactive\t1\t.\t1348267\t1492300\t0,0,0\n+chr2L\t1492300\t1504156\tinactive\t1\t.\t1492300\t1504156\t0,0,0\n+chr2L\t1504156\t1614536\tinactive\t1\t.\t1504156\t1614536\t0,0,0\n+chr2L\t1614536\t1705229\tPcG\t0\t.\t1614536\t1705229\t56,108,176\n+chr2L\t1705229\t1728747\tactive\t2\t.\t1705229\t1728747\t255,255,153\n+chr2L\t1728747\t1818391\tinactive\t1\t.\t1728747\t1818391\t0,0,0\n+chr2L\t1818391\t1884683\tinactive\t1\t.\t1818391\t1884683\t0,0,0\n+chr2L\t1884683\t1909751\tinactive\t1\t.\t1884683\t1909751\t0,0,0\n+chr2L\t1909751\t1937585\tactive\t2\t.\t1909751\t1937585\t255,255,153\n+chr2L\t1937585\t1974067\tPcG\t0\t.\t1937585\t1974067\t56,108,176\n+chr2L\t1974067\t1987851\tactive\t4\t.\t1974067\t1987851\t255,255,153\n+chr2L\t1987851\t2037530\tinactive\t1\t.\t1987851\t2037530\t0,0,0\n+chr2L\t2037530\t2130843\tinactive\t1\t.\t2037530\t2130843\t0,0,0\n+chr2L\t2130843\t2151583\tactive\t4\t.\t2130843\t2151583\t255,255,153\n+chr2L\t2151583\t2193334\tactive\t2\t.\t2151583\t2193334\t255,255,153\n+chr2L\t2193334\t2216423\tactive\t2\t.\t2193334\t2216423\t255,255,153\n+chr2L\t2216423\t2221910\tactive\t4\t.\t2216423\t2221910\t255,255,153\n+chr2L\t2221910\t2237044\tactive\t4\t.\t2221910\t2237044\t255,255,153\n+chr2L\t2237044\t2362172\tinactive\t1\t.\t2237044\t2362172\t0,0,0\n+chr2L\t2362172\t2383056\tactive\t4\t.\t2362172\t2383056\t255,255,153\n+chr2L\t2383056\t2492696\tinactive\t1\t.\t2383056\t2492696\t0,0,0\n+chr2L\t2492696\t2561589\tinactive\t1\t.\t2492696\t2561589\t0,0,0\n+chr2L\t2561589\t2591551\tactive\t2\t.\t2561589\t2591551\t255,255,153\n+chr2L\t2591551\t2724465\tinactive\t1\t.\t2591551\t2724465\t0,0,0\n+chr2L\t2724465\t2740126\tactive\t2\t.\t2724465\t2740126\t255,255,153\n+chr2L\t2740126\t2750826\tactive\t4\t.\t2740126\t2750826\t255,255,153\n+chr2L\t2750826\t2770137\tactive\t4\t.\t2750826\t2770137\t255,255,153\n+chr2L\t2770137\t2809031\tactive\t2\t.\t2770137\t2809031\t255,255,153\n+chr2L\t2809031\t2855746\tinactive\t1\t.\t2809031\t2855746\t0,0,0\n+chr2L\t2855746\t2874843\tactive\t2\t.\t2855746\t2874843\t255,255,153\n+chr2L\t2874843\t2885455\tactive\t4\t.\t2874843\t2885455\t255,255,153\n+chr2L\t2885455\t2969305\tactive\t2\t.\t2885455\t2969'..b'9171063\t19201498\t255,255,153\n+chrX\t19201498\t19220554\tactive\t2\t.\t19201498\t19220554\t255,255,153\n+chrX\t19220554\t19242911\tinactive\t1\t.\t19220554\t19242911\t0,0,0\n+chrX\t19242911\t19366620\tinactive\t1\t.\t19242911\t19366620\t0,0,0\n+chrX\t19366620\t19374360\tactive\t4\t.\t19366620\t19374360\t255,255,153\n+chrX\t19374360\t19389270\tactive\t4\t.\t19374360\t19389270\t255,255,153\n+chrX\t19389270\t19399952\tactive\t2\t.\t19389270\t19399952\t255,255,153\n+chrX\t19399952\t19416481\tactive\t4\t.\t19399952\t19416481\t255,255,153\n+chrX\t19416481\t19456185\tinactive\t1\t.\t19416481\t19456185\t0,0,0\n+chrX\t19456185\t19473065\tactive\t4\t.\t19456185\t19473065\t255,255,153\n+chrX\t19473065\t19491987\tinactive\t1\t.\t19473065\t19491987\t0,0,0\n+chrX\t19491987\t19507538\tactive\t2\t.\t19491987\t19507538\t255,255,153\n+chrX\t19507538\t19531934\tactive\t4\t.\t19507538\t19531934\t255,255,153\n+chrX\t19531934\t19557899\tactive\t4\t.\t19531934\t19557899\t255,255,153\n+chrX\t19557899\t19577569\tactive\t4\t.\t19557899\t19577569\t255,255,153\n+chrX\t19577569\t19607671\tactive\t4\t.\t19577569\t19607671\t255,255,153\n+chrX\t19607671\t19625150\tinactive\t1\t.\t19607671\t19625150\t0,0,0\n+chrX\t19625150\t19639107\tactive\t2\t.\t19625150\t19639107\t255,255,153\n+chrX\t19639107\t19644907\tactive\t4\t.\t19639107\t19644907\t255,255,153\n+chrX\t19644907\t19657054\tactive\t2\t.\t19644907\t19657054\t255,255,153\n+chrX\t19657054\t19686912\tinactive\t1\t.\t19657054\t19686912\t0,0,0\n+chrX\t19686912\t19745861\tinactive\t1\t.\t19686912\t19745861\t0,0,0\n+chrX\t19745861\t19760530\tactive\t4\t.\t19745861\t19760530\t255,255,153\n+chrX\t19760530\t19815382\tactive\t2\t.\t19760530\t19815382\t255,255,153\n+chrX\t19815382\t19987457\tinactive\t1\t.\t19815382\t19987457\t0,0,0\n+chrX\t19987457\t20054086\tinactive\t1\t.\t19987457\t20054086\t0,0,0\n+chrX\t20054086\t20068910\tactive\t2\t.\t20054086\t20068910\t255,255,153\n+chrX\t20068910\t20125761\tinactive\t1\t.\t20068910\t20125761\t0,0,0\n+chrX\t20125761\t20262048\tinactive\t1\t.\t20125761\t20262048\t0,0,0\n+chrX\t20262048\t20294608\tactive\t4\t.\t20262048\t20294608\t255,255,153\n+chrX\t20294608\t20305771\tactive\t4\t.\t20294608\t20305771\t255,255,153\n+chrX\t20305771\t20339275\tinactive\t1\t.\t20305771\t20339275\t0,0,0\n+chrX\t20339275\t20382809\tactive\t2\t.\t20339275\t20382809\t255,255,153\n+chrX\t20382809\t20395830\tactive\t4\t.\t20382809\t20395830\t255,255,153\n+chrX\t20395830\t20508892\tinactive\t1\t.\t20395830\t20508892\t0,0,0\n+chrX\t20508892\t20526971\tinactive\t1\t.\t20508892\t20526971\t0,0,0\n+chrX\t20526971\t20631727\tinactive\t1\t.\t20526971\t20631727\t0,0,0\n+chrX\t20631727\t20894364\tinactive\t1\t.\t20631727\t20894364\t0,0,0\n+chrX\t20894364\t20907117\tactive\t4\t.\t20894364\t20907117\t255,255,153\n+chrX\t20907117\t20916940\tactive\t4\t.\t20907117\t20916940\t255,255,153\n+chrX\t20916940\t20931445\tactive\t2\t.\t20916940\t20931445\t255,255,153\n+chrX\t20931445\t20944384\tactive\t2\t.\t20931445\t20944384\t255,255,153\n+chrX\t20944384\t20996348\tinactive\t1\t.\t20944384\t20996348\t0,0,0\n+chrX\t20996348\t21012072\tinactive\t1\t.\t20996348\t21012072\t0,0,0\n+chrX\t21012072\t21178100\tinactive\t1\t.\t21012072\t21178100\t0,0,0\n+chrX\t21178100\t21186628\tinactive\t1\t.\t21178100\t21186628\t0,0,0\n+chrX\t21186628\t21194946\tactive\t4\t.\t21186628\t21194946\t255,255,153\n+chrX\t21194946\t21220857\tactive\t4\t.\t21194946\t21220857\t255,255,153\n+chrX\t21220857\t21240098\tactive\t4\t.\t21220857\t21240098\t255,255,153\n+chrX\t21240098\t21271964\tinactive\t1\t.\t21240098\t21271964\t0,0,0\n+chrX\t21271964\t21343699\tinactive\t1\t.\t21271964\t21343699\t0,0,0\n+chrX\t21343699\t21656357\tinactive\t1\t.\t21343699\t21656357\t0,0,0\n+chrX\t21656357\t21857607\tHP1\t3\t.\t21656357\t21857607\t51,160,44\n+chrX\t21857607\t21873688\tactive\t4\t.\t21857607\t21873688\t255,255,153\n+chrX\t21873688\t21889804\tactive\t2\t.\t21873688\t21889804\t255,255,153\n+chrX\t21889804\t21907001\tactive\t4\t.\t21889804\t21907001\t255,255,153\n+chrX\t21907001\t21931844\tinactive\t1\t.\t21907001\t21931844\t0,0,0\n+chrX\t21931844\t21954371\tactive\t2\t.\t21931844\t21954371\t255,255,153\n+chrX\t21954371\t22120033\tinactive\t1\t.\t21954371\t22120033\t0,0,0\n+chrX\t22120033\t22274227\tinactive\t1\t.\t22120033\t22274227\t0,0,0\n+chrX\t22274227\t22287785\tinactive\t1\t.\t22274227\t22287785\t0,0,0\n+chrX\t22287785\t22349277\tinactive\t1\t.\t22287785\t22349277\t0,0,0\n+chrX\t22349277\t22380885\tinactive\t1\t.\t22349277\t22380885\t0,0,0\n+chrX\t22380885\t22421267\tinactive\t1\t.\t22380885\t22421267\t0,0,0\n'
b
diff -r 000000000000 -r a9050bffb50c test-data/tad_score.gz
b
Binary file test-data/tad_score.gz has changed