Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Extracting Regions of Zero Coverage

    I am looking for a quick and simple way to identify regions of zero coverage in a sequencing set. My ultimate goal is to try and determine whether there might be genomic features which contribute to this.

    I've used both GATK and Samtools depth to identify the depth of coverage at each base position across my genome. What I'd like is to have the base positions for each REGION which are not covered (ie. 2307-2412). I have depth of coverage on many samples, and would like to have a quick way of getting this information across all of them. Are there any functions out there which could do this? Am I better off just sticking with some sort of bash command?

    Below is a sample of what the output of GATK is (depthofcoverage) as an example.

    Locus Total_Depth Average_Depth_sample Depth_for_s1 Depth_for_s2 Depth_for_s3
    genome:1 283 94.33 82 111 90
    genome:2 284 94.67 82 111 91
    genome:3 285 95.00 82 112 91

  • #2
    I imagine that tabix indexing/fetching would be useful here. That's the basis for things like indexing VCF files.

    Comment


    • #3
      Thanks for the speedy reply. Could you perhaps elaborate on your answer a bit? I'm not familiar with tabix, and the online documentation seems somewhat unspecific.

      Comment


      • #4
        Originally posted by drea11 View Post
        I'd like is to have the base positions for each REGION which are not covered (ie. 2307-2412)
        Maybe the 'genomecov' subcommand from 'bedtools' with option '-bga' is useful for you.

        Comment


        • #5
          Originally posted by drea11 View Post
          Thanks for the speedy reply. Could you perhaps elaborate on your answer a bit? I'm not familiar with tabix, and the online documentation seems somewhat unspecific.
          If we modify your file slightly so that the contig and position are in different columns and replace spaces with tabs:
          Code:
          Locus	Pos	Total_Depth	Average_Depth_sample	Depth_for_s1	Depth_for_s2	Depth_for_s3
          genome	1	283	94.33	82	111	90
          genome	2	284	94.67	82	111	91
          genome	3	285	95.00	82	112	91
          Then we can:
          Code:
          bgzip foo.tab
          tabix -b 2 -e 2 -f -s 1 -S 1 foo.tab.gz #This will index the file
          tabix foo.tab.gz genome:2-3
          The last command will output the last 2 lines. Of course if you have a LOT of lines and multiple contigs/chromosomes/genomes, then this is more useful than the small example. The biggest benefit to this method is that you can randomly ask for ranges without needing to process everyline until you get to that range (if you've ever dealt with indexed VCF or BAM files, it's the same underlying principle). This is actually how IGV and many other tools randomly access VCF and BED files.

          Note that the bgzip utility is really just a special version of gzip, so you can view the resulting files with zcat or even just gunzip them.

          Comment

          Latest Articles

          Collapse

          • seqadmin
            Strategies for Sequencing Challenging Samples
            by seqadmin


            Despite advancements in sequencing platforms and related sample preparation technologies, certain sample types continue to present significant challenges that can compromise sequencing results. Pedro Echave, Senior Manager of the Global Business Segment at Revvity, explained that the success of a sequencing experiment ultimately depends on the amount and integrity of the nucleic acid template (RNA or DNA) obtained from a sample. “The better the quality of the nucleic acid isolated...
            03-22-2024, 06:39 AM
          • seqadmin
            Techniques and Challenges in Conservation Genomics
            by seqadmin



            The field of conservation genomics centers on applying genomics technologies in support of conservation efforts and the preservation of biodiversity. This article features interviews with two researchers who showcase their innovative work and highlight the current state and future of conservation genomics.

            Avian Conservation
            Matthew DeSaix, a recent doctoral graduate from Kristen Ruegg’s lab at The University of Colorado, shared that most of his research...
            03-08-2024, 10:41 AM

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by seqadmin, Yesterday, 06:37 PM
          0 responses
          7 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, Yesterday, 06:07 PM
          0 responses
          7 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 03-22-2024, 10:03 AM
          0 responses
          49 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 03-21-2024, 07:32 AM
          0 responses
          66 views
          0 likes
          Last Post seqadmin  
          Working...
          X