changes in argument: -in
here is an example output:
$ bamtools stats -in aaaaaa.bam -insert
**********************************************
Stats for BAM file(s):
**********************************************
Total reads: 1367054
Mapped reads: 1367054 (100%)
Forward strand: 683527 (50%)
Reverse strand: 683527 (50%)
Failed QC: 0 (0%)
Duplicates: 0 (0%)
Paired-end reads: 1367054 (100%)
'Proper-pairs': 1367054 (100%)
Both pairs mapped: 1367054 (100%)
Read 1: 683527
Read 2: 683527
Singletons: 0 (0%)
Average insert size (absolute value): 104.995
Median insert size (absolute value): 80
$ bamtools --version
bamtools 2.2.2
Part of BamTools API and toolkit
Primary authors: Derek Barnett, Erik Garrison, Michael Stromberg
(c) 2009-2012 Marth Lab, Biology Dept., Boston College
As Chris suggested, you need to align your reads to get a SAM/BAM file and then run 'samtools stats' to get information about insert sizes..it will also give you an insert size distribution graph..