Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • maubp
    replied
    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

    Leave a comment:


  • SamH
    replied
    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

    Leave a comment:


  • maubp
    replied
    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.

    Leave a comment:


  • salturki
    replied
    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

    Leave a comment:


  • maubp
    replied
    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

    Leave a comment:


  • arolfe
    replied
    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?

    Leave a comment:


  • maubp
    replied
    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 ...

    Leave a comment:


  • 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?

Latest Articles

Collapse

  • 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
  • seqadmin
    Current Approaches to Protein Sequencing
    by seqadmin


    Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
    04-04-2024, 04:25 PM

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by seqadmin, Yesterday, 11:49 AM
0 responses
13 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-24-2024, 08:47 AM
0 responses
16 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-11-2024, 12:08 PM
0 responses
61 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-10-2024, 10:19 PM
0 responses
60 views
0 likes
Last Post seqadmin  
Working...
X