Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • samtools: "sort by name" and fast random access

    I understand that sorting a BAM file, e.g.
    Code:
    samtools sort my_file.bam my_file.sorted
    will allow for faster random access. This makes sense, as viewing reads aligned to a certain region of the genome is much simpler if the reads are ordered by genome coordinates.

    But if you sort a .bam file by read name, e.g.
    Code:
    samtools sort [B]-no[/B] my_file.bam my_file.sorted_by_name
    then how does this allow faster random access?

    I ask because there is no samtools functionality for observing reads by name - the "view" family of commands only accepts genome regions (coordinates).

    How would you random access a .bam file by read name?
    Last edited by cycomatto; 12-21-2011, 07:44 AM.

  • #2
    SAM/BAM files can be sorted by mapping position (normal), which allows efficient access to regions (e.g. chr1 from 1000 to 2000) via the BAI index, or sorted by read name (not commonly used).

    If you want random access to reads by name, the BAM index file (BAI) is no help at all. You would need a separate index mapping read names to offsets. Sorting by read name would be helpful if you have multi-fragment reads (e.g. paired end reads), since then all the fragments would be together on disk so you'd only need one seek. If the reads were not sorted, you'd need to have a lookup table from read name to multiple offsets (one for each read fragment).

    For BAM files you could use the same "virtual offset" approach as BAI uses (essentially a double offset, for a BGZF/GZIP block start, and the within block offset). You might find this blog post interesting about how indexing BGZF files (such as BAM files) can be done:
    BAM files are compressed using a variant of GZIP (GNU ZIP) , called BGZF (Blocked GNU Zip Format). Anyone who has read the SAM/BAM Specifica...

    and http://seqanswers.com/forums/showthread.php?t=15347

    Comment


    • #3
      Originally posted by maubp View Post
      Sorting by read name would be helpful if you have multi-fragment reads (e.g. paired end reads), since then all the fragments would be together on disk so you'd only need one seek.
      This is precisely my situation (given one side of a paired-end read, find its mate).


      I am unclear why the following won't work: FIRST sorting by name, THEN index this name-sorted .bam.

      Doesn't the "index" operation perform this offset for you? So if our .bam is already sorted by name, the the "index" operation will create the virtual offsets you wrote about?

      Comment


      • #4
        Originally posted by cycomatto View Post
        Doesn't the "index" operation perform this offset for you? So if our .bam is already sorted by name, the the "index" operation will create the virtual offsets you wrote about?
        The indexing provided by samtools/picard using the *.bai file ONLY works on BAM files sorted by mapping position.

        I was talking about how as a programmer you can use your own alternative indexing, where you map read names to BAM/BGZF 'virtual offsets'.

        Comment


        • #5
          So then, what is the point of sorting a .bam file by name? Why even include the option in samtools?

          Comment


          • #6
            Originally posted by cycomatto View Post
            So then, what is the point of sorting a .bam file by name? Why even include the option in samtools?
            If you want to process the entire file sequentially and you need to operate on read pairs as a single unit having reads sorted by name (and hence read pairs will be adjacent in the file) greatly reduces complexity. An example of a program which works this way is htseq-count.

            Comment


            • #7
              htseq-count also requires the file to be sorted

              Comment


              • #8
                Originally posted by cycomatto View Post
                So then, what is the point of sorting a .bam file by name? Why even include the option in samtools?
                samtools fixmate

                Comment

                Latest Articles

                Collapse

                • seqadmin
                  Recent Advances in Sequencing Analysis Tools
                  by seqadmin


                  The sequencing world is rapidly changing due to declining costs, enhanced accuracies, and the advent of newer, cutting-edge instruments. Equally important to these developments are improvements in sequencing analysis, a process that converts vast amounts of raw data into a comprehensible and meaningful form. This complex task requires expertise and the right analysis tools. In this article, we highlight the progress and innovation in sequencing analysis by reviewing several of the...
                  Yesterday, 07:48 AM
                • seqadmin
                  Essential Discoveries and Tools in Epitranscriptomics
                  by seqadmin




                  The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist...
                  04-22-2024, 07:01 AM

                ad_right_rmr

                Collapse

                News

                Collapse

                Topics Statistics Last Post
                Started by seqadmin, Today, 06:57 AM
                0 responses
                7 views
                0 likes
                Last Post seqadmin  
                Started by seqadmin, Yesterday, 07:17 AM
                0 responses
                13 views
                0 likes
                Last Post seqadmin  
                Started by seqadmin, 05-02-2024, 08:06 AM
                0 responses
                19 views
                0 likes
                Last Post seqadmin  
                Started by seqadmin, 04-30-2024, 12:17 PM
                0 responses
                21 views
                0 likes
                Last Post seqadmin  
                Working...
                X