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 # Ensembl module for Bio::EnsEMBL::Variation::VariationFeature
|
|
22 #
|
|
23 # Copyright (c) 2004 Ensembl
|
|
24 #
|
|
25
|
|
26
|
|
27 =head1 NAME
|
|
28
|
|
29 Bio::EnsEMBL::Variation::BaseVariationFeature - Abstract base class for variation features
|
|
30
|
|
31 =head1 SYNOPSIS
|
|
32
|
|
33 None
|
|
34
|
|
35 =head1 DESCRIPTION
|
|
36
|
|
37 Abstract base class representing variation features. Should not be instantiated
|
|
38 directly.
|
|
39
|
|
40 =head1 METHODS
|
|
41
|
|
42 =cut
|
|
43
|
|
44 use strict;
|
|
45 use warnings;
|
|
46
|
|
47 package Bio::EnsEMBL::Variation::BaseVariationFeature;
|
|
48
|
|
49 use Bio::EnsEMBL::Feature;
|
|
50
|
|
51 our @ISA = ('Bio::EnsEMBL::Feature');
|
|
52
|
|
53 1; |