Skip to content

Commit

Permalink
This is a preliminary rewrite of the Ace::Graphics module. It
Browse files Browse the repository at this point in the history
provides flexible lightweight drawing of horizontal maps for
sequences, contigs and other biological maps.
  • Loading branch information
lstein committed Jun 5, 2001
0 parents commit d0fd22e
Show file tree
Hide file tree
Showing 18 changed files with 2,430 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Changes
@@ -0,0 +1,6 @@
Revision history for Perl extension Bio::Graphics.

0.01 Tue Jun 5 07:26:52 2001
- original version; created by h2xs 1.20 with options
-n Bio::Graphics -A

115 changes: 115 additions & 0 deletions Graphics/Feature.pm
@@ -0,0 +1,115 @@
package Bio::Graphics::Feature;

use strict;
*stop = \&end;
*info = \&name;
*seqname = \&name;
*primary_tag = \&type;
*exons = *sub_SeqFeature = *merged_segments = \&segments;

# usage:
# Ace::Graphics::Feature->new(
# -start => 1,
# -end => 100,
# -name => 'fred feature',
# -strand => +1);
#
# Alternatively, use -segments => [ [start,stop],[start,stop]...]
# to create a multisegmented feature.
sub new {
my $class= shift;
my %arg = @_;

my $self = bless {},$class;

$arg{-strand} ||= 0;
$self->{strand} = $arg{-strand} >= 0 ? +1 : -1;
$self->{name} = $arg{-name};
$self->{type} = $arg{-type} || 'feature';
$self->{source} = $arg{-source} || $arg{-source_tag} || 'dummy';

if (my $s = $arg{-segments}) {

my @segments;
for my $seg (@$s) {
if (ref($seg) eq 'ARRAY') {
push @segments,$class->new(-start=>$seg->[0],
-stop=>$seg->[1],
-strand=>$self->{strand},
-type => $arg{-subtype}||'feature');
} else {
push @segments,$seg;
}
}

$self->{segments} = [ sort {$a->start <=> $b->start } @segments ];
$self->{start} = $self->{segments}[0]->start;
($self->{end}) = sort { $b <=> $a } map { $_->stop} @segments;

} else {
$self->{start} = $arg{-start};
$self->{end} = $arg{-end} || $arg{-stop};
}

$self;
}

sub segments {
my $self = shift;
my $s = $self->{segments} or return;
@$s;
}
sub type { shift->{type} }
sub strand { shift->{strand} }
sub name { shift->{name} }
sub start {
my $self = shift;
return $self->{start};
}
sub end {
my $self = shift;
return $self->{end};
}
sub length {
my $self = shift;
return $self->end - $self->start + 1;
}
sub introns {
my $self = shift;
return;
}
sub source_tag { shift->{source} }

1;

__END__
=head1 NAME
Ace::Graphics::Fk - A dummy feature object used for generating panel key tracks
=head1 SYNOPSIS
None. Used internally by Ace::Graphics::Panel.
=head1 DESCRIPTION
None. Used internally by Ace::Graphics::Panel.
=head1 SEE ALSO
L<Ace::Sequence>,L<Ace::Sequence::Feature>,
L<Ace::Graphics::Track>,L<Ace::Graphics::Glyph>,
L<GD>
=head1 AUTHOR
Lincoln Stein <lstein@cshl.org>.
Copyright (c) 2001 Cold Spring Harbor Laboratory
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself. See DISCLAIMER.txt for
disclaimers of warranty.
=cut

0 comments on commit d0fd22e

Please sign in to comment.