I am running bedmap
and my output has many zeros after the decimal. I don't expect to have fractional counts. I looked at the bedmap help page and am just wanting clarification. Will the --prec
flag allow me to remove the decimal and everything after it? I was considering using --prec 0
.
Here is the code I am running:
./bedmap --fraction-map 0.5 --ec --echo --skip-unmapped --sum --delim '\t' hg38_chromSizes_500bpBins.bed $FILEIN > $OUT
And an example of the output:
chr1 10000 10500 28124.000000
chr1 10500 11000 2950.000000
chr1 11000 11500 0.000000
chr1 11500 12000 0.000000
I also notice that I am using
--skip-unmapped
and--echo
which are probably counter productive.