Previous changeset 9:6aee99aec0d1 (2016-10-25) Next changeset 11:8f2a1286b61c (2017-01-24) |
Commit message:
planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 0eeb2e1a184186ba5ac044136e71b943e2af0f09 |
modified:
deepTools_macros.xml test-data/bamCompare_result1.bg test-data/bamCoverage_result2.bw test-data/bamCoverage_result3.bg test-data/bamCoverage_result4.bg test-data/bamCoverage_result4.bw test-data/bamCoverage_result5.bw test-data/bigwigCompare_result2.bg test-data/computeGCBias_result1.tabular test-data/correctGCBias_result1.bam test-data/plotFingerprint_result2.tabular test-data/sequence.2bit tool_dependencies.xml |
added:
test-data/bamCoverage_result6.bw test-data/computeMatrixOperations.txt test-data/computeMatrixOperations_result2.mat.gz test-data/plotFingerprint_quality_metrics.tabular |
b |
diff -r 6aee99aec0d1 -r 9cc3a577f80d deepTools_macros.xml --- a/deepTools_macros.xml Tue Oct 25 19:29:44 2016 -0400 +++ b/deepTools_macros.xml Mon Dec 05 08:12:20 2016 -0500 |
[ |
@@ -98,11 +98,11 @@ </xml> <token name="@THREADS@">--numberOfProcessors "\${GALAXY_SLOTS:-4}"</token> - <token name="@WRAPPER_VERSION@">2.3.6</token> + <token name="@WRAPPER_VERSION@">2.4.1</token> <xml name="requirements"> <requirements> <requirement type="package" version="2.7.10">python</requirement> - <requirement type="package" version="2.3.6">deepTools</requirement> + <requirement type="package" version="2.4.1">deeptools</requirement> <yield /> </requirements> <expand macro="stdio" /> @@ -285,11 +285,21 @@ </param> </xml> + <xml name="sortRegionsComputeMatrix"> + <param argument="--sortRegions" type="select" label="Sort regions" + help="Whether the heatmap should present the regions sorted. The default is to sort in descending order based on the mean value per region."> + <option value="no">no ordering</option> + <option value="keep" selected="true">maintain the same ordering as the input files</option> + <option value="descend">descending order</option> + <option value="ascend">ascending order</option> + </param> + </xml> + <xml name="sortRegions"> <param argument="--sortRegions" type="select" label="Sort regions" help="Whether the heatmap should present the regions sorted. The default is to sort in descending order based on the mean value per region."> <option value="no">no ordering</option> - <option value="descend" selected="true">descending order</option> + <option value="descend">descending order</option> <option value="ascend">ascending order</option> </param> </xml> @@ -362,21 +372,62 @@ </xml> <xml name="multiple_input_bams"> - <param argument="--bamfiles" type="data" format="bam" min="1" - label="Bam file" multiple="true" - help=""/> + <conditional name="multibam_conditional"> + <param name="orderMatters" type="select" label="Sample order matters" help="By default, the order of samples given to the program is dependent on their order in your history. If the order of the samples is vital to you, select Yes below."> + <option value="No" selected="true">No</option> + <option value="Yes">Yes</option> + </param> + <when value="No"> + <param argument="--bamfiles" type="data" format="bam" min="1" + label="Bam file" multiple="true" + help=""/> + </when> + <when value="Yes"> + <repeat name="multibam_repeats" min="1" title="BAM Files"> + <param argument="--bamfiles" type="data" format="bam" label="BAM file" help="" /> + </repeat> + </when> + </conditional> </xml> <xml name="multiple_input_bams_min2"> - <param argument="--bamfiles" type="data" format="bam" min="2" - label="Bam file" multiple="true" - help=""/> + <conditional name="multibam_conditional"> + <param name="orderMatters" type="select" label="Sample order matters" help="By default, the order of samples given to the program is dependent on their order in your history. If the order of the samples +is vital to you, select Yes below."> + <option value="No" selected="true">No</option> + <option value="Yes">Yes</option> + </param> + <when value="No"> + <param argument="--bamfiles" type="data" format="bam" min="2" + label="Bam file" multiple="true" + help=""/> + </when> + <when value="Yes"> + <repeat name="multibam_repeats" min="2" title="BAM Files"> + <param argument="--bamfiles" type="data" format="bam" label="BAM file" help="" /> + </repeat> + </when> + </conditional> </xml> <xml name="multiple_input_bigwigs"> - <param argument="--bigwigfiles" type="data" format="bigwig" multiple="True" min="2" - label="Bigwig file" - help="A Bigwig file."/> + <conditional name="multibigwig_conditional"> + <param name="orderMatters" type="select" label="Sample order matters" help="By default, the order of samples given to the program is dependent on their order in your history. If the order of the samples +is vital to you, select Yes below."> + <option value="No" selected="true">No</option> + <option value="Yes">Yes</option> + </param> + <when value="No"> + <param argument="--bigwigfiles" type="data" format="bigwig" multiple="True" min="2" + label="Bigwig file" + help="A Bigwig file."/> + </when> + <when value="Yes"> + <repeat name="multibigwig_repeats" min="2" title="BigWig files"> + <param argument="--bigwigfiles" type="data" format="bigwig" label="Bigwig file" help="A Bigwig file."/> + </repeat> + </when> + </conditional> </xml> <xml name="plotTitle"> @@ -390,12 +441,21 @@ <![CDATA[ #set files=[] #set labels=[] - #for $counter, $bamfile in enumerate($bamfiles): - ln -s "${bamfile}" "./${counter}.bam" && - ln -s "${bamfile.metadata.bam_index}" "./${counter}.bam.bai" && - #silent $files.append('%s.bam' % $counter) - #silent $labels.append("'%s'" % ($bamfile.display_name)) - #end for + #if $multibam_conditional.orderMatters == "No": + #for $counter, $bamfile in enumerate($multibam_conditional.bamfiles): + ln -s "${bamfile}" "./${counter}.bam" && + ln -s "${bamfile.metadata.bam_index}" "./${counter}.bam.bai" && + #silent $files.append('%s.bam' % $counter) + #silent $labels.append("'%s'" % ($bamfile.display_name)) + #end for + #else: + #for $counter, $f in enumerate($multibam_conditional.multibam_repeats): + ln -s "${f.bamfile}" "./${counter}.bam" && + ln -s "${f.bamfile.metadata.bam_index}" "./${counter}.bam.bai" && + #silent $files.append('%s.bam' % $counter) + #silent $labels.append("'%s'" % ($f.bamfile.display_name)) + #end for + #end if ]]> </token> @@ -403,11 +463,19 @@ <![CDATA[ #set files=[] #set labels=[] - #for $counter, $bigwig in enumerate($bigwigfiles): - ln -s "${bigwig}" "${counter}.bw" && - #silent $files.append('%s.bw' % $counter) - #silent $labels.append("'%s'" % ($bigwig.display_name)) - #end for + #if $multibigwig_conditional.orderMatters == "No": + #for $counter, $bigwig in enumerate($multibigwig_conditional.bigwigfiles): + ln -s "${bigwig}" "${counter}.bw" && + #silent $files.append('%s.bw' % $counter) + #silent $labels.append("'%s'" % ($bigwig.display_name)) + #end for + #else: + #for $counter, $f in enumerate($multibigwig_conditional.multibigwig_repeats): + ln -s "${f.bigwig}" "${counter}.bw" && + #silent $files.append('%s.bw' % $counter) + #silent $labels.append("'%s'" % ($f.bigwig.display_name)) + #end for + #end if ]]> </token> |
b |
diff -r 6aee99aec0d1 -r 9cc3a577f80d test-data/bamCompare_result1.bg --- a/test-data/bamCompare_result1.bg Tue Oct 25 19:29:44 2016 -0400 +++ b/test-data/bamCompare_result1.bg Mon Dec 05 08:12:20 2016 -0500 |
b |
@@ -1,1 +1,1 @@ -chrM 0 16569 1.00 +chrM 0 16569 1 |
b |
diff -r 6aee99aec0d1 -r 9cc3a577f80d test-data/bamCoverage_result2.bw |
b |
Binary file test-data/bamCoverage_result2.bw has changed |
b |
diff -r 6aee99aec0d1 -r 9cc3a577f80d test-data/bamCoverage_result3.bg --- a/test-data/bamCoverage_result3.bg Tue Oct 25 19:29:44 2016 -0400 +++ b/test-data/bamCoverage_result3.bg Mon Dec 05 08:12:20 2016 -0500 |
b |
@@ -1,7 +1,7 @@ -chrM 0 210 9768764.94 -chrM 210 220 9560918.88 -chrM 220 230 7690304.31 -chrM 230 240 5196151.56 -chrM 240 250 3325537.00 -chrM 250 260 623538.19 -chrM 260 16569 0.00 +chrM 0 210 9.76876e+06 +chrM 210 220 9.56092e+06 +chrM 220 230 7.6903e+06 +chrM 230 240 5.19615e+06 +chrM 240 250 3.32554e+06 +chrM 250 260 623538 +chrM 260 16569 0 |
b |
diff -r 6aee99aec0d1 -r 9cc3a577f80d test-data/bamCoverage_result4.bg --- a/test-data/bamCoverage_result4.bg Tue Oct 25 19:29:44 2016 -0400 +++ b/test-data/bamCoverage_result4.bg Mon Dec 05 08:12:20 2016 -0500 |
b |
b'@@ -1,472 +1,472 @@\n-phiX174\t0\t10\t16302.83\n-phiX174\t10\t20\t48908.50\n-phiX174\t20\t70\t146725.49\n-phiX174\t70\t80\t195633.98\n-phiX174\t80\t90\t179331.15\n-phiX174\t90\t100\t163028.32\n-phiX174\t100\t120\t114119.82\n-phiX174\t120\t140\t146725.49\n-phiX174\t140\t150\t163028.32\n-phiX174\t150\t160\t130422.65\n-phiX174\t160\t170\t163028.32\n-phiX174\t170\t180\t179331.15\n-phiX174\t180\t200\t211936.81\n-phiX174\t200\t210\t195633.98\n-phiX174\t210\t220\t244542.48\n-phiX174\t220\t230\t277148.14\n-phiX174\t230\t240\t342359.47\n-phiX174\t240\t250\t326056.64\n-phiX174\t250\t260\t293450.97\n-phiX174\t260\t270\t342359.47\n-phiX174\t270\t280\t407570.79\n-phiX174\t280\t300\t423873.63\n-phiX174\t300\t310\t358662.30\n-phiX174\t310\t320\t326056.64\n-phiX174\t320\t330\t374965.13\n-phiX174\t330\t340\t358662.30\n-phiX174\t340\t350\t293450.97\n-phiX174\t350\t360\t260845.31\n-phiX174\t360\t370\t228239.64\n-phiX174\t370\t380\t244542.48\n-phiX174\t380\t390\t309753.80\n-phiX174\t390\t400\t260845.31\n-phiX174\t400\t410\t244542.48\n-phiX174\t410\t420\t228239.64\n-phiX174\t420\t450\t293450.97\n-phiX174\t450\t460\t309753.80\n-phiX174\t460\t470\t342359.47\n-phiX174\t470\t490\t423873.63\n-phiX174\t490\t510\t505387.79\n-phiX174\t510\t520\t472782.12\n-phiX174\t520\t530\t570599.11\n-phiX174\t530\t540\t505387.79\n-phiX174\t540\t550\t537993.45\n-phiX174\t550\t560\t554296.28\n-phiX174\t560\t570\t652113.27\n-phiX174\t570\t580\t635810.44\n-phiX174\t580\t590\t570599.11\n-phiX174\t590\t600\t619507.61\n-phiX174\t600\t610\t554296.28\n-phiX174\t610\t630\t635810.44\n-phiX174\t630\t640\t586901.94\n-phiX174\t640\t650\t521690.62\n-phiX174\t650\t660\t554296.28\n-phiX174\t660\t670\t570599.11\n-phiX174\t670\t680\t603204.78\n-phiX174\t680\t690\t668416.10\n-phiX174\t690\t700\t652113.27\n-phiX174\t700\t710\t570599.11\n-phiX174\t710\t730\t603204.78\n-phiX174\t730\t740\t521690.62\n-phiX174\t740\t760\t603204.78\n-phiX174\t760\t770\t505387.79\n-phiX174\t770\t780\t521690.62\n-phiX174\t780\t790\t537993.45\n-phiX174\t790\t800\t554296.28\n-phiX174\t800\t810\t456479.29\n-phiX174\t810\t820\t440176.46\n-phiX174\t820\t830\t374965.13\n-phiX174\t830\t840\t326056.64\n-phiX174\t840\t850\t358662.30\n-phiX174\t850\t860\t309753.80\n-phiX174\t860\t870\t342359.47\n-phiX174\t870\t880\t260845.31\n-phiX174\t880\t890\t358662.30\n-phiX174\t890\t900\t391267.96\n-phiX174\t900\t910\t472782.12\n-phiX174\t910\t920\t554296.28\n-phiX174\t920\t930\t570599.11\n-phiX174\t930\t940\t554296.28\n-phiX174\t940\t950\t586901.94\n-phiX174\t950\t960\t603204.78\n-phiX174\t960\t970\t521690.62\n-phiX174\t970\t980\t489084.95\n-phiX174\t980\t990\t440176.46\n-phiX174\t990\t1000\t423873.63\n-phiX174\t1000\t1010\t456479.29\n-phiX174\t1010\t1030\t586901.94\n-phiX174\t1030\t1040\t766233.09\n-phiX174\t1040\t1050\t798838.76\n-phiX174\t1050\t1060\t831444.42\n-phiX174\t1060\t1070\t880352.92\n-phiX174\t1070\t1080\t847747.25\n-phiX174\t1080\t1090\t880352.92\n-phiX174\t1090\t1100\t782535.93\n-phiX174\t1100\t1110\t749930.26\n-phiX174\t1110\t1120\t668416.10\n-phiX174\t1120\t1130\t652113.27\n-phiX174\t1130\t1140\t635810.44\n-phiX174\t1140\t1150\t684718.93\n-phiX174\t1150\t1160\t635810.44\n-phiX174\t1160\t1170\t603204.78\n-phiX174\t1170\t1180\t619507.61\n-phiX174\t1180\t1190\t586901.94\n-phiX174\t1190\t1200\t521690.62\n-phiX174\t1200\t1210\t489084.95\n-phiX174\t1210\t1220\t570599.11\n-phiX174\t1220\t1230\t489084.95\n-phiX174\t1230\t1240\t456479.29\n-phiX174\t1240\t1250\t358662.30\n-phiX174\t1250\t1260\t342359.47\n-phiX174\t1260\t1270\t407570.79\n-phiX174\t1270\t1280\t358662.30\n-phiX174\t1280\t1290\t374965.13\n-phiX174\t1290\t1300\t326056.64\n-phiX174\t1300\t1310\t391267.96\n-phiX174\t1310\t1320\t521690.62\n-phiX174\t1320\t1330\t505387.79\n-phiX174\t1330\t1340\t521690.62\n-phiX174\t1340\t1350\t489084.95\n-phiX174\t1350\t1370\t505387.79\n-phiX174\t1370\t1390\t472782.12\n-phiX174\t1390\t1400\t358662.30\n-phiX174\t1400\t1410\t456479.29\n-phiX174\t1410\t1430\t489084.95\n-phiX174\t1430\t1450\t554296.28\n-phiX174\t1450\t1460\t570599.11\n-phiX174\t1460\t1470\t586901.94\n-phiX174\t1470\t1480\t619507.61\n-phiX174\t1480\t1490\t603204.78\n-phiX174\t1490\t1500\t554296.28\n-phiX174\t1500\t1510\t668416.10\n-phiX174\t1510\t1520\t635810.44\n-phiX174\t1520\t1540\t798838.76\n-phiX174\t1540\t1550\t733627.43\n-phiX174\t1550\t1570\t766233.09\n-phiX174\t1570\t1580\t782535.93\n-phiX174\t1580\t1590\t684718.93\n-phiX174\t1590\t1600\t635810.44\n-phiX174\t1600\t1610\t570599.11\n-phiX174\t1610\t1620\t537993.45\n-phiX174\t1620\t1630\t505387.79\n-phiX174\t1630\t1640\t472782.12\n-phiX174\t1640\t1650\t489084.95\n-phiX174\t1650\t1'..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 6aee99aec0d1 -r 9cc3a577f80d test-data/bamCoverage_result4.bw |
b |
Binary file test-data/bamCoverage_result4.bw has changed |
b |
diff -r 6aee99aec0d1 -r 9cc3a577f80d test-data/bamCoverage_result5.bw |
b |
Binary file test-data/bamCoverage_result5.bw has changed |
b |
diff -r 6aee99aec0d1 -r 9cc3a577f80d test-data/bamCoverage_result6.bw |
b |
Binary file test-data/bamCoverage_result6.bw has changed |
b |
diff -r 6aee99aec0d1 -r 9cc3a577f80d test-data/bigwigCompare_result2.bg --- a/test-data/bigwigCompare_result2.bg Tue Oct 25 19:29:44 2016 -0400 +++ b/test-data/bigwigCompare_result2.bg Mon Dec 05 08:12:20 2016 -0500 |
b |
@@ -1,3 +1,3 @@ -ch1 0 400 1.0 -ch2 0 400 1.0 -ch3 0 400 1.0 +ch1 0 400 1 +ch2 0 400 1 +ch3 0 400 1 |
b |
diff -r 6aee99aec0d1 -r 9cc3a577f80d test-data/computeGCBias_result1.tabular --- a/test-data/computeGCBias_result1.tabular Tue Oct 25 19:29:44 2016 -0400 +++ b/test-data/computeGCBias_result1.tabular Mon Dec 05 08:12:20 2016 -0500 |
b |
@@ -1,12 +1,3 @@ -0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 @@ -94,6 +85,7 @@ 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 @@ -103,13 +95,11 @@ 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 @@ -128,9 +118,18 @@ 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 +5.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+01 +0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 -0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 @@ -299,3 +298,4 @@ 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 +0.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 |
b |
diff -r 6aee99aec0d1 -r 9cc3a577f80d test-data/computeMatrixOperations.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/computeMatrixOperations.txt Mon Dec 05 08:12:20 2016 -0500 |
b |
@@ -0,0 +1,4 @@ +Groups: + genes +Samples: + file_0 |
b |
diff -r 6aee99aec0d1 -r 9cc3a577f80d test-data/computeMatrixOperations_result2.mat.gz |
b |
Binary file test-data/computeMatrixOperations_result2.mat.gz has changed |
b |
diff -r 6aee99aec0d1 -r 9cc3a577f80d test-data/correctGCBias_result1.bam |
b |
Binary file test-data/correctGCBias_result1.bam has changed |
b |
diff -r 6aee99aec0d1 -r 9cc3a577f80d 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:12:20 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 6aee99aec0d1 -r 9cc3a577f80d test-data/plotFingerprint_result2.tabular --- a/test-data/plotFingerprint_result2.tabular Tue Oct 25 19:29:44 2016 -0400 +++ b/test-data/plotFingerprint_result2.tabular Mon Dec 05 08:12:20 2016 -0500 |
b |
@@ -1,254 +1,254 @@ 'bowtie2 test1.bam' 'bowtie2 test1.bam' -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -35 35 -33 33 -33 33 -33 33 -33 33 -33 33 -33 33 -33 33 -33 33 -33 33 -33 33 -33 33 -33 33 -27 27 -25 25 +1085 1085 +1782 1782 +2706 2706 +3570 3570 +6753 6753 +8069 8069 +8034 8034 +7999 7999 +7964 7964 +7929 7929 +7894 7894 +7859 7859 +7824 7824 +7789 7789 +7754 7754 +7719 7719 +7684 7684 +7649 7649 +7614 7614 +7579 7579 +7544 7544 +7509 7509 +7474 7474 +7439 7439 +7404 7404 +7369 7369 +7334 7334 +7299 7299 +7264 7264 +7229 7229 +7194 7194 +7159 7159 +7124 7124 +7089 7089 +7054 7054 +7019 7019 +6984 6984 +6949 6949 +6914 6914 +6879 6879 +6844 6844 +6809 6809 +6774 6774 +6739 6739 +6704 6704 +6669 6669 +6634 6634 +6599 6599 +6564 6564 +6529 6529 +6494 6494 +6459 6459 +6424 6424 +6389 6389 +6354 6354 +6319 6319 +6284 6284 +6249 6249 +6214 6214 +6179 6179 +6144 6144 +6109 6109 +6074 6074 +6039 6039 +6004 6004 +5969 5969 +5934 5934 +5899 5899 +5864 5864 +5829 5829 +5794 5794 +5759 5759 +5724 5724 +5689 5689 +5654 5654 +5619 5619 +5584 5584 +5549 5549 +5514 5514 +5479 5479 +5444 5444 +5409 5409 +5374 5374 +5339 5339 +5304 5304 +5269 5269 +5234 5234 +5199 5199 +5164 5164 +5129 5129 +5094 5094 +5059 5059 +5024 5024 +4989 4989 +4954 4954 +4919 4919 +4884 4884 +4849 4849 +4814 4814 +4779 4779 +4744 4744 +4709 4709 +4674 4674 +4639 4639 +4604 4604 +4569 4569 +4534 4534 +4499 4499 +4464 4464 +4429 4429 +4394 4394 +4359 4359 +4324 4324 +4289 4289 +4254 4254 +4219 4219 +4184 4184 +4149 4149 +4114 4114 +4079 4079 +4044 4044 +4009 4009 +3974 3974 +3939 3939 +3904 3904 +3869 3869 +3834 3834 +3799 3799 +3764 3764 +3729 3729 +3694 3694 +3659 3659 +3624 3624 +3589 3589 +3554 3554 +3519 3519 +3484 3484 +3449 3449 +3414 3414 +3379 3379 +3344 3344 +3309 3309 +3274 3274 +3239 3239 +3204 3204 +3169 3169 +3134 3134 +3099 3099 +3064 3064 +3029 3029 +2994 2994 +2959 2959 +2924 2924 +2889 2889 +2854 2854 +2819 2819 +2784 2784 +2749 2749 +2714 2714 +2679 2679 +2644 2644 +2609 2609 +2574 2574 +2539 2539 +2504 2504 +2469 2469 +2434 2434 +2399 2399 +2364 2364 +2329 2329 +2294 2294 +2259 2259 +2224 2224 +2189 2189 +2154 2154 +2119 2119 +2084 2084 +2049 2049 +2014 2014 +1979 1979 +1944 1944 +1909 1909 +1874 1874 +1839 1839 +1804 1804 +1769 1769 +1734 1734 +1699 1699 +1664 1664 +1629 1629 +1594 1594 +1559 1559 +1524 1524 +1489 1489 +1454 1454 +1419 1419 +1384 1384 +1349 1349 +1314 1314 +1279 1279 +1244 1244 +1209 1209 +1174 1174 +1139 1139 +1104 1104 +1069 1069 +1034 1034 +999 999 +964 964 +929 929 +894 894 +859 859 +824 824 +789 789 +754 754 +719 719 +684 684 +651 651 +618 618 +585 585 +552 552 +519 519 +486 486 +453 453 +420 420 +387 387 +354 354 +321 321 +288 288 +261 261 +236 236 +227 227 +206 206 +186 186 +167 167 +160 160 +141 141 +124 124 +107 107 +92 92 +77 77 +62 62 +52 52 +45 45 +38 38 +31 31 24 24 -21 21 -20 20 -19 19 -19 19 -19 19 -17 17 -17 17 -15 15 -15 15 -15 15 -10 10 -7 7 -7 7 -7 7 -7 7 -6 6 -5 5 -5 5 -5 5 +18 18 +13 13 +8 8 3 3 0 0 0 0 |
b |
diff -r 6aee99aec0d1 -r 9cc3a577f80d test-data/sequence.2bit |
b |
Binary file test-data/sequence.2bit has changed |
b |
diff -r 6aee99aec0d1 -r 9cc3a577f80d tool_dependencies.xml --- a/tool_dependencies.xml Tue Oct 25 19:29:44 2016 -0400 +++ b/tool_dependencies.xml Mon Dec 05 08:12:20 2016 -0500 |
b |
@@ -3,7 +3,7 @@ <package name="python" version="2.7.10"> <repository changeset_revision="0339c4a9b87b" name="package_python_2_7_10" owner="iuc" prior_installation_required="True" toolshed="https://toolshed.g2.bx.psu.edu" /> </package> - <package name="deepTools" version="2.3.6"> - <repository changeset_revision="05f46fef1ea5" name="package_python_2_7_deeptools_2_3_6" owner="iuc" toolshed="https://toolshed.g2.bx.psu.edu" /> + <package name="deeptools" version="2.4.1"> + <repository changeset_revision="e9855a43ac53" name="package_python_2_7_deeptools_2_4_1" owner="iuc" toolshed="https://toolshed.g2.bx.psu.edu" /> </package> </tool_dependency> |