Git Product home page Git Product logo

bazam's Introduction

Bazam Build Status

A tool to extract paired reads in FASTQ format from coordinate sorted BAM files.

What?

Bazam is a smarter way to realign reads from one genome to another. If you've tried to use Picard SAMtoFASTQ or samtools bam2fq before and ended up unsatisfied with complicated, long running inefficient pipelines, bazam might be what you wanted. Bazam will output FASTQ in a form that can stream directly into common aligners such as BWA or Bowtie2, so that you can quickly and easily realign reads without extraction to any intermediate format. Bazam can target a specific region of the genome, specified as a region or a gene name if you prefer.

Bazam workflow for realignment

If you are writing a tool that works on BAM files then you might be interested in tapping into Bazam as a library: Bazam can give the reads pairs to you directly as Picard SAMRecord objects.

Why?

Getting read pairs out of most aligned sequencing files is hard, at least, harder than you would think.

Most sequencing data is stored in coordinate sorted BAM files, because that's how most analyses want to use it. But if you want to get back the original read pairs for some other reason it is awkward from this format. For example, if you want to realign the reads to a different genome reference, or do other processing such as trimming them based on overlap, etc., then you need this. However you will find (or at least, I found) there actually aren't any good tools to do this simple task (hence Bazam, which is a contraction of "bam to bam", based on one simple application, which is re-aligning existing reads to a new genome).

Why is this hard?

You might think this problem should be easy. However it's difficult because when reads are stored in coordinate order the only efficient way to read them is in that order. Yet a read's mate may be stored at a significant coordinate distance, meaning that to see both a read and it's mate you either need to do an expensive random lookup of each mate (too slow), or buffer reads in memory until their mate becomes available in the stream (too memory expensive).

How Does Bazam Solve this?

Bazam doesn't do any magic: it just carefully buffers reads and uses various different strategies for caching to try and minimise memory use. Typically realigning a whole genome sample (130G or so of data) could require up to 16G of RAM to buffer reads. (Note that you can reduce this requirement by "sharding" - see below). Bazam is also carefully designed to run fast so that it's probably faster than any downstream application (such as realignment) that you are trying to do on the data. If not, again, sharding is your answer (see below).

Getting it

You can clone it and build with zero install this way:

git clone [email protected]:ssadedin/bazam.git
cd bazam
git submodule update --init --recursive
./gradlew clean jar

Running it

To get the help, you just execute the JAR file:

java -jar build/libs/bazam.jar

Simple Example

Let's get all the read pairs from a BAM File in interleaved FASTQ format:

java -jar build/libs/bazam.jar -bam  test.bam  > tmp.fastq

Realigning a Genome to a New Reference using BWA

java -jar build/libs/bazam.jar -bam my.bam | \
         bwa mem -p ref.fa  - | \
         samtools view -bSu - | \
         samtools sort -o out.bam 

Over a Specific Region

The -L flag works to give you just a region of interest. Note that read pairs with any overlap by either read are emitted in full:

java -jar build/libs/bazam.jar -bam my.bam -L chr1:5000000-6000000 | \
         bwa mem -p ref.fa  - | \
         samtools view -bSu - | \
         samtools sort -o out.bam 

Using Filtering

You can add a filter to select which reads you want extracted. The filter is a groovy expression that is executed with a variable called "pair". The "pair" variable has attributes r1 and r2 which are SAMRecord objects, enabling you to access all the attributes of the reads. If the expression returns true then the read is emitted, otherwise it is dropped:

Get only the reads where the pair spans different chromosomes:

java -jar build/libs/bazam.jar -f "pair.r1.referenceIndex != pair.r2.referenceIndex" -bam  test.bam > chimeric_reads.fastq

Sharding

Sharding means breaking up the data into pieces to process the parts separately. By sharding the data you can both increase performance and reduce memory requirments for any individual shard (while using more memory overall).

You can shard reads using -s: this will cause only every nth out of N reads to be emitted (specified in the form -s n,N). For example, if you give it -s 2,4 then the second out of every 4 read pairs will selected for output, -s 3,4 would select the 3rd out of every 4 pairs, etc. This allows you to use scatter-gather or map/reduce style concurrency to process reads in a distributed manner. In the case of realignment, you could run 4 instances of BWA in the above example to realign four times as fast, and then merge the BAM files afterwards.

CRAM Support

CRAM is a reference based compression method, so if your input files are CRAM then you need to specify the reference to decode from. Bazam uses HTSJDK for CRAM support, so you can inform it about how to locate the reference using the standard properties that HTSJDK supports. The most simple way is to directly specify it using the samjdk.reference_fasta property, eg:

java  -Xmx12g -Dsamjdk.reference_fasta=/reference/hg38/Homo_sapiens_assembly38.fasta \
      -jar build/libs/bazam.jar test.cram > test.fastq.gz

Other Options

You can supply a BED file to restrict regions that reads are harvested from with -L (note: both reads of a pair are emitted if either one overlaps the regions at all).

Use the -namepos option to cause reads to be emitted with modified read names that embed their original positions in the source BAM file. This is useful if you want to track where reads came from after downstream processing (for example, comparing two aligners, etc).

Advanced Example

You can see an advanced example of Bazam being used in the STRetch pipeline:

https://github.com/Oshlack/STRetch/blob/6f7c4805dcf1f8fb71c86d222ccff605a4ed6add/pipelines/pipeline_stages.groovy#L121

bazam's People

Contributors

hdashnow avatar ssadedin avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.