#!/usr/bin/env perl

package Bio::Tradis::Bin::TradisPlot;

# ABSTRACT: Generate plots as part of a tradis analysis
# PODNAME: tradis_plot

=head1 SYNOPSIS

Generate insertion plots for Artemis from a mapped fastq file and
a reference in GFF format

=cut

BEGIN { unshift( @INC, '../lib' ) }
BEGIN { unshift( @INC, './lib' ) }
BEGIN { unshift( @INC, '/software/pathogen/internal/prod/lib/' ) }

use Bio::Tradis::CommandLine::PlotTradis;

Bio::Tradis::CommandLine::PlotTradis->new(args => \@ARGV, script_name => $0)->run;
