0
|
1 =head1 LICENSE
|
|
2
|
|
3 Copyright (c) 1999-2012 The European Bioinformatics Institute and
|
|
4 Genome Research Limited. All rights reserved.
|
|
5
|
|
6 This software is distributed under a modified Apache license.
|
|
7 For license details, please see
|
|
8
|
|
9 http://www.ensembl.org/info/about/code_licence.html
|
|
10
|
|
11 =head1 CONTACT
|
|
12
|
|
13 Please email comments or questions to the public Ensembl
|
|
14 developers list at <dev@ensembl.org>.
|
|
15
|
|
16 Questions may also be sent to the Ensembl help desk at
|
|
17 <helpdesk@ensembl.org>.
|
|
18
|
|
19 =cut
|
|
20
|
|
21 package Bio::EnsEMBL::Variation::RegulationVariation;
|
|
22
|
|
23 use strict;
|
|
24 use warnings;
|
|
25
|
|
26 use base qw(Bio::EnsEMBL::Variation::VariationFeatureOverlap);
|
|
27
|
|
28 sub feature_label {
|
|
29 my ($self, $feature_label) = @_;
|
|
30 $self->{feature_label} = $feature_label if $feature_label;
|
|
31 return $self->{feature_label};
|
|
32 }
|
|
33
|
|
34 sub target_feature {
|
|
35 # XXX: fetch the target feature
|
|
36 }
|
|
37
|
|
38 sub target_feature_stable_id {
|
|
39 my ($self, $target_feature_stable_id) = @_;
|
|
40 $self->{target_feature_stable_id} = $target_feature_stable_id if $target_feature_stable_id;
|
|
41 return $self->{target_feature_stable_id};
|
|
42 }
|
|
43
|
|
44 1;
|