Summary | Included libraries | Package variables | Synopsis | Description | General documentation | Methods |
WebCvs | Raw content |
use Bio::EnsEMBL::Variation::VariationGroup;
...
add_Variation | Description | Code |
get_all_Variations | Description | Code |
name | Description | Code |
new | Description | Code |
source | Description | Code |
type | Description | Code |
add_Variation | code | next | Top |
Arg [1] : Bio::EnsEMBL::Variation::Variation $var |
get_all_Variations | code | prev | next | Top |
Arg [1] : none |
name | code | prev | next | Top |
Arg [1] : string $name |
new | code | prev | next | Top |
Arg [dbID] : |
source | code | prev | next | Top |
Arg [1] : (optional) string $source |
type | code | prev | next | Top |
Arg [1] : string $newval (optional) |
add_Variation | description | prev | next | Top |
my $self = shift; my $var = shift; if(!ref($var) || !$var->isa('Bio::EnsEMBL::Variation::Variation')) { throw('Bio::EnsEMBL::Variation::Variation argument expected'); } push @{$self->{'variations'}}, $var; return; } 1;}
get_all_Variations | description | prev | next | Top |
my $self = shift; return $self->{'variations'};}
name | description | prev | next | Top |
my $self = shift; $self->{'name'} = shift if(@_); return $self->{'name'};}
new | description | prev | next | Top |
my $class = shift; my ($dbID, $adaptor, $name, $type, $src, $vars) = rearrange([qw(DBID ADAPTOR NAME TYPE SOURCE VARIATIONS)], @_); if(defined($vars) && !ref($vars) eq 'ARRAY') { throw("Reference to list of Bio::EnsEMBL::Variation::Variation ". "objects expected"); } $vars ||= []; return bless {'dbID' => $dbID, 'adaptor' => $adaptor, 'name' => $name, 'type' => $type, 'source' => $src, 'variations' => $vars}, $class;}
source | description | prev | next | Top |
my $self = shift; $self->{'source'} = shift if(@_); return $self->{'source'};}
type | description | prev | next | Top |
my $self = shift; return $self->{'type'} = shift if(@_); return $self->{'type'};}
CONTACT | Top |