]> git.donarmstrong.com Git - bamtools.git/blobdiff - README
added warning for duplicate @RG tag in header
[bamtools.git] / README
diff --git a/README b/README
index dc24cbbee8a64c563a20c886300b7eca3f98f18b..b3bc1eaa16a01a8e420178772247a200fc92bf1d 100644 (file)
--- a/README
+++ b/README
@@ -2,33 +2,74 @@
 README : BAMTOOLS
 ------------------------------------------------------------
 
-BamTools: a C++ API for reading/writing BAM files.
+BamTools: a C++ API & toolkit for reading/writing/manipulating BAM files.
+
+I. Introduction
+    a. The API
+    b. The Toolkit
+
+II. Usage
+    a. The API
+    b. The Toolkit
 
-I.   Introduction
-II.  Usage
 III. Contact
 
 ------------------------------------------------------------
 
-
 I. Introduction:
+BamTools provides both a programmer's API and an end-user's toolkit for handling 
+BAM files.  
 
+Ia. The API
 The API consists of 2 main modules - BamReader and BamWriter. As you would expect, 
 BamReader provides read-access to BAM files, while BamWriter does the writing of BAM
 files. BamReader provides an interface for random-access (jumping) in a BAM file,
 as well as generating BAM index files.
  
+BamMultiReader is an extra module that allows you to manage multiple open BAM file
+for reading. It provides some validation & bookkeeping under the hood to keep all 
+files sync'ed for 
+
 An additional file, BamAux.h, is included as well.  
 This file contains the common data structures and typedefs used throught the API.
 
 BGZF.h & BGZF.cpp contain our implementation of the Broad Institute's 
 BGZF compression format.
 
-BamConversion, BamDump, and BamTrim are 3 'toy' examples on how the API can be used.
+
+Ib. The Toolkit
+If you've been using BamTools since the early days, you'll notice that our 'toy' API 
+examples (BamConversion, BamDump, and BamTrim) are now gone.  In their place is a set 
+of features we hope you find useful.
+
+** More explanation here **
+
+usage: bamtools [--help] COMMAND [ARGS]
+
+Available bamtools commands:
+       convert         Converts between BAM and a number of other formats
+       count           Prints number of alignments in BAM file
+       coverage        Prints coverage statistics from the input BAM file      
+       filter          Filters BAM file(s) by user-specified criteria
+       header          Prints BAM header information
+       index           Generates index for BAM file
+       merge           Merge multiple BAM files into single file
+       sam             Prints the BAM file in SAM (text) format
+       sort            Sorts the BAM file according to some criteria
+       stats           Prints some basic statistics from the input BAM file
+
+See 'bamtools help COMMAND' for more information on a specific command.
+
+** Follow-up explanation here **
 
 ------------------------------------------------------------
 
-Usage : 
+II. Usage : 
+
+** General usage information - perhaps explain common terms, point to SAM/BAM spec, etc **
+
+
+IIa. The API
 
 To use this API, you simply need to do 3 things:
 
@@ -46,11 +87,21 @@ To use this API, you simply need to do 3 things:
 See any included programs and Makefile for more specific compiling/usage examples.
 See comments in the header files for more detailed API documentation. 
 
+
+IIb. The Toolkit
+
+** More indepth overview for the toolkit commands **
+
 ------------------------------------------------------------
 
-Contact :
+III. Contact :
 
 Feel free to contact me with any questions, comments, suggestions, bug reports, etc.
   - Derek Barnett
-  
-http://sourceforge.net/projects/bamtools
+
+Marth Lab
+Biology Dept., Boston College
+
+Email: barnetde@bc.edu  
+Project Websites: http://github.com/pezmaster31/bamtools   (ACTIVE SUPPORT)
+                  http://sourceforge.net/projects/bamtools (major updates only)