Package Bio :: Package SearchIO :: Package HmmerIO :: Module hmmer3_text
[hide private]
[frames] | no frames]

Source Code for Module Bio.SearchIO.HmmerIO.hmmer3_text

  1  # Copyright 2012 by Wibowo Arindrarto.  All rights reserved. 
  2  # This code is part of the Biopython distribution and governed by its 
  3  # license.  Please see the LICENSE file that should have been included 
  4  # as part of this package. 
  5   
  6  """Bio.SearchIO parser for HMMER plain text output format.""" 
  7   
  8  import re 
  9   
 10  from Bio._py3k import _as_bytes, _bytes_to_string 
 11  from Bio._utils import read_forward 
 12  from Bio.Alphabet import generic_protein 
 13  from Bio.SearchIO._model import QueryResult, Hit, HSP, HSPFragment 
 14   
 15  from _base import _BaseHmmerTextIndexer 
 16   
 17  __all__ = ['Hmmer3TextParser', 'Hmmer3TextIndexer'] 
 18   
 19   
 20  # precompile regex patterns for faster processing 
 21  # regex for program name capture 
 22  _RE_PROGRAM = re.compile(r'^# (\w*hmm\w+) :: .*$') 
 23  # regex for version string capture 
 24  _RE_VERSION = re.compile(r'# \w+ ([\w+\.]+) .*; http.*$') 
 25  # regex for option string capture 
 26  _RE_OPT = re.compile(r'^# (.+):\s+(.+)$') 
 27  # regex for parsing query id and length, for parsing 
 28  _QRE_ID_LEN_PTN = r'^Query:\s*(.*)\s+\[\w=(\d+)\]' 
 29  _QRE_ID_LEN = re.compile(_QRE_ID_LEN_PTN) 
 30  # regex for hsp validation 
 31  _HRE_VALIDATE = re.compile(r'score:\s(-?\d+\.?\d+)\sbits.*value:\s(.*)') 
 32  # regexes for parsing hsp alignment blocks 
 33  _HRE_ANNOT_LINE = re.compile(r'^(\s+)(.+)\s(\w+)') 
 34  _HRE_ID_LINE = re.compile(r'^(\s+\S+\s+[0-9-]+ )(.+?)(\s+[0-9-]+)') 
 35   
 36   
37 -class Hmmer3TextParser(object):
38 39 """Parser for the HMMER 3.0 text output.""" 40
41 - def __init__(self, handle):
42 self.handle = handle 43 self.line = read_forward(self.handle) 44 self._meta = self._parse_preamble()
45
46 - def __iter__(self):
47 for qresult in self._parse_qresult(): 48 yield qresult
49
50 - def _read_until(self, bool_func):
51 """Reads the file handle until the given function returns True.""" 52 while True: 53 if not self.line or bool_func(self.line): 54 return 55 else: 56 self.line = read_forward(self.handle)
57
58 - def _parse_preamble(self):
59 """Parses HMMER preamble (lines beginning with '#').""" 60 meta = {} 61 # bool flag for storing state ~ whether we are parsing the option 62 # lines or not 63 has_opts = False 64 while True: 65 # no pound sign means we've left the preamble 66 if not self.line.startswith('#'): 67 break 68 # dashes could either mean we are entering or leaving the options 69 # section ~ so it's a switch for the has_opts flag 70 elif '- - -' in self.line: 71 if not has_opts: 72 # if flag is false, that means we're entering opts 73 # so switch the flag accordingly 74 has_opts = True 75 else: 76 # if flag is true, that means we've reached the end of opts 77 # so we can break out of the function 78 break 79 elif not has_opts: 80 # try parsing program 81 regx = re.search(_RE_PROGRAM, self.line) 82 if regx: 83 meta['program'] = regx.group(1) 84 # try parsing version 85 regx = re.search(_RE_VERSION, self.line) 86 if regx: 87 meta['version'] = regx.group(1) 88 elif has_opts: 89 regx = re.search(_RE_OPT, self.line) 90 # if target in regx.group(1), then we store the key as target 91 if 'target' in regx.group(1): 92 meta['target'] = regx.group(2) 93 else: 94 meta[regx.group(1)] = regx.group(2) 95 96 self.line = read_forward(self.handle) 97 98 return meta
99
100 - def _parse_qresult(self):
101 """Parses a HMMER3 query block.""" 102 103 self._read_until(lambda line: line.startswith('Query:')) 104 105 while self.line: 106 107 # get query id and length 108 regx = re.search(_QRE_ID_LEN, self.line) 109 qid = regx.group(1).strip() 110 # store qresult attributes 111 qresult_attrs = { 112 'seq_len': int(regx.group(2)), 113 'program': self._meta.get('program'), 114 'version': self._meta.get('version'), 115 'target': self._meta.get('target'), 116 } 117 118 # get description and accession, if they exist 119 desc = '' # placeholder 120 while not self.line.startswith('Scores for '): 121 self.line = read_forward(self.handle) 122 123 if self.line.startswith('Accession:'): 124 acc = self.line.strip().split(' ', 1)[1] 125 qresult_attrs['accession'] = acc.strip() 126 elif self.line.startswith('Description:'): 127 desc = self.line.strip().split(' ', 1)[1] 128 qresult_attrs['description'] = desc.strip() 129 130 # parse the query hits 131 while self.line and '//' not in self.line: 132 hit_list = self._parse_hit(qid) 133 # read through the statistics summary 134 # TODO: parse and store this information? 135 if self.line.startswith('Internal pipeline'): 136 while self.line and '//' not in self.line: 137 self.line = read_forward(self.handle) 138 139 # create qresult, set its attributes and yield 140 qresult = QueryResult(qid, hits=hit_list) 141 for attr, value in qresult_attrs.items(): 142 setattr(qresult, attr, value) 143 yield qresult 144 self.line = read_forward(self.handle)
145
146 - def _parse_hit(self, qid):
147 """Parses a HMMER3 hit block, beginning with the hit table.""" 148 # get to the end of the hit table delimiter and read one more line 149 self._read_until(lambda line: 150 line.startswith(' ------- ------ -----')) 151 self.line = read_forward(self.handle) 152 153 # assume every hit is in inclusion threshold until the inclusion 154 # threshold line is encountered 155 is_included = True 156 157 # parse the hit table 158 hit_attr_list = [] 159 while True: 160 if not self.line: 161 return [] 162 elif self.line.startswith(' ------ inclusion'): 163 is_included = False 164 self.line = read_forward(self.handle) 165 # if there are no hits, then there are no hsps 166 # so we forward-read until 'Internal pipeline..' 167 elif self.line.startswith(' [No hits detected that satisfy ' 168 'reporting'): 169 while True: 170 self.line = read_forward(self.handle) 171 if self.line.startswith('Internal pipeline'): 172 assert len(hit_attr_list) == 0 173 return [] 174 elif self.line.startswith('Domain annotation for each '): 175 hit_list = self._create_hits(hit_attr_list, qid) 176 return hit_list 177 # entering hit results row 178 # parse the columns into a list 179 row = filter(None, self.line.strip().split(' ')) 180 # join the description words if it's >1 word 181 if len(row) > 10: 182 row[9] = ' '.join(row[9:]) 183 # if there's no description, set it to an empty string 184 elif len(row) < 10: 185 row.append('') 186 assert len(row) == 10 187 # create the hit object 188 hit_attrs = { 189 'id': row[8], 190 'query_id': qid, 191 'evalue': float(row[0]), 192 'bitscore': float(row[1]), 193 'bias': float(row[2]), 194 # row[3:6] is not parsed, since the info is available 195 # at the HSP level 196 'domain_exp_num': float(row[6]), 197 'domain_obs_num': int(row[7]), 198 'description': row[9], 199 'is_included': is_included, 200 } 201 hit_attr_list.append(hit_attrs) 202 203 self.line = read_forward(self.handle)
204
205 - def _create_hits(self, hit_attrs, qid):
206 """Parses a HMMER3 hsp block, beginning with the hsp table.""" 207 # read through until the beginning of the hsp block 208 self._read_until(lambda line: line.startswith('Internal pipeline') 209 or line.startswith('>>')) 210 211 # start parsing the hsp block 212 hit_list = [] 213 while True: 214 if self.line.startswith('Internal pipeline'): 215 # by this time we should've emptied the hit attr list 216 assert len(hit_attrs) == 0 217 return hit_list 218 assert self.line.startswith('>>') 219 hid, hdesc = self.line[len('>> '):].split(' ', 1) 220 221 # read through the hsp table header and move one more line 222 self._read_until(lambda line: 223 line.startswith(' --- ------ ----- --------') or \ 224 line.startswith(' [No individual domains')) 225 self.line = read_forward(self.handle) 226 227 # parse the hsp table for the current hit 228 hsp_list = [] 229 while True: 230 # break out of hsp parsing if there are no hits, it's the last hsp 231 # or it's the start of a new hit 232 if self.line.startswith(' [No targets detected that satisfy') or \ 233 self.line.startswith(' [No individual domains') or \ 234 self.line.startswith('Internal pipeline statistics summary:') or \ 235 self.line.startswith(' Alignments for each domain:') or \ 236 self.line.startswith('>>'): 237 238 hit_attr = hit_attrs.pop(0) 239 hit = Hit(hsp_list) 240 for attr, value in hit_attr.items(): 241 setattr(hit, attr, value) 242 hit_list.append(hit) 243 break 244 245 parsed = filter(None, self.line.strip().split(' ')) 246 assert len(parsed) == 16 247 # parsed column order: 248 # index, is_included, bitscore, bias, evalue_cond, evalue 249 # hmmfrom, hmmto, query_ends, hit_ends, alifrom, alito, 250 # envfrom, envto, acc_avg 251 frag = HSPFragment(hid, qid) 252 # HMMER3 alphabets are always protein alphabets 253 frag.alphabet = generic_protein 254 # depending on whether the program is hmmsearch, hmmscan, or phmmer 255 # {hmm,ali}{from,to} can either be hit_{from,to} or query_{from,to} 256 # for hmmscan, hit is the hmm profile, query is the sequence 257 if self._meta.get('program') == 'hmmscan': 258 # adjust 'from' and 'to' coordinates to 0-based ones 259 frag.hit_start = int(parsed[6]) - 1 260 frag.hit_end = int(parsed[7]) 261 frag.query_start = int(parsed[9]) - 1 262 frag.query_end = int(parsed[10]) 263 elif self._meta.get('program') in ['hmmsearch', 'phmmer']: 264 # adjust 'from' and 'to' coordinates to 0-based ones 265 frag.hit_start = int(parsed[9]) - 1 266 frag.hit_end = int(parsed[10]) 267 frag.query_start = int(parsed[6]) - 1 268 frag.query_end = int(parsed[7]) 269 # strand is always 0, since HMMER now only handles protein 270 frag.hit_strand = frag.query_strand = 0 271 272 hsp = HSP([frag]) 273 hsp.domain_index = int(parsed[0]) 274 hsp.is_included = parsed[1] == '!' 275 hsp.bitscore = float(parsed[2]) 276 hsp.bias = float(parsed[3]) 277 hsp.evalue_cond = float(parsed[4]) 278 hsp.evalue = float(parsed[5]) 279 if self._meta.get('program') == 'hmmscan': 280 # adjust 'from' and 'to' coordinates to 0-based ones 281 hsp.hit_endtype = parsed[8] 282 hsp.query_endtype = parsed[11] 283 elif self._meta.get('program') in ['hmmsearch', 'phmmer']: 284 # adjust 'from' and 'to' coordinates to 0-based ones 285 hsp.hit_endtype = parsed[11] 286 hsp.query_endtype = parsed[8] 287 # adjust 'from' and 'to' coordinates to 0-based ones 288 hsp.env_start = int(parsed[12]) - 1 289 hsp.env_end = int(parsed[13]) 290 hsp.env_endtype = parsed[14] 291 hsp.acc_avg = float(parsed[15]) 292 293 hsp_list.append(hsp) 294 self.line = read_forward(self.handle) 295 296 # parse the hsp alignments 297 if self.line.startswith(' Alignments for each domain:'): 298 self._parse_aln_block(hid, hit.hsps)
299
300 - def _parse_aln_block(self, hid, hsp_list):
301 """Parses a HMMER3 HSP alignment block.""" 302 self.line = read_forward(self.handle) 303 dom_counter = 0 304 while True: 305 if self.line.startswith('>>') or \ 306 self.line.startswith('Internal pipeline'): 307 return hsp_list 308 assert self.line.startswith(' == domain %i' % (dom_counter + 1)) 309 # alias hsp to local var 310 # but note that we're still changing the attrs of the actual 311 # hsp inside the qresult as we're not creating a copy 312 frag = hsp_list[dom_counter][0] 313 # XXX: should we validate again here? regex is expensive.. 314 #regx = re.search(_HRE_VALIDATE, self.line) 315 #assert hsp.bitscore == float(regx.group(1)) 316 #assert hsp.evalue_cond == float(regx.group(2)) 317 hmmseq = '' 318 aliseq = '' 319 annot = {} 320 self.line = self.handle.readline() 321 322 # parse all the alignment blocks in the hsp 323 while True: 324 325 regx = None 326 327 # check for hit or query line 328 # we don't check for the hit or query id specifically 329 # to anticipate special cases where query id == hit id 330 regx = re.search(_HRE_ID_LINE, self.line) 331 if regx: 332 # the first hit/query self.line we encounter is the hmmseq 333 if len(hmmseq) == len(aliseq): 334 hmmseq += regx.group(2) 335 # and for subsequent self.lines, len(hmmseq) is either 336 # > or == len(aliseq) 337 elif len(hmmseq) > len(aliseq): 338 aliseq += regx.group(2) 339 assert len(hmmseq) >= len(aliseq) 340 # check for start of new domain 341 elif self.line.startswith(' == domain') or \ 342 self.line.startswith('>>') or \ 343 self.line.startswith('Internal pipeline'): 344 frag.aln_annotation = annot 345 if self._meta.get('program') == 'hmmscan': 346 frag.hit = hmmseq 347 frag.query = aliseq 348 elif self._meta.get('program') in ['hmmsearch', 'phmmer']: 349 frag.hit = aliseq 350 frag.query = hmmseq 351 dom_counter += 1 352 hmmseq = '' 353 aliseq = '' 354 annot = {} 355 break 356 # otherwise check if it's an annotation line and parse it 357 # len(hmmseq) is only != len(aliseq) when the cursor is parsing 358 # the homology character. Since we're not parsing that, we 359 # check for when the condition is False (i.e. when it's ==) 360 elif len(hmmseq) == len(aliseq): 361 regx = re.search(_HRE_ANNOT_LINE, self.line) 362 if regx: 363 annot_name = regx.group(3) 364 if annot_name in annot: 365 annot[annot_name] += regx.group(2) 366 else: 367 annot[annot_name] = regx.group(2) 368 369 self.line = self.handle.readline()
370 371
372 -class Hmmer3TextIndexer(_BaseHmmerTextIndexer):
373 374 """Indexer class for HMMER plain text output.""" 375 376 _parser = Hmmer3TextParser 377 qresult_start = _as_bytes('Query: ') 378 qresult_end = _as_bytes('//') 379
380 - def __iter__(self):
381 handle = self._handle 382 handle.seek(0) 383 start_offset = handle.tell() 384 regex_id = re.compile(_as_bytes(_QRE_ID_LEN_PTN)) 385 386 while True: 387 line = read_forward(handle) 388 end_offset = handle.tell() 389 390 if line.startswith(self.qresult_start): 391 regx = re.search(regex_id, line) 392 qresult_key = regx.group(1).strip() 393 # qresult start offset is the offset of this line 394 # (starts with the start mark) 395 start_offset = end_offset - len(line) 396 elif line.startswith(self.qresult_end): 397 yield _bytes_to_string(qresult_key), start_offset, 0 398 start_offset = end_offset 399 elif not line: 400 break
401 402 # if not used as a module, run the doctest 403 if __name__ == "__main__": 404 from Bio._utils import run_doctest 405 run_doctest() 406