Unconfigured Ad

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • 2seq
    Junior Member
    • Oct 2012
    • 9

    #1

    Samtools Depth - Filling in the gaps with 0 - Perl?

    Hi everyone,
    I thought that perhaps others have encountered and previously solved the following problem:

    Samtools depth allows you to collect read depth information across a range in the genome using bed files to supply the coordinates.

    My problem, is that in my output, the low quality regions or the elimination events appear as gaps rather than as zeros. Is there a way to change the parameters of samtools depth to report for all positions even if it just reports a 0? Or do I just need to write a script to fill in the blanks?

    Current output:
    Code:
    19      80820312        1       0       0
    19      80820313        1       0       0
    19      80820314        1       0       0
    19      80826337        2       0       2
    19      80826338        2       0       3
    19      80826339        3       0       3
    19      80826340        3       0       4
    Desired output:
    Code:
    19      80826312        1       0       0
    19      80820313        1       0       0
    19      80820314        1       0       0
    19      80820315        0       0       0
    19      80820316        0       0       0
    ..
    19      80820335        0       0       0
    19      80820336        0       0       0
    19      80826337        2       0       2
    19      80826338        2       0       3
    19      80826339        3       0       3
    19      80826340        3       0       4
    **with the .. region filled in as well.

    I have managed to write a code that identifies the breakpoints, but I'm not sure how to add additional lines that will run consecutively through the elimination site until it reaches the next set of depth values. Below is the code I've been working on (it's a perl one-liner and pretty raw):

    Code:
    perl -e '$last == 0; while (<>){@a = split(/\t/, $_, 5); $n = $a[1]; if ($last == 0) { $last = ($a[1] + 1) ;  } elsif ($n == $last){ $last = ($n + 1);  next; } elsif ($n > ($last + 1)){ print "$a[0]\t$last\t0\t0\t0\n"; $last = ($n + 1); print;}  }' depth1-2-3.bed
    All help is greatly appreciated!
  • WhatsOEver
    Senior Member
    • Apr 2012
    • 215

    #2
    there is actually no need to write something new. You can get your desired output by using bedtools genomecov: http://bedtools.readthedocs.org/en/l...genomecov.html

    In short:
    using the "-d" parameter gives you a per base coverage
    using the "-bga" parameters will group regions of identical coverage

    Both will output bases/regions of zero coverage.

    Comment

    • biograd
      Junior Member
      • Feb 2014
      • 2

      #3
      It doesn't look like genomecov will allow you to filter the output according to mapping quality thresholds. Anyone know what the cutoff is? It's not in the docs. thanks!
      Last edited by biograd; 10-02-2014, 01:06 AM.

      Comment

      • WhatsOEver
        Senior Member
        • Apr 2012
        • 215

        #4
        As far as I know, it doesn't apply a filter at all. You would need to pre-filter your samfile using your own quality threshold which is pretty straight forward using awk:

        Code:
        awk -F "\t" '{ if($5 > 20) print $0}' ./yourSamFile.sam
        This returns only those lines where the mapping quality is greater than 20.

        Comment

        Latest Articles

        Collapse

        • SEQadmin2
          Beyond CRISPR/Cas9: Understand, Choose, and Use the Right Genome Editing Tool
          by SEQadmin2



          CRISPR/Cas9 sparked the gene editing revolution for both research and therapeutics.1 But this system still showed severe issues that limited its applications. The most prominent were the heavy reliance on PAM sequences, delivery limitations, double-stranded breaks that prompt unintended edits and cell death, and editing inefficiency (both in targeting and in knock-in reliability).

          Despite this, “CRISPR helped turn genome editing from a specialized technique into
          ...
          07-31-2026, 11:01 AM
        • SEQadmin2
          Proteomic Platforms: How to Choose the Right Analytical Strategy to Improve Detection and Clinical Applications
          by SEQadmin2


          Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.

          The systematic characterization of the human proteome has
          ...
          07-20-2026, 11:48 AM
        • 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.
          ...
          07-09-2026, 11:10 AM

        ad_right_rmr

        Collapse

        News

        Collapse

        Topics Statistics Last Post
        Started by SEQadmin2, Yesterday, 10:13 AM
        0 responses
        14 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 07-31-2026, 02:55 AM
        0 responses
        29 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 07-24-2026, 12:17 PM
        0 responses
        22 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 07-23-2026, 11:41 AM
        0 responses
        21 views
        0 reactions
        Last Post SEQadmin2  
        Working...