Skip to content
Snippets Groups Projects
Commit 891f3683 authored by nkindlon's avatar nkindlon
Browse files

Merge remote-tracking branch 'upstream/master'

parents 3baa8db2 06dffce9
No related branches found
No related tags found
No related merge requests found
==============================
BEDTools
==============================
===================================================
bedtools - a swiss army knife for genome arithmetic
===================================================
**Current version**: 2.18.1
**Current version**: 2.18.2
Note
-------
......
......@@ -189,11 +189,14 @@ void BedAnnotate::ReportAnnotations() {
int nonZeroBases = (length - zeroDepthCount);
float fractCovered = (float) nonZeroBases / length;
if (_reportCounts == false && _reportBoth == false)
printf("%f\t", fractCovered);
printf("%f", fractCovered);
else if (_reportCounts == true && _reportBoth == false)
printf("%d\t", bedItr->counts[i]);
printf("%d", bedItr->counts[i]);
else if (_reportCounts == false && _reportBoth == true)
printf("%d\t%f\t", bedItr->counts[i], fractCovered);
printf("%d\t%f", bedItr->counts[i], fractCovered);
if (i != _annoFiles.size() - 1)
printf("\t");
}
// print newline for next feature.
printf("\n");
......
# This file was auto-generated by running "make setversion VERSION=v2.18.1"
# on Mon Dec 16 19:50:17 EST 2013 .
# This file was auto-generated by running "make setversion VERSION=v2.18.2"
# on Tue Jan 7 19:46:47 EST 2014 .
# Please do not edit or commit this file manually.
#
v2.18.1
v2.18.2
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment