Mercurial > repos > willmclaren > ensembl_vep
diff variant_effect_predictor/Bio/EnsEMBL/Compara/Domain.pm @ 0:21066c0abaf5 draft
Uploaded
author | willmclaren |
---|---|
date | Fri, 03 Aug 2012 10:04:48 -0400 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/variant_effect_predictor/Bio/EnsEMBL/Compara/Domain.pm Fri Aug 03 10:04:48 2012 -0400 @@ -0,0 +1,21 @@ +package Bio::EnsEMBL::Compara::Domain; + +use strict; + +use base ('Bio::EnsEMBL::Compara::MemberSet'); + +=head2 member_class + + Description: Returns the type of member used in the set + Returntype : String: Bio::EnsEMBL::Compara::MemberDomain + Caller : general + Status : Stable + +=cut + +sub member_class { + return 'Bio::EnsEMBL::Compara::MemberDomain'; +} + + +1;