#!/usr/bin/env perl 

use strict;
use warnings;
use utf8;

use App::SimulateReads;

# PODNAME: simulate_reads
# ABSTRACT: Creates single-end and paired-end fastq reads for transcriptome and genome simulation.

our $VERSION = '0.11'; # VERSION

my $app = App::SimulateReads->new;
$app->run;

__END__

=pod

=encoding UTF-8

=head1 NAME

simulate_reads - Creates single-end and paired-end fastq reads for transcriptome and genome simulation.

=head1 VERSION

version 0.11

=head1 SYNOPSIS

 simulate_reads [options]
 simulate_reads help <command>
 simulate_reads <command> ...

=head1 DESCRIPTION

B<simulate_reads> is a bioinformatic tool that provides a simple engine
to generate single-end/paired-end reads from a given fasta file.

=head1 INSTALLATION

If you have cpanm, you only need one line:

 % cpanm App::SimulateReads

As a last resort, you can manually install it. Download the tarball, untar it,
then build it:

 % perl Makefile.PL
 % make && make test

Then install it:

 % make install

For more details, see INSTALL file

=head1 AUTHOR

Thiago L. A. Miller <tmiller@mochsl.org.br>

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2018 by Teaching and Research Institute from Sírio-Libanês Hospital.

This is free software, licensed under:

  The GNU General Public License, Version 3, June 2007

=cut
