Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • shuoguo
    Member
    • Sep 2012
    • 23

    how to calculate base-by-base coverage?

    for whole exom data (bam files), I want to calculate depth of coverage for given regions (supplied as bed file).
    furthermore, I also want to exclude bases with quality scores less that 30.

    can someone give me some hint on which software/pipeline to do this?
    thanks a lot
  • GenoMax
    Senior Member
    • Feb 2008
    • 7142

    #2
    coverageBed from BEDTools would give you what you need in terms of coverage (http://bedtools.readthedocs.org/en/l.../coverage.html).

    Comment

    • rnaeye
      Member
      • May 2011
      • 80

      #3
      Hi shuoguo;
      I can tell you two options.

      1)
      Code:
      bamtools coverage -in infile.bam -out output.txt
      2) Convert BAM file to BED first:

      Code:
      bedtools bamtobed -i input.bam > output.bed
      Then,
      Code:
      bedtools genomecov -d -i input.bed -g genomefile.txt
      Code:
      -d option prints coverage per base.
      The genome file should tab delimited and structured as follows:
      <chromName><TAB><chromSize>

      For example, Human (hg19):
      chr1 249250621
      chr2 243199373
      ...
      chr18_gl000207_random 4262

      Remember if you are analyzing human genome, you will be writing 3*10^9 lines in a text file if you want to report base by base. You may want to try with a smaller dataset first to see if you are getting what you want to get.

      Hope this helps.

      Comment

      • rnaeye
        Member
        • May 2011
        • 80

        #4
        Sorry, I just realized you asked for a given region, not whole genome. I think you can do following using bedtools.

        Code:
        bedtools coverage -d -abam file.bam -b regions.bed

        Comment

        • shuoguo
          Member
          • Sep 2012
          • 23

          #5
          Thank you rnaeye and GenoMax
          I also need to EXCLUDE bases that lave GQ less than 30. i am not sure if bed tools can do it?

          Comment

          Latest Articles

          Collapse

          • SEQadmin2
            Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
            by SEQadmin2



            Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
            ...
            Yesterday, 11:10 AM
          • SEQadmin2
            Cancer Drug Resistance: The Lingering Barrier to Rising Survival
            by SEQadmin2



            Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

            There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
            07-08-2026, 05:17 AM
          • GATTACAT
            Reply to Nine Things a Sample Prep Scientist Thinks About Before Sequencing
            by GATTACAT
            Love this - good data definitely starts from good input, and poor input can only give relatively poor data. I particularly like the mention of Nanodrop/absorbance based methods for quantification. It's such a toss up if you'll get an accurate reading or what amounts to a randomly generated number, and a lot of library/sequencing related issues can be traced back to poor quant.
            07-01-2026, 11:43 AM

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by SEQadmin2, Yesterday, 10:04 AM
          0 responses
          10 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 07-08-2026, 10:08 AM
          0 responses
          7 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 07-07-2026, 11:05 AM
          0 responses
          14 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 07-02-2026, 11:08 AM
          0 responses
          31 views
          0 reactions
          Last Post SEQadmin2  
          Working...