Giter Club home page Giter Club logo

bioawk's Introduction

Introduction

Bioawk is an extension to Brian Kernighan's awk, adding the support of several common biological data formats, including optionally gzip'ed BED, GFF, SAM, VCF, FASTA/Q and TAB-delimited formats with column names. It also adds a few built-in functions and an command line option to use TAB as the input/output delimiter. When the new functionality is not used, bioawk is intended to behave exactly the same as the original BWK awk.

The original awk requires a YACC-compatible parser generator (e.g. Byacc or Bison). Bioawk further depends on zlib so as to work with gzip'd files.

New functionality

Command line option -t

Using this option is equivalent to

bioawk -F'\t' -v OFS="\t"
Command line option -c arg

This option specifies the input format. When this option is in use, bioawk will seamlessly add variables that name the fields, based on either the format or the first line of the input, depending arg. This option also enables bioawk to read gzip'd files. The argument arg may take the following values:

  • help. List the supported formats and the naming variables.

  • hdr or header. Name each column based on the first line in the input. Special characters in the first are converted to underscore. For example:

      grep -v ^## in.vcf | bioawk -tc hdr '{print $_CHROM,$POS}'
    

    prints the CHROM and POS columns of the input VCF file.

  • sam, vcf, bed and gff. SAM, VCF, BED and GFF formats.

  • fastx. This option regards a FASTA or FASTQ as a TAB delimited file with four columns: sequence name, sequence, quality and FASTA/Q comment, such that various fields can be retrieved with column names. See also example 4 in the following.

New built-in functions

See awk.1.

Examples

  1. List the supported formats:

     bioawk -c help
    
  2. Extract unmapped reads without header:

     bioawk -c sam 'and($flag,4)' aln.sam.gz
    
  3. Extract mapped reads with header:

     bioawk -Hc sam '!and($flag,4)'
    
  4. Reverse complement FASTA:

     bioawk -c fastx '{print ">"$name;print revcomp($seq)}' seq.fa.gz
    
  5. Create FASTA from SAM (uses revcomp if FLAG & 16)

     samtools view aln.bam | \
         bioawk -c sam '{s=$seq; if(and($flag, 16)) {s=revcomp($seq)} print ">"$qname"\n"s}'
    
  6. Print the genotypes of sample foo and bar from a VCF:

     grep -v ^## in.vcf | bioawk -tc hdr '{print $foo,$bar}'
    

Potential limitations

  1. When option -c is in use, bioawk replaces the line reading module of awk. The new line reading function parses FASTA and FASTQ files and seamlessly reads gzip'ed files. However, the new code does not fully mimic the original code. It may fail in corner cases (though this has not happened yet). Thus when -c is not specified, awk falls back to the original line reading code and does not support gzip'ed input.

  2. When -c is in use, several strings allocated in the new line reading module are not freed in the end. These will be reported by valgrind as "still reachable". To some extent, these are not memory leaks.

bioawk's People

Contributors

lh3 avatar brentp avatar arq5x avatar vsbuffalo avatar dpryan79 avatar meereeum avatar

Stargazers

 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.