Summary | Included libraries | Package variables | Synopsis | Description | General documentation | Methods |
WebCvs | Raw content |
use Bio::EnsEMBL::Analysis::Tools::GeneBuildUtils::IntronUtils qw(get_splice_sites);
or use Bio::EnsEMBL::Analysis::Tools::GeneBuildUtils::IntronUtils to get all methods
Intron_info | Description | Code |
get_splice_sites | Description | Code |
intron_length_less_than_maximum | Description | Code |
print_Intron | Description | Code |
Intron_info | code | next | Top |
Arg [1] : Bio::EnsEMBL::Intron |
get_splice_sites | code | prev | next | Top |
Arg [1] : Bio::EnsEMBL::Intron |
intron_length_less_than_maximum | code | prev | next | Top |
Arg [1] : Bio::EnsEMBL::Intron |
print_Intron | code | prev | next | Top |
Arg [1] : Bio::EnsEMBL::Intron |
Intron_info | description | prev | next | Top |
my ($intron, $indent) = @_; throw("Must be passed an intron") if(!$intron); $indent = '' if(!$indent); my $coord_string = coord_string($intron); my $id = id($intron); return $indent."INTRON: ".$coord_string;}
get_splice_sites | description | prev | next | Top |
my ($intron) = @_; my $intron_slice = $intron->feature_Slice; my $donor_seq = uc($intron_slice->subseq(1,2)); my $acceptor_seq = uc($intron_slice->subseq($intron->length-1,$intron->length)); return $donor_seq, $acceptor_seq;}
intron_length_less_than_maximum | description | prev | next | Top |
my ($intron, $max_length) = @_; if($intron->length >= $max_length){ warning("This intron is longer than ".$max_length); return 0; } return 1; } 1;}
print_Intron | description | prev | next | Top |
my ($intron, $indent) = @_; print Intron_info($intron, $indent)."\n";}
CONTACT | Top |