Codebase list bio-tradis / debian/latest bin / filter_tradis_tags
debian/latest

Tree @debian/latest (Download .tar.gz)

filter_tradis_tags @debian/latestraw · history · blame

#!/usr/bin/env perl

package Bio::Tradis::Bin::FilterTags;
$Bio::Tradis::Bin::FilterTags::VERSION = '1.4.5';
use FindBin qw($Bin); 

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


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

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

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

__END__

=pod

=encoding UTF-8

=head1 NAME

filter_tags - filter tags at start of fastq sequences

=head1 VERSION

version 1.4.5

=head1 SYNOPSIS

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

=head1 AUTHOR

Carla Cummins <path-help@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