Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • base coverage per position on scaffolds

    Hi all,

    i've mapped my reads with Bowtie to a number of scaffolds, and now i want to know on every position on the scaffolds what the coverage is. Does anyone know how to do this, or is there a script/program available?

    As output I want something like;

    scaffold pos coverage
    scaffold1 1 4
    scaffold1 2 6
    scaffold1 3 10
    ...
    scaffold2 1 5
    scaffold2 2 15
    ...

    Thanks in advance,
    Marten

  • #2
    If you produced a sam file using bowtie, you can convert this to bam using samtools and then use bedtools to get per position coverage information.

    Comment


    • #3
      Use samtools pileup:

      Code:
      $ samtools pileup -f your_ref.fa your.bam
      Column # 4 is what you wanted.
      -drd

      Comment


      • #4
        Thanks both for your reply. I've used Drio's method since it's the easiest one. It works very good!

        Comment


        • #5
          Different values

          Hello there, I had the same problem, and previous posts solved my problems. But there is an little detail:
          I have a bam file, and used mpileup to list the per position coverage. Resulted in a file with some columns where the column #4 is the coverage. But opening in Tablet the same bam file using the same reference genome, the coverage number are not the same. Some one knows what is happening?
          Thank you a lot

          Comment


          • #6
            I'm doing this sort of thing at the moment and just as the following snippet of Perl is really useful for working with Bam files..

            Code:
            #!/usr/bin/perl
            open(INFILE,"samtools view $ARGV[0] |");
            while(<INFILE>)
            {
            	#do something with $_;
            
            }
            You can also say..

            Code:
            #!/usr/bin/perl
            open(INFILE,"samtools mpileup $ARGV[0] |");
            while(<INFILE>)
            {
            	#do something with $_;
            
            }
            And the coverage is in column 4. I'm just adding this post to caution that mpileup doesn't report the positions where coverage is zero (my source of this info being some other posts on seqanswers).. but samtools depth does report the zero's.

            Does anyone have a nice way to deal with multiply mapping reads here? The standard way to deal with a read that maps to multiple contigs is to count it towards the coverage at every position where it maps right?

            Comment

            Latest Articles

            Collapse

            • seqadmin
              Advancing Precision Medicine for Rare Diseases in Children
              by seqadmin




              Many organizations study rare diseases, but few have a mission as impactful as Rady Children’s Institute for Genomic Medicine (RCIGM). “We are all about changing outcomes for children,” explained Dr. Stephen Kingsmore, President and CEO of the group. The institute’s initial goal was to provide rapid diagnoses for critically ill children and shorten their diagnostic odyssey, a term used to describe the long and arduous process it takes patients to obtain an accurate...
              12-16-2024, 07:57 AM
            • seqadmin
              Recent Advances in Sequencing Technologies
              by seqadmin



              Innovations in next-generation sequencing technologies and techniques are driving more precise and comprehensive exploration of complex biological systems. Current advancements include improved accessibility for long-read sequencing and significant progress in single-cell and 3D genomics. This article explores some of the most impactful developments in the field over the past year.

              Long-Read Sequencing
              Long-read sequencing has seen remarkable advancements,...
              12-02-2024, 01:49 PM

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by seqadmin, 12-17-2024, 10:28 AM
            0 responses
            26 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 12-13-2024, 08:24 AM
            0 responses
            42 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 12-12-2024, 07:41 AM
            0 responses
            28 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 12-11-2024, 07:45 AM
            0 responses
            42 views
            0 likes
            Last Post seqadmin  
            Working...
            X