#!/usr/bin/env perl

package Bio::Tradis::Bin::DetectTags;

# ABSTRACT: check if tr tag is present
# PODNAME: check_tags

=head1 SYNOPSIS

Checks the presence of tr/tq tags in a given BAM file

=cut

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

use Bio::Tradis::CommandLine::AddTags;

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