#!/usr/bin/env perl
#
#   Usage: combinesheets --help
#
#   Martin Senger <martin.senger@gmail.com>
#   February 2012
#
# ABSTRACT: command-line tool merging CSV and TSV spreadsheets
# PODNAME: App::combinesheets
# -----------------------------------------------------------------
use warnings;
use strict;

our $VERSION = '0.2.14'; # VERSION

use App::combinesheets;
App::combinesheets->run();

__END__
=pod

=head1 NAME

App::combinesheets - command-line tool merging CSV and TSV spreadsheets

=head1 VERSION

version 0.2.14

=head1 AUTHOR

Martin Senger <martin.senger@gmail.com>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Martin Senger, CBRC - KAUST (Computational Biology Research Center - King Abdullah University of Science and Technology) All Rights Reserved..

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut

