-
Notifications
You must be signed in to change notification settings - Fork 212
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
deepTools like (gatk) DepthOfCoverage tool #828
Comments
Should this accept multiple equivalents of |
yeah, either some reasonable defaults or the user can give the -ct thresholds |
Would it be possible to correct/check for mate overlaps for the per-base coverages or the average region coverages? |
Unlikely |
One would need to extend the reads and filter out one mate. |
At the moment I have this writing something like the following to a file:
That's basically a tidy dataframe, so it can be easily plotted later in R. The thresholds can be specified with |
Note that this is "bases/regions with at least the given coverage", which isn't exactly the same as a real depth of coverage. |
I'll see if I can convert the regions to a set of 1 base positions, in which case the output would be exact and correct even when not using bins. |
This is now implemented for the 3.3.0 release. |
it would be nice if one could get a per base (per target region) coverage information from DeepTools in the spirit of GATK DepthOfCoverage or samtools depth or bedtools coverage like "multiBamCoverage"
bedtools coverage is missing filtering options
bedtools multicov is only per region
samtools depth is slow for many bam files/regions
GATK has license issues while installation and also not fast
deepTools so far has only tools for regions, bamCoverage is always full genome
only fast alternative is sambamba depth base/region, like samtools depth, but multi-threaded, only no summary statistics
It should allow for the usual DeepTools read/mapping filtering options.
It should also print out 0-coverage bases.
Summary statistics per base per region would be another nice feature.
The text was updated successfully, but these errors were encountered: