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 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
|
# BioPerl module for Bio::Restriction::IO::withrefm
#
# Please direct questions and support issues to <bioperl-l@bioperl.org>
#
# Cared for by Rob Edwards <redwards@utmem.edu>
#
# Copyright Rob Edwards
#
# You may distribute this module under the same terms as perl itself
#
# POD documentation - main docs before the code
=head1 NAME
Bio::Restriction::IO::bairoch - bairoch enzyme set
=head1 SYNOPSIS
Do not use this module directly. Use it via the Bio::Restriction::IO class.
=head1 DESCRIPTION
This is the most complete format of the REBASE files, and basically
includes all the data on each of the restriction enzymes.
This parser is for the Bairoch format (aka MacVector, Vector NTI, PC/Gene
(Bairoch) format), REBASE format #19
=head1 FEEDBACK
=head2 Mailing Lists
User feedback is an integral part of the evolution of this and other
Bioperl modules. Send your comments and suggestions preferably to the
Bioperl mailing lists Your participation is much appreciated.
bioperl-l@bioperl.org - General discussion
http://bioperl.org/wiki/Mailing_lists - About the mailing lists
=head2 Support
Please direct usage questions or support issues to the mailing list:
I<bioperl-l@bioperl.org>
rather than to the module maintainer directly. Many experienced and
reponsive experts will be able look at the problem and quickly
address it. Please include a thorough description of the problem
with code and data examples if at all possible.
=head2 Reporting Bugs
Report bugs to the Bioperl bug tracking system to help us keep track
the bugs and their resolution. Bug reports can be submitted via the
web:
https://github.com/bioperl/bioperl-live/issues
=head1 AUTHOR
Rob Edwards, redwards@utmem.edu
=head1 CONTRIBUTORS
Heikki Lehvaslaiho, heikki-at-bioperl-dot-org
=head1 APPENDIX
The rest of the documentation details each of the object
methods. Internal methods are usually preceded with a _
=cut
# Let the code begin...
package Bio::Restriction::IO::bairoch;
use vars qw(%WITH_REFM_FIELD);
use strict;
use Bio::Restriction::Enzyme;
use Bio::Restriction::Enzyme::MultiCut;
use Bio::Restriction::Enzyme::MultiSite;
use Bio::Restriction::EnzymeCollection;
use Data::Dumper;
use base qw(Bio::Restriction::IO::base);
=head2 read
Title : read
Usage : $renzs = $stream->read
Function: reads all the restrction enzymes from the stream
Returns : a Bio::Restriction::Restriction object
Args : none
=cut
sub read {
my $self = shift;
my $renzs = Bio::Restriction::EnzymeCollection->new(-empty => 1);
local $/ = '//';
while (defined(my $entry=$self->_readline()) ) {
$self->debug("|$entry|\n");
#
# Minimal information
#
my ($name) = $entry =~ /ID\s+(\S+)/;
my ($site) = $entry =~ /RS\s+([^\n]+)/;
next unless ($name && $site);
# the standard sequence format for these guys is:
# GATC, 2;
# or, for enzymes that cut more than once
# GATC, 2; GTAC, 2;
# there are a couple of sequences that have multiple
# recognition sites.
my @sequences;
if ($site =~ /\;/) {
@sequences = split /\;/, $site;
$self->debug(@sequences,"\n");
$site=shift @sequences;
}
my ($seq, $cut)=split /,\s+/, $site;
$self->debug("SITE: |$site| GAVE: |$seq| and |$cut|\n");
if ($seq eq '?') {
$self->warn("$name: no site. Skipping") if $self->verbose > 1;
next;
}
# this is mainly an error check to make sure that I am adding what I think I am!
if ($seq !~ /[NGATC]/i) {
$self->throw("Sequence $name has weird sequence: |$seq|");
}
my $re;
if ($cut eq "?") {
$re = Bio::Restriction::Enzyme->new(-name=>$name, -seq => $seq);
}
else {
if ($cut !~ /^-?\d+$/) {
$self->throw("Cut site from $name is weird: |$cut|\n");
}
$re = Bio::Restriction::Enzyme->new(-name=>$name,
-cut => $cut,
-seq => $seq
);
}
$renzs->enzymes($re);
#
# prototype / isoschizomers
#
my ($prototype) = $entry =~ /PT\s+([^\n]+)/;
if ($prototype) {
#$re->isoschizomers(split /\,/, $isoschizomers);
#NOTE: Need to add a method so that we can add isoschosomers to enzymes that may not exist!
$re->is_prototype(0);
} else {
$re->is_prototype(1);
}
#
# methylation
#
my ($meth) = $entry =~ /MS\s+([^\n]+)/;
my @meths;
if ($meth) {
# this can be either X(Y) or X(Y),X2(Y2)
# where X is the base and y is the type of methylation
if ( $meth =~ /(\S+)\((\d+)\),(\S+)\((\d+)\)/ ) { # two msites per site
#my ($p1, $m1, $p2, $m2) = ($1, $2, $3, $4);
$re->methylation_sites($self->_meth($re,$1, $2),
$self->_meth($re,$3,$4));
}
elsif ($meth =~ /(\S+)\((\d+)\)/ ) { # one msite per site or more sites
#print Dumper $meth;
$re->methylation_sites( $self->_meth($re,$1,$2) );
@meths = split /, /, $meth;
$meth=shift @meths;
} else {
$self->warn("Unknown methylation format [$meth]") if $self->verbose >0;
}
}
#
# microbe
#
my ($microbe) = $entry =~ /OS\s+([^\n]+)/;
$re->microbe($microbe) if $microbe;
#
# source
#
#my ($source) = $entry =~ /<6>([^\n]+)/;
#$re->source($source) if $source;
#
# vendors
#
my ($vendors) = $entry =~ /CR\s+([^\n]+)/;
$re->vendors(split /,\s*/, $vendors) if $vendors;
#
# references
#
#my ($refs) = $entry =~ /<8>(.+)/s;
#$re->references(map {split /\n+/} $refs) if $refs;
#
# create special types of Enzymes
#
$self->warn("Current issues with multisite enzymes using bairoch format\n".
"Recommend using itype2 or withrefm formats for now") if @sequences;
#$self->_make_multisites($renzs, $re, \@sequences, \@meths) if @sequences;
}
return $renzs;
}
=head2 write
Title : write
Usage : $stream->write($renzs)
Function: writes restriction enzymes into the stream
Returns : 1 for success and 0 for error
Args : a Bio::Restriction::Enzyme
or a Bio::Restriction::EnzymeCollection object
=cut
sub write {
my ($self,@h) = @_;
$self->throw_not_implemented;
}
1;
|