Hi bedtools team
First, fantastic work on the software. I’m trying to get per-base coverage information for one gene from BAM files with high-coverage paired-end RNA-seq data.
I have been following Eric Minikel’s helpful example and working through the docs. The problem I have is that on our cluster the maximum RAM I can access is 128GB and many ( ~60%) of the coverageBed jobs I am running are exceeding this. Is there a way to control/reduce coverageBed’s memory use for this task?
I’m using a command like:
coverageBed -split -d -a locus.bed -b sample.bam > sample.bpcoverage.txt
locus.bed is extremely simple, just the following:
5 1250000 1300000
The BAMs are indexed and I think sorted (but I didn’t do either myself).
Any suggestions?
Many thanks
Davis
--
You received this message because you are subscribed to the Google Groups "bedtools-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bedtools-discu...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I did:
```
samtools idxstats sample.bam | cut -f1,2 > ../data/rnaseq_bams_genome_file.tsv"
```
to generate a "genome file" (I don't need to tell you this, but in case it's useful for anyone else like me who's fumbling around with BAMs).
So that's all working really nicely for me now :)
My only remaining query is about the apparent coverage across introns.
Best
Davis