Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Using BGZF (Blocked GNU Zip Format) for general sequence files

    BAM files are compressed using a variant of GZIP (GNU ZIP), called BGZF (Blocked GNU Zip Format). Anyone who has read the SAM/BAM Specification will have seen the terms BGZF and virtual offsets, but what you may not realise is how general purpose this is for random access sections of any large compressed file.

    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...


    I wrote the above blog post looking at BGZF applied to FASTA, SwissProt and UniProt-XML sequences. In short: BGZF files are bigger than GZIP files, but they are much faster for random access.

    So, should we all be considering using BGZF in preference to GZIP?

  • #2
    I haven't done a proof of principle implementation, but I believe efficient random access to BZIP2 files is also possible using their block structure. However, BZIP2 decompression is much more CPU intensive which would be a concern for fast random access:
    In my last post I looked at how the GZIP variant BGZF (Blocked GNU Zip Format, used in BAM files) allowed efficient random access to large ...

    Comment


    • #3
      What are the use cases where you see BGZF as useful for fasta or fastq files? It seems to only help in the random access case, eg "database" of genome sequences, but wouldn't make much difference over GZIP for files that are generally processed sequentially, eg sequencing reads.

      Also, OOC, what's your preferred fasta/fastq index format?

      Comment


      • #4
        Originally posted by arolfe View Post
        What are the use cases where you see BGZF as useful for fasta or fastq files? It seems to only help in the random access case, eg "database" of genome sequences, but wouldn't make much difference over GZIP for files that are generally processed sequentially, eg sequencing reads.
        Yes, exactly - I see BGZF as being useful for databases of sequences (e.g. FASTA, SwissProt, GenBank, etc) where you need random access.

        Where you just need sequential access, you can treat BGZF like GZIP and pipe the decompressed data to a tool, or otherwise decompress on the fly.

        So BGZF works for both, and doesn't take that much more space than traditional GZIP (depending on the file format).

        Originally posted by arolfe View Post
        Also, OOC, what's your preferred fasta/fastq index format?
        In terms of indexing large FASTA/FASTQ, I mainly use an SQLite database mapping identifiers to file offets (and raw data length), via Biopython.

        For FASTA/FASTQ raw reads, random access by ID is not such a common need, but again BGZF could be used here for random access to a compressed file. Rather I advocate moving to unaligned BAM for raw reads, see http://blastedbio.blogspot.com/2011/...ve-sambam.html and this thread http://seqanswers.com/forums/showthread.php?t=14941

        Comment


        • #5
          Thanks maubp for the insightful article.

          I am wondering if you have considered implementing tabix in Biopython as well?

          I am looking for a pure python tabix-like module to be used in a cross-platform solution. I tried to install Pysam and the tabix's python package (shipped with its source code) but couldn't build them on Windows.

          I ended up compiling tabix/bgzip on windows using cygwin. The final software is shipped with few dll files from cygwin in order for bgzip and tabix to work.

          If you are not planning to write such module, I would appreciate any pseudocode suggestions.

          Cheers

          Comment


          • #6
            I'm interested in tabix, and it should be possible to implement in Python building on the BGZF support included in Biopython 1.60 - but I've not had time to look into it.

            Comment


            • #7
              using bgzf for BAM files?

              Hi All,
              I wonder, has anyone tried using the Biopython bgzf support for parsing BAM files?
              Specifically it would be nice to access a BAM line by line, however it doesn't seem to quite work correctly. The data comes out garbled for me:

              i.e.
              Code:
              from Bio import bgzf
              iter = bgzf.BgzfReader("454.local.bowtie2.bam", 'rb')
              
              for i in range(20):
                  print iter.readline()
              
              
              BAM�@HD VN:1.0  SO:unsorted
              @SQ     SN:chrI LN:228539
              @SQ     SN:chrII        LN:813067
              @SQ     SN:chrIII       LN:316396
              @SQ     SN:chrIV        LN:1527223
              @SQ     SN:chrV LN:572028
              @SQ     SN:chrVI        LN:269964
              @SQ     SN:chrVII       LN:1084769
              @SQ     SN:chrVIII      LN:562680
              @SQ     SN:chrIX        LN:440022
              @SQ     SN:chrX LN:744918
              @SQ     SN:chrXI        LN:666321
              @SQ     SN:chrXII       LN:1073453
              @SQ     SN:chrXIII      LN:922770
              @SQ     SN:chrXIV       LN:778492
              @SQ     SN:chrXV        LN:1091177
              @SQ     SN:chrXVI       LN:945865
              @SQ     SN:contig00341  LN:6318
              @PG     ID:bowtie2      PN:bowtie2      VN:2.0.0-beta7
              chrI�|chrII
                         h
                          chrIII��chrIV�MchrV|chrVI�chrVIIachrVIII�chrIXֶchrX�]
                                                                              chrXI�*
              thanks!

              Sam

              Comment


              • #8
                Originally posted by SamH View Post
                Hi All,
                I wonder, has anyone tried using the Biopython bgzf support for parsing BAM files?
                Specifically it would be nice to access a BAM line by line, however it doesn't seem to quite work correctly. The data comes out garbled for me:
                Hi Sam,

                That behaviour is expected and correct. BGZF is just a variant of gzip, once you decompress that you have a 'naked' BAM file which is a binary representation of the SAM format - although as you noticed it does contain an embedded plain text SAM header. All the Biopython Bio.bgzf code did for you was decompress it. Biopython doesn't currently have a BAM parser.

                Have you looked at pysam which is a Python wrapper for the samtools
                C API? http://code.google.com/p/pysam/

                Peter

                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
                10 views
                0 likes
                Last Post seqadmin  
                Started by seqadmin, Yesterday, 06:07 PM
                0 responses
                9 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
                67 views
                0 likes
                Last Post seqadmin  
                Working...
                X