Skip to content
Snippets Groups Projects
Commit 647a7b31 authored by Alessandro Vullo's avatar Alessandro Vullo
Browse files

*** empty log message ***

parent 4f60a4cb
No related branches found
No related tags found
No related merge requests found
=pod
=head1 LICENSE
Copyright (c) 1999-2013 The European Bioinformatics Institute and
Genome Research Limited. All rights reserved.
This software is distributed under a modified Apache license.
For license details, please see
http://www.ensembl.org/info/about/code_licence.html
=head1 NAME
Bio::EnsEMBL::Utils::IO::GTFSerializer - Transcript to GTF converter
=head1 SYNOPSIS
use Bio::EnsEMBL::Utils::IO::GTFSerializer;
my $serializer = Bio::EnsEMBL::Utils::IO::GTFSerializer->new($output_fh);
=head1 DESCRIPTION
Subclass of Serializer that can turn a transcript into a series of lines
for the GTF format.
=cut
package Bio::EnsEMBL::Utils::IO::GFFSerializer;
use strict;
use warnings;
use Bio::EnsEMBL::Utils::Exception;
use Bio::EnsEMBL::Utils::IO::FeatureSerializer;
use Bio::EnsEMBL::Utils::Scalar qw/assert_ref check_ref/;
use base qw(Bio::EnsEMBL::Utils::IO::FeatureSerializer);
my %strand_conversion = ( '1' => '+', '0' => '?', '-1' => '-');
1;
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment