#!/usr/bin/env perl

package Bio::Tradis::Bin::RunTradis;

# ABSTRACT: Perform full tradis analysis
# PODNAME: run_tradis


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

use Bio::Tradis::CommandLine::TradisAnalysis;

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

__END__

=pod

=head1 NAME

run_tradis - Perform full tradis analysis

=head1 VERSION

version 1.132140

=head1 SYNOPSIS

Take a fastq, reference and a tag and generates insertion
site plots for use in Artemis

=head1 AUTHOR

Carla Cummins <cc21@sanger.ac.uk>

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2013 by Wellcome Trust Sanger Institute.

This is free software, licensed under:

  The GNU General Public License, Version 3, June 2007

=cut
