Skip to content
Pierre Lindenbaum edited this page Mar 23, 2016 · 4 revisions

##Motivation

Statistics about the flags and reads in a BAM. Visualize date from BamStats02

##Compilation

Requirements / Dependencies

Download and Compile

$ git clone "https://github.com/lindenb/jvarkit.git"
$ cd jvarkit
$ make bamstats02view

by default, the libraries are not included in the jar file, so you shouldn't move them (https://github.com/lindenb/jvarkit/issues/15#issuecomment-140099011 ). You can create a bigger but standalone executable jar by addinging standalone=yes on the command line:

$ git clone "https://github.com/lindenb/jvarkit.git"
$ cd jvarkit
$ make bamstats02view standalone=yes

The required libraries will be downloaded and installed in the dist directory.

edit 'local.mk' (optional)

The a file local.mk can be created edited to override/add some paths.

For example it can be used to set the HTTP proxy:

http.proxy.host=your.host.com
http.proxy.port=124567

##Synopsis

$ java -jar dist/bamstats02view.jar  [options] (stdin|file) 

Options

  • -h|--help print help
  • -version|--version show version and exit

##Source Code

Main code is: https://github.com/lindenb/jvarkit/blob/master/src/main/java/com/github/lindenb/jvarkit/tools/bamstats01/BamStats02View.java

Explore those statistics with a graphical user interface. Left-click shows a popup menu used to include/exclude categories.

Synopsis

$java -jar dist/bamstats02view.jar output_of_bamstats02.tsv

Example

$java -jar dist/bamstats02view.jar output.tsv

See also

BamStats02

Contribute

License

The project is licensed under the MIT license.

Citing

Should you cite bamstats02view ? https://github.com/mr-c/shouldacite/blob/master/decision-tree.md

The current reference is:

http://dx.doi.org/10.6084/m9.figshare.1425030

Lindenbaum, Pierre (2015): JVarkit: java-based utilities for Bioinformatics. figshare. http://dx.doi.org/10.6084/m9.figshare.1425030

Clone this wiki locally