/usr/lib/perl5/TFBS/Ext/pwmsearch.pm is in libtfbs-perl 0.5.svn.20100421-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 | package TFBS::Ext::pwmsearch;
require 5.005_62;
use strict;
use warnings;
use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $VERSION);
use Bio::SeqIO;
use File::Temp qw (:POSIX);
require Exporter;
require DynaLoader;
our @ISA = qw(Exporter DynaLoader);
# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.
# This allows declaration use TFBS::Ext::pwmsearch ':all';
# If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
# will save memory.
%EXPORT_TAGS = ( 'all' => [ qw(
) ] );
@EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
@EXPORT = qw(
);
$VERSION = '0.2';
bootstrap TFBS::Ext::pwmsearch $VERSION;
# Preloaded methods go here.
sub pwmsearch {
my ($matrixobj, $seqobj, $threshold, $start, $end) = @_;
$start = 1 if !defined($start);
$end = $seqobj->length if !defined($end);
my $matrixfile = tmpnam();
open (MATRIX, ">$matrixfile") or die ("Error opening temporary file.");
print MATRIX $matrixobj->rawprint();
close MATRIX;
my $outfile = tmpnam();
# pwm_search is confused by long descriptions - we delete desc temporarily:
my $save_desc = $seqobj->desc();
$seqobj->desc("");
my $seqfile;
if ($seqobj->{_fastafile}) {
$seqfile = $seqobj->{_fastafile};
}
else {
$seqfile = tmpnam();
my $outstream = Bio::SeqIO->new(-file=>">$seqfile", -format=>"fasta");
$outstream->write_seq(Bio::Seq->new(-seq =>$seqobj->subseq($start, $end),
-id =>$seqobj->id));
$outstream->close();
}
$seqobj->desc($save_desc);
# calculate threshold
if ($threshold) {
if ($threshold =~ /(.+)%/) {
# percentage
$threshold = $matrixobj->{min_score} +
($matrixobj->{max_score} - $matrixobj->{min_score})* $1/100;
}
else {
# absolute value
# $threshold = $args{-threshold};
}
}
else {
# no threshold given
$threshold = $matrixobj->{min_score} -1;
}
search_xs($matrixfile, $seqfile,
$threshold, $matrixobj->name()."",
$matrixobj->{'class'}."", $outfile);
unlink $seqfile unless $seqobj->{'_fastafile'};
unlink $matrixfile;
my $hitlist = TFBS::SiteSet->new();
my ($TFname, $TFclass) = ($matrixobj->{name}, $matrixobj->{class});
my $save_delim = $/; # bugfix submitted
local $/ = "\n"; # by Michal Lapidot
open (OUTFILE, $outfile)
or die("Could not read temporary outfile");
while (my $line = <OUTFILE>) {
# print STDERR $line;
chomp $line;
$line =~ s/^\s+//;
$line =~ s/ *\t */\t/g;
my ($seq_id, $factor, $class, $strand, $score, $pos, $siteseq) =
(split /\t/, $line)[0, 2, 3, 4, 5, 7, 9];
my $num_strand = ($strand eq "-")? "-1" : "1";
my $site = TFBS::Site->new ( -seq_id => $seqobj->display_id()."",
-seqobj => $seqobj,
-strand => $num_strand."",
-pattern => $matrixobj,
-siteseq => $siteseq."",
-score => $score."",
-start => $pos +$start -1,
-end => $pos +$start
+length($siteseq) -2
);
$hitlist->add_site($site);
}
close OUTFILE;
$/ = $save_delim;
unlink $outfile;
return $hitlist;
}
1;
__END__
=head1 NAME
TFBS::Ext::pwmsearch - Perl extension for scanning a DNA sequence object with a position weight matrix
=head1 SYNOPSIS
use TFBS::Ext::pwmsearch;
pwmsearch
=head1 DESCRIPTION
Stub documentation for TFBS::Ext::pwmsearch, created by h2xs. It looks like the
author of the extension was negligent enough to leave the stub
unedited.
Blah blah blah.
=head2 EXPORT
None by default.
=head1 AUTHOR
A. U. Thor, a.u.thor@a.galaxy.far.far.away
=head1 SEE ALSO
perl(1).
=cut
|