GenomeComb
Genomecomb moved to github on https://github.com/derijkp/genomecomb with documentation on https://derijkp.github.io/genomecomb. For up to date versions, go there. These pages only remain here for the data on the older scientific application (or if someone really needs a long obsolete version of the software)
cg depth_histo ?options? bamfile ?regionfile?
makes a histogram of the depth in the given bamfile, subdivided in on- and oftarget regions
depth_histo outputs a tsv formatted histogram of the depth: For each depth (column depth) the number of bases with this depth are given in the target region (column ontarget) and outside the target region (column offtarget). The target region is given in the regionfile in tsv format. The histogram is by default limited to a maximum depth of 1000 (Positions with a depth >= 1000 are counted as depth 1000). This can be changed with the -max option. Depths not presents in are skipped in the output
cg depth_histo test.bam regfile.tsv > histo.tsv
Report