#!/usr/bin/env perl
use strict;
use warnings FATAL => 'all';

use Pod::Usage;

use Bio::GFF3::Transform::SyncDirectives 'gff3_add_sync_directives';

@ARGV or pod2usage();

gff3_add_sync_directives( \*STDOUT, @ARGV );

# PODNAME: gff3_insert_sync_directives
# ABSTRACT: efficiently insert sync (###) directives into GFF3, printing to stdout


__END__
=pod

=encoding utf-8

=head1 NAME

gff3_insert_sync_directives - efficiently insert sync (###) directives into GFF3, printing to stdout

=head1 USAGE

    gff3_insert_sync_directives file file ... > with_syncs.gff3

Note: because GFF3 is read in reverse order, cannot operate on
streamed input.  So no stdin, sorry.

=head1 AUTHOR

Robert Buels <rmb32@cornell.edu>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Robert Buels.

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

