comparison variant_effect_predictor/Bio/EnsEMBL/ApiVersion.pm @ 0:1f6dce3d34e0

Uploaded
author mahtabm
date Thu, 11 Apr 2013 02:01:53 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:1f6dce3d34e0
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 =head1 NAME
22
23 Bio::EnsEMBL::ApiVersion
24
25 =head1 SYNOPSIS
26
27 use Bio::EnsEMBL::ApiVersion;
28
29 printf( "The API version used is %s\n", software_version() );
30
31 =head1 DESCRIPTION
32
33 The module exports the software_version() subroutine which returns the
34 release version of the Ensembl Core API.
35
36 =cut
37
38 package Bio::EnsEMBL::ApiVersion;
39
40 use strict;
41 use warnings;
42
43 use Exporter;
44
45 use base qw( Exporter );
46
47 our @EXPORT = qw( software_version );
48
49 my $API_VERSION = 68;
50
51 sub software_version { return $API_VERSION }
52
53 1;