tag fourth (and hopefully last) alpha
[bioperl-live.git] / branch-1-6 / Bio / Map / GeneMap.pm
blobb5bb93979093657817e6e1dddd9c8b4f7654a6dd
1 # $Id: GeneMap.pm,v 1.17 2006/07/17 14:16:53 sendu Exp $
3 # BioPerl module for Bio::Map::GeneMap
5 # Please direct questions and support issues to <bioperl-l@bioperl.org>
7 # Cared for by Sendu Bala <bix@sendu.me.uk>
9 # Copyright Sendu bala
11 # You may distribute this module under the same terms as perl itself
13 # POD documentation - main docs before the code
15 =head1 NAME
17 Bio::Map::GeneMap - A MapI implementation to represent the area around a gene
19 =head1 SYNOPSIS
21 use Bio::Map::GeneMap;
22 use Bio::Map::Gene;
23 use Bio::Map::TranscriptionFactor;
24 use Bio::Map::GeneRelative;
26 # make some maps that will represent an area around a particular gene in
27 # particular species (by default, the map represents the area in the genome
28 # 1000bp upstream of the gene)
29 my $map1 = Bio::Map::GeneMap->get(-gene => 'BRCA2',
30 -species => 'human',
31 -description => 'breast cancer 2, early onset');
32 my $map2 = Bio::Map::GeneMap->get(-gene => 'BRCA2',
33 -species => 'mouse');
35 # model a TF that binds 500bp upstream of the BRCA2 gene in humans and
36 # 250bp upstream of BRCA2 in mice
37 my $rel = Bio::Map::GeneRelative->new(-description => "gene start");
38 my $tf = Bio::Map::TranscriptionFactor->get(-universal_name => 'tf1');
39 Bio::Map::Position->new(-map => $map1,
40 -element => $tf,
41 -start => -500,
42 -length => 10,
43 -relative => $rel);
44 Bio::Map::Position->new(-map => $map2,
45 -element => $tf,
46 -start => -250,
47 -length => 10,
48 -relative => $rel);
50 # find out all the things that map near BRCA2 in all species
51 foreach my $map ($gene->known_maps) {
52 foreach my $thing ($map->get_elements) {
53 next if $thing eq $gene;
54 foreach my $pos ($thing->get_positions($map)) {
55 print "In species ", $map->species, ", ",
56 $thing->universal_name, " maps at ", $pos->value,
57 " relative to ", $pos->relative->description, " of gene ",
58 $gene->universal_name, "\n";
63 # a GeneMap isa PrimarySeq and so can have sequence associated with it
64 $map1->seq('ATGC');
65 my $subseq = $map1->subseq(2,3); # TG
67 =head1 DESCRIPTION
69 Model the abstract notion of the area around a gene - you don't care exactly
70 where this area is in the genome, you just want to be able to say "something
71 binds upstream of gene X" and "something else binds 20bp upstream of the first
72 something" etc.
74 It's useful for modelling transcription factor bindings sites, letting you find
75 out which transcription factors bind near a gene of interest, or which genes
76 are bound by a transcription factor of interest.
78 See t/Map/Map.t for more example usage.
80 =head1 FEEDBACK
82 =head2 Mailing Lists
84 User feedback is an integral part of the evolution of this and other
85 Bioperl modules. Send your comments and suggestions preferably to
86 the Bioperl mailing list. Your participation is much appreciated.
88 bioperl-l@bioperl.org - General discussion
89 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
91 =head2 Support
93 Please direct usage questions or support issues to the mailing list:
95 I<bioperl-l@bioperl.org>
97 rather than to the module maintainer directly. Many experienced and
98 reponsive experts will be able look at the problem and quickly
99 address it. Please include a thorough description of the problem
100 with code and data examples if at all possible.
102 =head2 Reporting Bugs
104 Report bugs to the Bioperl bug tracking system to help us keep track
105 of the bugs and their resolution. Bug reports can be submitted via the
106 web:
108 http://bugzilla.open-bio.org/
110 =head1 AUTHOR - Sendu Bala
112 Email bix@sendu.me.uk
114 =head1 APPENDIX
116 The rest of the documentation details each of the object methods.
117 Internal methods are usually preceded with a _
119 =cut
121 # Let the code begin...
123 package Bio::Map::GeneMap;
124 use strict;
126 use Bio::Map::Gene;
127 use Bio::Map::Position;
129 use base qw(Bio::Map::SimpleMap Bio::PrimarySeq);
131 our $GENEMAPS = {};
133 =head2 new
135 Title : new
136 Usage : my $obj = Bio::Map::GeneMap->new();
137 Function: Builds a new Bio::Map::GeneMap object (that has placed on it a
138 mappable element (Bio::Map::Gene) representing a gene).
139 Returns : Bio::Map::GeneMap
140 Args : -gene => string name of the gene this map will be for
141 (in a form common to all species that have the gene,
142 but unique amongst non-orthologous genes) or a
143 Bio::Map::Gene object, REQUIRED
144 -species => Bio::Taxon or string representing species, REQUIRED
145 -uid => string, unique identifier for this map (must be
146 unique amongst all gene/species combinations)
147 -description => string, free text description of the gene
148 -upstream => int, the number of bases the map extends before the
149 start of the gene element (default 1000).
150 -downstream => int, the number of bases the map extends beyond the
151 end of the gene element (default 0).
152 -seq => string, the sequence of the map, presumably the
153 genomic sequence -upstream bases of the gene,
154 including the gene, and -downstream bases of the gene
156 =cut
158 sub new {
159 my ($class, @args) = @_;
160 my $self = $class->SUPER::new(@args);
162 my ($uid, $gene, $species, $desc, $up, $down, $seq) = $self->_rearrange([qw(UID
163 GENE
164 SPECIES
165 DESCRIPTION
166 UPSTREAM
167 DOWNSTREAM
168 SEQ)], @args);
170 unless (defined $gene && defined $species) {
171 $self->throw("You must supply both -species and -gene");
174 $self->gene(-gene => $gene, -description => $desc, -upstream => $up, -downstream => $down);
175 $self->seq($seq) if $seq;
177 unless (defined($uid)) {
178 # trigger the special behaviour in our unique_id method by supplying it
179 # the unique_id we got from our parent class
180 $self->unique_id($self->unique_id);
183 return $self;
186 =head2 get
188 Title : get
189 Usage : my $map = Bio::Map::GeneMap->get();
190 Function: Builds a new Bio::Map::GeneMap object (like new()), or gets a
191 pre-existing one that corresponds to your arguements.
192 Returns : Bio::Map::GeneMap
193 Args : -gene => string name of the gene this map will be for
194 (in a form common to all species that have the gene,
195 but unique amongst non-orthologous genes) or a
196 Bio::Map::Gene object, REQUIRED
197 -species => Bio::Taxon or string representing species, REQUIRED
198 -uid => string, unique identifier for this map (must be
199 unique amongst all gene/species combinations)
200 -description => string, free text description of the gene
201 -upstream => int, the number of bases the map extends before the
202 start of the gene element (default 1000).
203 -downstream => int, the number of bases the map extends beyond the
204 end of the gene element (default 0).
205 -seq => string, the sequence of the map, presumably the
206 genomic sequence -upstream bases of the gene,
207 including the gene, and -downstream bases of the gene
209 If you supply a -uid, and a map had previously been created and
210 given that uid, that same map object will be returned. Otherwise, the
211 combination of -gene and -species will be used to determine
212 if the same map had previously been made. If a corresponding map
213 hadn't previously been made, a new map object will be created and
214 returned.
216 =cut
218 sub get {
219 my ($class, @args) = @_;
220 my ($uid, $gene, $species, $desc, $up, $down, $seq) = Bio::Root::Root->_rearrange([qw(UID
221 GENE
222 SPECIES
223 DESCRIPTION
224 UPSTREAM
225 DOWNSTREAM
226 SEQ)], @args);
228 my $gene_map;
229 if ($uid && defined $GENEMAPS->{by_uid}->{$uid}) {
230 $gene_map = $GENEMAPS->{by_uid}->{$uid};
232 elsif ($gene && $species) {
233 my $name = ref($gene) ? $gene->universal_name : $gene;
234 if (defined $GENEMAPS->{by_ns}->{$name}->{$species}) {
235 $gene_map = $GENEMAPS->{by_ns}->{$name}->{$species};
238 if ($gene_map) {
239 $gene_map->gene->description($desc) if $desc;
240 $gene_map->upstream($up) if defined($up);
241 $gene_map->downstream($down) if defined($down);
242 $gene_map->seq($seq) if $seq;
243 return $gene_map;
246 return $class->new(@args);
249 =head2 unique_id
251 Title : unique_id
252 Usage : my $id = $map->unique_id;
253 Function: Get/set the unique ID for this map
254 Returns : string
255 Args : none to get, OR string to set
257 =cut
259 sub unique_id {
260 my ($self, $id) = @_;
261 if (defined $id) {
262 delete $GENEMAPS->{by_uid}->{$self->{'_uid'}};
263 $self->{'_uid'} = $id;
264 $GENEMAPS->{by_uid}->{$id} = $self;
266 return $self->{'_uid'};
269 =head2 species
271 Title : species
272 Usage : my $species = $map->species;
273 Function: Get/set Species for a map. It is not recommended to change this once
274 set.
275 Returns : Bio::Taxon object or string
276 Args : none to get, OR Bio::Taxon or string to set
278 =cut
280 sub species {
281 my ($self, $value) = @_;
282 if ($value) {
283 my $old_species = $self->{_species};
284 $self->{'_species'} = $value;
285 my $name = $self->universal_name || return $value;
286 if ($old_species) {
287 delete $GENEMAPS->{by_ns}->{$name}->{$old_species};
289 $GENEMAPS->{by_ns}->{$name}->{$value} = $self;
291 return $self->{'_species'};
294 =head2 type
296 Title : type
297 Usage : my $type = $map->type
298 Function: Get Map type
299 Returns : string 'gene'
300 Args : none
302 =cut
304 sub type {
305 return 'gene';
308 =head2 gene
310 Title : gene
311 Usage : my $gene = $map->gene;
312 $map->gene(-gene => $gene);
313 Function: Get/set the mappable element on this map that represents the gene
314 this map is for. Once set, it is not recommended to re-set the gene
315 to something else. Behaviour in that case is undefined.
316 Returns : Bio::Map::Gene
317 Args : none to get, OR to set:
318 -gene => Bio::Map::Gene or string of the universal name (see
319 Bio::Map::Gene docs), REQUIRED
320 -description => string, applied to the Bio::Map::Gene
321 -upstream => int, the number of bases the map extends before the
322 start of the gene element (default 1000).
323 -downstream => int, the number of bases the map extends beyond the
324 end of the gene element (default 0).
326 =cut
328 sub gene {
329 my ($self, @args) = @_;
331 if (@args > 0) {
332 my ($gene, $desc, $up, $down) = $self->_rearrange([qw(GENE
333 DESCRIPTION
334 UPSTREAM
335 DOWNSTREAM)], @args);
336 $self->throw("You must supply -gene") unless $gene;
338 my $gene_obj = ref($gene) ? $gene : Bio::Map::Gene->get(-universal_name => $gene, -description => $desc);
339 if (defined $self->{gene}) {
340 if ($self->{gene} ne $gene_obj) {
341 $self->warn("Changing the gene that this map is for, which could be bad");
342 $self->purge_positions($self->{gene});
343 delete $GENEMAPS->{by_ns}->{$self->universal_name}->{$self->species};
344 $self->{gene} = $gene_obj;
347 # change the gene's position on us if necessary
348 $self->upstream($up) if defined $up;
349 $self->downstream($down) if defined $down;
351 else {
352 # give the gene object a position on us
353 $up ||= 1000;
354 $up >= 0 || $self->throw("-upstream must be a positive integer");
355 Bio::Map::Position->new(-map => $self, -start => ($up + 1), -element => $gene_obj);
356 $self->{gene} = $gene_obj;
357 $self->downstream($down || 0);
359 # set other gene positions from db if already user-requested
360 $gene_obj->_set_from_db($self);
363 $GENEMAPS->{by_ns}->{$self->universal_name}->{$self->species} = $self;
366 return $self->{gene};
369 =head2 universal_name
371 Title : universal_name
372 Usage : my $name = $map->universal_name
373 Function: Get/set the name of Bio::Map::Gene object associated with this map.
374 It is not recommended to change this once set.
375 Returns : string
376 Args : none to get, OR string to set
378 =cut
380 sub universal_name {
381 my ($self, $value) = @_;
382 $self->gene || return;
383 if ($value) {
384 my $species = $self->species;
385 delete $GENEMAPS->{by_ns}->{$self->gene->universal_name}->{$species};
386 $self->gene->universal_name($value);
387 $GENEMAPS->{by_ns}->{$value}->{$species} = $self;
389 return $self->gene->universal_name;
392 =head2 upstream
394 Title : upstream
395 Usage : my $distance = $map->upstream;
396 $map->upstream($distance);
397 Function: Get/set how long the map is before the start of the Bio::Map::Gene
398 object on this map.
399 Returns : int
400 Args : none to get, OR int to set (the number of bases the map extends
401 before the start of the gene)
403 =cut
405 sub upstream {
406 my ($self, $value) = @_;
408 my $pos = $self->gene->position($self);
409 if (defined($value)) {
410 $value >= 0 || $self->throw("Supplied value must be a positive integer");
411 $pos->start($value + 1);
414 return $pos->start - 1;
417 =head2 downstream
419 Title : downstream
420 Usage : my $distance = $map->downstream;
421 $map->downstream($distance);
422 Function: Get/set the nominal end of the map relative to the end of the
423 Bio::Map::Gene object on this map.
424 Returns : int
425 Args : none to get, OR int to set (the number of bases the map extends
426 beyond the end of the gene)
428 =cut
430 sub downstream {
431 my $self = shift;
432 if (@_) { $self->{_downstream} = shift }
433 return $self->{_downstream} || 0;
436 =head2 length
438 Title : length
439 Usage : my $length = $map->length();
440 Function: Retrieves the length of the map. This is normally the length of the
441 upstream region + length of the gene + length of the downstream
442 region, but may be longer if positions have been placed on the map
443 beyond the end of the nominal downstream region.
444 Returns : int
445 Args : none
447 =cut
449 sub length {
450 my $self = shift;
451 my $expected_length = $self->gene->position($self)->length + $self->upstream + $self->downstream;
452 my $actual_length = $self->SUPER::length;
453 return $actual_length > $expected_length ? $actual_length : $expected_length;
456 =head2 seq
458 Title : seq
459 Usage : $string = $obj->seq()
460 Function: Get/set the sequence as a string of letters. When getting, If the
461 GeneMap object didn't have sequence attached directly to it for the
462 region requested, the map's gene's database will be asked for the
463 sequence, and failing that, the map's gene's positions will be asked
464 for their sequences. Areas for which no sequence could be found will
465 be filled with Ns, unless no sequence was found anywhere, in which
466 case undef is returned.
467 Returns : string
468 Args : Optionally on set the new value (a string). An optional second
469 argument presets the alphabet (otherwise it will be guessed).
471 =cut
473 sub seq {
474 my ($self, @args) = @_;
475 my $seq = $self->SUPER::seq(@args);
476 my $expected_length = $self->length;
477 if (! $seq || CORE::length($seq) < $expected_length) {
478 my @have = split('', $seq || '');
479 my @result;
480 for (0..($expected_length - 1)) {
481 $result[$_] = shift(@have) || 'N';
484 # build map sequence by asking gene or positions
485 my @slice_stuff = $self->gene->_get_slice($self);
486 if (@slice_stuff) {
487 my ($slice_adaptor, $slice, $strand) = @slice_stuff;
488 my ($start, $end, $gene_start) = (CORE::length($seq || '') + 1, $expected_length, $self->upstream + 1);
490 # convert map coords to genomic coords
491 my $adjust = $strand == -1 ? $slice->end : $slice->start;
492 my $adjustment = sub { return $strand == -1 ? $adjust - shift() : shift() + $adjust; };
493 my $converted_start = &$adjustment($start - $gene_start);
494 my $converted_end = &$adjustment($end - $gene_start);
495 ($converted_start, $converted_end) = ($converted_end, $converted_start) if $converted_start > $converted_end;
497 # get sequence from a new slice of desired region
498 #*** what happens if desired region starts or ends off end of chromo?...
499 my $new_slice = $slice_adaptor->fetch_by_region($slice->coord_system_name, $slice->seq_region_name, $converted_start, $converted_end);
500 if ($new_slice && (my $seq_str = $new_slice->seq)) {
501 if ($strand == -1) {
502 $seq_str = $self->_revcom($seq_str);
504 splice(@result, CORE::length($seq || ''), CORE::length($seq_str), split('', $seq_str));
507 else {
508 foreach my $pos ($self->get_positions) {
509 next unless $pos->can('seq');
510 my @pos_seq = split('', $pos->seq(undef, undef, 1) || next);
511 for my $i ($pos->start($pos->absolute_relative)..$pos->end($pos->absolute_relative)) {
512 $i--;
513 my $base = shift(@pos_seq);
514 if ($result[$i] eq 'N') {
515 $result[$i] = $base;
521 $seq = join('', @result);
523 return $seq;
526 =head2 subseq
528 Title : subseq
529 Usage : $substring = $obj->subseq(10, 40);
530 Function: Returns the subseq from start to end, where the first base
531 is 1 and the number is inclusive, ie 1-2 are the first two
532 bases of the sequence. If the GeneMap object didn't have sequence
533 attached directly to it for the region requested, the map's gene's
534 database will be asked for the sequence, and failing that, the map's
535 gene's positions will be asked for their sequences. Areas for which
536 no sequence could be found will be filled with Ns, unless no
537 sequence was found anywhere, in which case undef is returned. subseq
538 requests that extend beyond the end of the map will throw.
539 Returns : string
540 Args : integer for start position AND integer for end position
542 Bio::LocationI location for subseq (strand honored)
544 Bio::RangeI (eg. a Bio::Map::PositionI)
546 =cut
548 sub subseq {
549 my ($self, $start, $end) = @_;
551 if ($start && ref($start) && $start->isa('Bio::RangeI')) {
552 my $thing = $start;
553 if ($start->isa('Bio::Map::Position')) {
554 ($start, $end) = ($thing->start($thing->absolute_relative), $thing->end($thing->absolute_relative));
556 else {
557 ($start, $end) = ($thing->start, $thing->end);
561 # *** this implementation potentially wastefull? Should duplicate code
562 # from seq() to do this just for the desired region??
563 my $orig_seq = $self->{seq};
564 $self->{seq} = $self->seq();
565 my $subseq = $self->{seq} ? $self->SUPER::subseq($start, $end) : '';
566 $self->{seq} = $orig_seq;
568 return $subseq;
571 # quick revcom for strings (silly to create a PrimarySeq just to revcom and then
572 # return a string again)
573 sub _revcom {
574 my ($self, $seq) = @_;
575 $seq or return;
576 $seq = reverse($seq);
577 $seq =~ tr/acgtrymkswhbvdnxACGTRYMKSWHBVDNX/tgcayrkmswdvbhnxTGCAYRKMSWDVBHNX/;
578 return $seq;