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
|
# Copyright 2001 by Katharine Lindner. All rights reserved.
# This code is part of the Biopython distribution and governed by its
# license. Please see the LICENSE file that should have been included
# as part of this package.
"""Parser for the MASE/Intelligenetics alignment file format.
http://pbil.univ-lyon1.fr/help/formats.html
"""
# standard library
import string
import array
import os
import re
import sgmllib
import urlparse
# XML from python 2.0
from xml.sax import handler
# Martel
import Martel
from Martel import RecordReader
from Bio.ParserSupport import EventGenerator
from Bio.ParserSupport import AbstractConsumer
from Bio import File
import intelligenetics_format
import Record
class Iterator:
"""Iterator interface to move over a file of IntelliGenetics entries one at a time.
"""
def __init__(self, handle, parser = None):
"""Initialize the iterator.
Arguments:
o handle - A handle with IntelliGenetics entries to iterate through.
o parser - An optional parser to pass the entries through before
returning them. If None, then the raw entry will be returned.
"""
self.handle = File.UndoHandle( handle )
self._reader = IntelliGeneticsReader( self.handle )
self._parser = parser
def next(self):
"""Return the next IntelliGenetics record from the handle.
Will return None if we ran out of records.
"""
data = self._reader.next()
if self._parser is not None:
if data:
dumpfile = open( 'dump', 'w' )
dumpfile.write( data )
dumpfile.close()
return self._parser.parse(File.StringHandle(data))
return data
def __iter__(self):
return iter(self.next, None)
class _Scanner:
"""Start up Martel to do the scanning of the file.
This initialzes the Martel based parser and connects it to a handler
that will generate events for a Feature Consumer.
"""
def __init__(self, debug = 0):
"""Initialize the scanner by setting up our caches.
Creating the parser takes a long time, so we want to cache it
to reduce parsing time.
Arguments:
o debug - The level of debugging that the parser should
display. Level 0 is no debugging, Level 2 displays the most
debugging info (but is much slower). See Martel documentation
for more info on this.
"""
# a listing of all tags we are interested in scanning for
# in the MartelParser
self.interest_tags = ["comment", "title_line", "sequence" ]
# make a parser that returns only the tags we are interested in
expression = Martel.select_names(intelligenetics_format.intelligenetics_record, self.interest_tags)
self._parser = expression.make_parser(debug_level = debug)
def feed(self, handle, consumer):
"""Feeed a set of data into the scanner.
Arguments:
o handle - A handle with the information to parse.
o consumer - The consumer that should be informed of events.
"""
self._parser.setContentHandler( EventGenerator(consumer,
self.interest_tags))
# self._parser.setErrorHandler(handle.ErrorHandler())
self._parser.parseFile(handle)
class _RecordConsumer:
"""Create an IntelliGenetics Record object from scanner generated information.
"""
def __init__(self):
self.data = Record.Record()
def title_line(self, title):
self.data.title = title[ 0 ]
def comment(self, comments ):
for comment in comments:
self.data.comments.append( comment )
def sequence( self, sequences ):
for sequence in sequences:
self.data.sequence.data = self.data.sequence.data + sequence.strip()
class RecordParser:
"""Parse IntelliGenetics files into Record objects
"""
def __init__(self, debug_level = 0):
"""Initialize the parser.
Arguments:
o debug_level - An optional argument that specifies the amount of
debugging information Martel should spit out. By default we have
no debugging info (the fastest way to do things), but if you want
you can set this as high as two and see exactly where a parse fails.
"""
self._scanner = _Scanner(debug_level)
def parse(self, handle):
"""Parse the specified handle into a GenBank record.
"""
self._consumer = _RecordConsumer()
self._scanner.feed(handle, self._consumer)
return self._consumer.data
class IntelliGeneticsReader( Martel.RecordReader.RecordReader ):
def __init__( self, infile ):
Martel.RecordReader.RecordReader.__init__( self, infile )
def next( self ):
infile = self.infile
state = 'COMMENT_STATE'
record = ''
while( state != 'DONE' ):
line = infile.readline()
if( line == '' ):
state = 'DONE'
break
if( line[ 0 ] == ';' ):
if( state == 'SEQUENCE_STATE' ):
state = 'DONE'
infile.saveline( line )
elif( state == 'COMMENT_STATE' ):
record = record + line
else:
if( state == 'COMMENT_STATE' ):
record = record + line
state = 'SEQUENCE_STATE'
elif( state == 'SEQUENCE_STATE' ):
record = record + line
return record
|