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
              Advanced Tools Transforming the Field of Cytogenomics
              by seqadmin


              At the intersection of cytogenetics and genomics lies the exciting field of cytogenomics. It focuses on studying chromosomes at a molecular scale, involving techniques that analyze either the whole genome or particular DNA sequences to examine variations in structure and behavior at the chromosomal or subchromosomal level. By integrating cytogenetic techniques with genomic analysis, researchers can effectively investigate chromosomal abnormalities related to diseases, particularly...
              09-26-2023, 06:26 AM
            • seqadmin
              How RNA-Seq is Transforming Cancer Studies
              by seqadmin



              Cancer research has been transformed through numerous molecular techniques, with RNA sequencing (RNA-seq) playing a crucial role in understanding the complexity of the disease. Maša Ivin, Ph.D., Scientific Writer at Lexogen, and Yvonne Goepel Ph.D., Product Manager at Lexogen, remarked that “The high-throughput nature of RNA-seq allows for rapid profiling and deep exploration of the transcriptome.” They emphasized its indispensable role in cancer research, aiding in biomarker...
              09-07-2023, 11:15 PM

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by seqadmin, Yesterday, 07:14 AM
            0 responses
            11 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 09-29-2023, 09:38 AM
            0 responses
            13 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 09-27-2023, 06:57 AM
            0 responses
            14 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 09-26-2023, 07:53 AM
            0 responses
            31 views
            0 likes
            Last Post seqadmin  
            Working...
            X