TFBS::Matrix
_Alignment
Package variables
No package variables defined.
Included modules
Bio::AlignIO
Bio::Root::Root
Bio::Seq
Bio::SimpleAlign
IO::String
PDL
Inherit
Bio::Root::Root
Synopsis
No synopsis!
Description
No description!
Methods
DESTROY | No description | Code |
_alignfile_to_alignobj | No description | Code |
_alignfile_to_string | No description | Code |
_alignobj_to_string | No description | Code |
_alignstring_to_alignobj | No description | Code |
_calculate_conservation | No description | Code |
_calculate_cutoff | No description | Code |
_parse_alignment | No description | Code |
_set_subpart_bounds | No description | Code |
_strip_gaps | No description | Code |
alignseq1 | No description | Code |
alignseq2 | No description | Code |
conservation1 | No description | Code |
conservation2 | No description | Code |
cutoff | No description | Code |
do_sitesearch | No description | Code |
end_at | No description | Code |
exclude_orf | No description | Code |
higher_pdlindex | No description | Code |
lower_pdlindex | No description | Code |
new | No description | Code |
pdlindex | No description | Code |
seq1length | No description | Code |
seq1name | No description | Code |
seq2length | No description | Code |
seq2name | No description | Code |
site_pair_set | No description | Code |
start_at | No description | Code |
subpart1 | No description | Code |
subpart2 | No description | Code |
window | No description | Code |
Methods description
None available.
Methods code
sub _alignfile_to_alignobj
{ my ($alignfile, $format) = (@_,'clustalw');
if (!$format and $alignfile =~ /\.msf$/i) { $format = 'msf' ;}
my $alnio = Bio::AlignIO->new(-file=>$alignfile, -format=>$format);
return $alnio->next_aln; } |
sub _alignfile_to_string
{ my $alignfile = shift;
if ($alignfile =~ /\.msf$/i) {
my $alignobj = Bio::SimpleAlign->new();
$alignobj->read_MSF($alignfile);
return _alignobj_to_string($alignobj);
}
else { local $/ = undef;
open FILE, $alignfile
or die("Could not read alignfile $alignfile, stopped");
my $alignstring = <FILE>;
return $alignstring;
} } |
sub _alignobj_to_string
{ my $alignobj = shift;
my $alignstring;
my $io = IO::String->new($alignstring);
my $alnio = Bio::AlignIO->new(-fh=>$io, -format=>"clustalw");
$alnio->write_aln($alignobj);
$alnio->close();
return $alignstring; } |
sub _alignstring_to_alignobj
{ my ($alignstring, $format) = (@_, 'clustalw');
my $io = IO::String->new($alignstring);
my $alnio = Bio::AlignIO->new(-fh=>$io, -format=>$format);
my $alignobj = $alnio->next_aln();
$alnio->close();
return $alignstring;
}
} |
sub _calculate_conservation
{ my ($self, $WINDOW, $which) = @_;
my (@seq1, @seq2);
if ($which==2) {
@seq1 = @{$self->{alignseq2array}};
@seq2 = @{$self->{alignseq1array}};
}
else {
@seq1 = @{$self->{alignseq1array}};
@seq2 = @{$self->{alignseq2array}};
$which=1;
}
my @CONSERVATION;
my @match;
while ($seq1[0] eq "-") {
shift @seq1;
shift @seq2;
}
for my $i (0..$#seq1) {
push (@match,( uc($seq1[$i]) eq uc($seq2[$i]) ? 1:0))
unless ($seq1[$i] eq "-" or $seq1[$i] eq ".");
}
my @graph=($match[0]);
for my $i (1..($#match+$WINDOW/2)) { $graph[$i] = ($graph[$i-1] or 0) + ($i>$#match ? 0: $match[$i]) - ($i<$WINDOW ? 0: $match[$i-$WINDOW]); }
foreach my $pos (@graph[int($WINDOW/2)..$#graph]) { push @CONSERVATION, 100*$pos/$WINDOW;
}
foreach my $pos (0..int($WINDOW/2)) { $CONSERVATION[$pos] = $CONSERVATION[$pos]*$WINDOW/(int($WINDOW/2)+$pos); $CONSERVATION[$#CONSERVATION - $pos] =
$CONSERVATION[$#CONSERVATION - $pos]*$WINDOW/(int($WINDOW/2)+$pos);
}
return [@CONSERVATION]; } |
sub _calculate_cutoff
{ my ($self) = @_;
my $ile = 0.9;
my @conservation_array = sort {$a <=> $b} @{$self->conservation1()};
my $perc_90 = $conservation_array[int($ile*scalar(@conservation_array))];
return $perc_90; } |
sub _parse_alignment
{ my ($self, %args) = @_;
my ($seq1, $seq2, $start);
my $alignobj;
if (defined $args{'-alignstring'}) {
$alignobj = _alignstring_to_alignobj($args{'-alignstring'});
}
elsif (defined $args{'-file'}) {
$alignobj = _alignfile_to_alignobj($args{'-file'});
}
elsif (defined $args{-alignobj}) {
$alignobj = $args{'-alignobj'};
}
else {
$self->throw("No -alignstring, -file or -alignobj passed.");
}
my @match;
my ($seqobj1, $seqobj2) = $alignobj->each_seq;
($seq1, $seq2) = ($seqobj1->seq, $seqobj2->seq);
$start = 1;
$self->seq1name($seqobj1->display_id);
$self->seq2name($seqobj2->display_id);
$self->alignseq1($seq1);
$self->alignseq2($seq2);
my @seq1 = ("-", split('', $seq1) );
my @seq2 = ("-", split('', $seq2) );
$self->{alignseq1array} = [@seq1];
$self->{alignseq2array} = [@seq2];
my (@seq1index, @seq2index);
my ($i1, $i2) = (0, 0);
for my $pos (0..$#seq1) {
my ($s1, $s2) = (0, 0);
$seq1[$pos] ne "-" and $s1 = ++$i1;
$seq2[$pos] ne "-" and $s2 = ++$i2;
push @seq1index, $s1;
push @seq2index, $s2;
}
$self->pdlindex( pdl [ [list sequence($#seq1+1)],
[@seq1index],
[@seq2index],
[list zeroes ($#seq1+1)] ]) ;
return 1; } |
sub _set_subpart_bounds
{ my ($self, $subpart) = @_;
if(defined $subpart) {
my ($relative_to, $start, $end) = ($subpart->{-relative_to},
$subpart->{-start},
$subpart->{-end});
unless(defined($relative_to) and defined($start) and defined($end) ) {
$self->throw("Option -subpart missing suboption -relative_to, -start or -end");
}
if($relative_to == 1) {
my $other_start = $self->higher_pdlindex($start, 1 => 2);
my $other_end = $self->lower_pdlindex($end, 1 => 2);
($other_start, $other_end) = (0,0) if($other_start > $other_end);
$self->subpart1({ -start => $start, -end => $end });
$self->subpart2({ -start => $other_start, -end => $other_end });
}
elsif($relative_to == 2) {
my $other_start = $self->higher_pdlindex($start, 2 => 1);
my $other_end = $self->lower_pdlindex($end, 2 => 1);
($other_start, $other_end) = (0,0) if($other_start > $other_end);
$self->subpart1({ -start => $other_start, -end => $other_end });
$self->subpart2({ -start => $start, -end => $end });
}
else {
$self->throw("Suboption -relative_to should be 1 or 2");
}
} } |
sub _strip_gaps
{ my $seq = shift;
$seq =~ s/\-|\.//g;
return $seq; } |
sub alignseq1
{ $_[0]->{'alignseq1'} = $_[1] if exists $_[1]; $_[0]->{'alignseq1'}; } |
sub alignseq2
{ $_[0]->{'alignseq2'} = $_[1] if exists $_[1]; $_[0]->{'alignseq2'}; } |
sub conservation1
{ $_[0]->{'conservation1'} = $_[1] if exists $_[1]; $_[0]->{'conservation1'}; } |
sub conservation2
{ $_[0]->{'conservation2'} = $_[1] if exists $_[1]; $_[0]->{'conservation2'}; } |
sub cutoff
{ $_[0]->{'cutoff'} = $_[1] if exists $_[1]; $_[0]->{'cutoff'}; } |
sub do_sitesearch
{ my ($self, @args ) = @_;
my ($MATRIXSET, $THRESHOLD, $CUTOFF) =
$self->_rearrange([qw(PATTERN_SET THRESHOLD CUTOFF)], @args);
if (!$MATRIXSET) {
$self->throw("No -pattern_set passed to do_sitesearch");
}
$CUTOFF = ($CUTOFF or DEFAULT_CUTOFF);
$THRESHOLD = ($THRESHOLD or DEFAULT_THRESHOLD);
$self->site_pair_set(TFBS::SitePairSet->new());
return if(($self->subpart1 and $self->subpart1->{-start} == 0) or
($self->subpart2 and $self->subpart2->{-start} == 0));
my $seqobj1 = Bio::Seq->new(-seq=>_strip_gaps($self->alignseq1()),
-id => "Seq1");
my $siteset1 =
$MATRIXSET->search_seq(-seqobj => $seqobj1,
-threshold => $THRESHOLD,
-subpart => $self->subpart1);
my $siteset1_itr = $siteset1->Iterator(-sort_by => "start");
my $seqobj2 = Bio::Seq->new(-seq=>_strip_gaps($self->alignseq2()),
-id => "Seq2");
my $siteset2 =
$MATRIXSET->search_seq(-seqobj => $seqobj2,
-threshold => $THRESHOLD,
-subpart => $self->subpart2);
my $siteset2_itr = $siteset2->Iterator(-sort_by => "start");
my $site1 = $siteset1_itr->next();
my $site2 = $siteset2_itr->next();
while (defined $site1 and defined $site2) {
my $pos1_in_aln = $self->pdlindex($site1->start(), 1=>0);
my $pos2_in_aln = $self->pdlindex($site2->start(), 2=>0);
my $cmp = (($pos1_in_aln <=> $pos2_in_aln)
or ($site1->pattern->name() cmp $site2->pattern->name())
or ($site1->strand() cmp $site2->strand()));
if ($cmp==0) { if ( $self->conservation1->[$site1->start()]
>=
$self->cutoff()
)
{
my $site_pair = TFBS::SitePair->new($site1, $site2);
$self->site_pair_set->add_site_pair($site_pair);
}
$site1 = $siteset1_itr->next();
$site2 = $siteset2_itr->next();
}
elsif ($cmp<0) { $site1 = $siteset1_itr->next();
}
elsif ($cmp>0) { $site2 = $siteset2_itr->next();
}
} } |
sub end_at
{ $_[0]->{'end_at'} = $_[1] if exists $_[1]; $_[0]->{'end_at'}; }
1; } |
sub exclude_orf
{ $_[0]->{'exclude_orf'} = $_[1] if exists $_[1]; $_[0]->{'exclude_orf'}; } |
sub higher_pdlindex
{ my ($self, $input, $p1, $p2) = @_;
unless (defined $p2) {
$self->throw("Wrong number of parameters passed to lower_pdlindex");
}
my $result;
my $i = $input;
until ($result = $self->pdlindex($i, $p1 => $p2)) {
$i++;
last unless ($self->pdlindex($i, $p1=>0) > 0);
}
return $result; } |
sub lower_pdlindex
{ my ($self, $input, $p1, $p2) = @_;
unless (defined $p2) {
$self->throw("Wrong number of parameters passed to lower_pdlindex");
}
my $result;
my $i = $input;
until ($result = $self->pdlindex($i, $p1 => $p2)) {
$i--;
last if $i==0;
}
return $result or 1; } |
sub new
{
my ($caller, %args) = @_;
my $self = bless {}, ref $caller || $caller;
$self->window($args{-window} or DEFAULT_WINDOW);
$self->_parse_alignment(%args);
$self->seq1length(length(_strip_gaps($self->alignseq1())));
$self->seq2length(length(_strip_gaps($self->alignseq2())));
$self->_set_subpart_bounds($args{-subpart});
my $cp = $args{-conservation};
if ($cp) {
$self->conservation1([$cp->conservation()]);
} else {
$self->conservation1($self->_calculate_conservation($self->window(),1));
$self->conservation2($self->_calculate_conservation($self->window(),2));
}
$self->cutoff($args{-cutoff} or DEFAULT_CUTOFF);
return $self; } |
sub pdlindex
{ my ($self, $input, $p1, $p2) = @_ ;
if (ref($input) eq "PDL") {
$self->{pdlindex} = $input;
}
unless (defined $p2) {
return $self->{pdlindex};
}
else {
my @results = list
$self->{pdlindex}->xchg(0,1)->slice($p2)->where
($self->{pdlindex}->xchg(0,1)->slice($p1)==$input);
wantarray ? return @results : return $results[0];
} } |
sub seq1length
{ $_[0]->{'seq1length'} = $_[1] if exists $_[1]; $_[0]->{'seq1length'}; } |
sub seq1name
{ $_[0]->{'seq1name'} = $_[1] if exists $_[1]; $_[0]->{'seq1name'}; } |
sub seq2length
{ $_[0]->{'seq2length'} = $_[1] if exists $_[1]; $_[0]->{'seq2length'}; } |
sub seq2name
{ $_[0]->{'seq2name'} = $_[1] if exists $_[1]; $_[0]->{'seq2name'}; } |
sub site_pair_set
{ $_[0]->{'site_pair_set'} = $_[1] if exists $_[1]; $_[0]->{'site_pair_set'}; } |
sub start_at
{ $_[0]->{'start_at'} = $_[1] if exists $_[1]; $_[0]->{'start_at'}; } |
sub subpart1
{ $_[0]->{'subpart1'} = $_[1] if exists $_[1]; $_[0]->{'subpart1'}; } |
sub subpart2
{ $_[0]->{'subpart2'} = $_[1] if exists $_[1]; $_[0]->{'subpart2'}; } |
sub window
{ $_[0]->{'window '} = $_[1] if exists $_[1]; $_[0]->{'window '}; } |
General documentation
No general documentation available.