#!/usr/bin/env perl

package Bio::Tradis::Bin::FilterTags;

# ABSTRACT: filter tags at start of fastq sequences
# PODNAME: filter_tags

=head1 SYNOPSIS

Checks tags at the start of the fastq sequence and returns a file containing those that
match the tag provided

=cut

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

use Bio::Tradis::CommandLine::FilterFastqTags;

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