#!/usr/bin/env perl

package Bio::Tradis::Bin::RemoveTags;

# ABSTRACT: remove user specified tags from start of fastq sequences
# PODNAME: remove_tags


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

use Bio::Tradis::CommandLine::RemoveFastqTags;

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

__END__

=pod

=encoding UTF-8

=head1 NAME

remove_tags - remove user specified tags from start of fastq sequences

=head1 VERSION

version 1.2

=head1 SYNOPSIS

Removes tags from the sequence and quality strings based on user input

=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
