Spaces:
No application file
No application file
File size: 25,376 Bytes
b7731cd |
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 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 |
# Copyright 2022 by Michiel de Hoon. All rights reserved.
#
# This file is part of the Biopython distribution and governed by your
# choice of the "Biopython License Agreement" or the "BSD 3-Clause License".
# Please see the LICENSE file that should have been included as part of this
# package.
"""Bio.Align support for Exonerate output format.
This module provides support for Exonerate outputs. Exonerate is a generic
tool for pairwise sequence comparison that allows you to align sequences using
several different models.
Bio.Align.exonerate was tested on the following Exonerate versions and models:
- version: 2.2
- models:
- affine:local - cdna2genome
- coding2coding - est2genome
- genome2genome - ner
- protein2dna - protein2genome
- ungapped - ungapped:translated
Although model testing were not exhaustive, the parser should be able to cope
with all Exonerate models. Please file a bug report if you stumble upon an
unparsable file.
You are expected to use this module via the Bio.Align functions.
"""
import numpy
from Bio.Align import Alignment
from Bio.Align import interfaces
from Bio.Seq import Seq
from Bio.SeqRecord import SeqRecord
class AlignmentWriter(interfaces.AlignmentWriter):
"""Alignment file writer for the Exonerate cigar and vulgar file format."""
fmt = "Exonerate"
def __init__(self, target, fmt="vulgar"):
"""Create an AlignmentWriter object.
Arguments:
- target - output stream or file name
- fmt - write alignments in the vulgar (Verbose Useful Labelled
Gapped Alignment Report) format (fmt="vulgar") or in
the cigar (Compact Idiosyncratic Gapped Alignment Report)
format (fmt="cigar").
Default value is 'vulgar'.
"""
super().__init__(target)
if fmt == "vulgar":
self.format_alignment = self._format_alignment_vulgar
elif fmt == "cigar":
self.format_alignment = self._format_alignment_cigar
else:
raise ValueError(
"argument fmt should be 'vulgar' or 'cigar' (received %s)" % fmt
)
def write_header(self, alignments):
"""Write the header."""
try:
metadata = alignments.metadata
except AttributeError:
commandline = ""
hostname = ""
else:
commandline = metadata.get("Command line", "")
hostname = metadata.get("Hostname", "")
self.stream.write(f"Command line: [{commandline}]\n")
self.stream.write(f"Hostname: [{hostname}]\n")
def write_footer(self):
"""Write the footer."""
self.stream.write("-- completed exonerate analysis\n")
def _format_alignment_cigar(self, alignment):
"""Return a string with a single alignment formatted as a cigar line."""
if not isinstance(alignment, Alignment):
raise TypeError("Expected an Alignment object")
coordinates = alignment.coordinates
target_start = coordinates[0, 0]
target_end = coordinates[0, -1]
query_start = coordinates[1, 0]
query_end = coordinates[1, -1]
steps = numpy.diff(coordinates)
query = alignment.query
target = alignment.target
try:
query_id = query.id
except AttributeError:
query_id = "query"
try:
target_id = target.id
except AttributeError:
target_id = "target"
try:
target_molecule_type = target.annotations["molecule_type"]
except (AttributeError, KeyError):
target_molecule_type = None
if target_molecule_type == "protein":
target_strand = "."
elif target_start <= target_end:
target_strand = "+"
elif target_start > target_end:
target_strand = "-"
steps[0, :] = -steps[0, :]
try:
query_molecule_type = query.annotations["molecule_type"]
except (AttributeError, KeyError):
query_molecule_type = None
if query_molecule_type == "protein":
query_strand = "."
elif query_start <= query_end:
query_strand = "+"
elif query_start > query_end:
query_strand = "-"
steps[1, :] = -steps[1, :]
score = format(alignment.score, "g")
words = [
"cigar:",
query_id,
str(query_start),
str(query_end),
query_strand,
target_id,
str(target_start),
str(target_end),
target_strand,
score,
]
try:
operations = alignment.operations
except AttributeError:
for step in steps.transpose():
target_step, query_step = step
if target_step == query_step:
operation = "M"
step = target_step
elif query_step == 0:
operation = "D" # Deletion
step = target_step
elif target_step == 0:
operation = "I" # Insertion
step = query_step
elif (
target_molecule_type != "protein"
and query_molecule_type == "protein"
):
operation = "M"
step = target_step
elif (
target_molecule_type == "protein"
and query_molecule_type != "protein"
):
operation = "M"
step = query_step
else:
raise ValueError(
"Unexpected step target %d, query %d for molecule type %s, %s"
% (
target_step,
query_step,
target_molecule_type,
query_molecule_type,
)
)
words.append(operation)
words.append(str(step))
else:
for step, operation in zip(steps.transpose(), operations.decode()):
target_step, query_step = step
if operation == "M":
if target_step == query_step:
step = target_step
elif target_step == 3 * query_step:
step = target_step
assert query_molecule_type == "protein"
assert target_molecule_type != "protein"
elif query_step == 3 * target_step:
step = query_step
assert query_molecule_type != "protein"
assert target_molecule_type == "protein"
else:
raise ValueError(
"Unexpected steps target %d, query %s for operation 'M'"
)
elif operation == "5": # 5' splice site
if query_step == 0:
step = target_step
operation = "D"
elif target_step == 0:
step = query_step
operation = "I"
else:
assert query_step == target_step
step = target_step
operation = "M"
elif operation == "N": # Intron
if query_step == 0:
step = target_step
operation = "D"
elif target_step == 0:
step = query_step
operation = "I"
else:
raise ValueError(
"Unexpected intron with steps target %d, query %d"
% (target_step, query_step)
)
elif operation == "3": # 3' splice site
if query_step == 0:
step = target_step
operation = "D"
elif target_step == 0:
step = query_step
operation = "I"
else:
assert query_step == target_step
step = target_step
operation = "M"
elif operation == "C": # Codon
assert target_step == query_step
step = target_step
operation = "M"
elif operation == "D": # Deletion
assert query_step == 0
step = target_step
operation = "D"
elif operation == "I": # Insertion
assert target_step == 0
step = query_step
elif operation == "U": # Non-equivalenced (unaligned) region
if target_step > 0:
operation = "D"
words.append(operation)
words.append(str(target_step))
if query_step > 0:
operation = "I"
words.append(operation)
words.append(str(query_step))
continue
elif operation == "S": # Split codon
if target_step > 0:
operation = "D"
words.append(operation)
words.append(str(target_step))
if query_step > 0:
operation = "I"
words.append(operation)
words.append(str(query_step))
continue
elif operation == "F": # Frame shift
if target_step == 0:
step = query_step
operation = "I"
elif query_step == 0:
step = target_step
operation = "D"
else:
raise ValueError("Expected target step or query step to be 0")
else:
raise ValueError("Unknown operation %s" % operation)
words.append(operation)
words.append(str(step))
line = " ".join(words) + "\n"
return line
def _format_alignment_vulgar(self, alignment):
"""Return a string with a single alignment formatted as one vulgar line."""
if not isinstance(alignment, Alignment):
raise TypeError("Expected an Alignment object")
coordinates = alignment.coordinates
target_start = coordinates[0, 0]
target_end = coordinates[0, -1]
query_start = coordinates[1, 0]
query_end = coordinates[1, -1]
steps = numpy.diff(coordinates)
query = alignment.query
target = alignment.target
try:
query_id = query.id
except AttributeError:
query_id = "query"
try:
target_id = target.id
except AttributeError:
target_id = "target"
try:
target_molecule_type = target.annotations["molecule_type"]
except (AttributeError, KeyError):
target_molecule_type = None
if target_molecule_type == "protein":
target_strand = "."
elif target_start <= target_end:
target_strand = "+"
elif target_start > target_end:
target_strand = "-"
steps[0, :] = -steps[0, :]
try:
query_molecule_type = query.annotations["molecule_type"]
except (AttributeError, KeyError):
query_molecule_type = None
if query_molecule_type == "protein":
query_strand = "."
elif query_start <= query_end:
query_strand = "+"
elif query_start > query_end:
query_strand = "-"
steps[1, :] = -steps[1, :]
score = format(alignment.score, "g")
words = [
"vulgar:",
query_id,
str(query_start),
str(query_end),
query_strand,
target_id,
str(target_start),
str(target_end),
target_strand,
str(score),
]
try:
operations = alignment.operations
except AttributeError:
for step in steps.transpose():
target_step, query_step = step
if target_step == query_step:
operation = "M"
elif query_step == 0:
operation = "G" # Gap; exonerate definition
elif target_step == 0:
operation = "G" # Gap; exonerate definition
elif (
query_molecule_type == "protein"
and target_molecule_type != "protein"
):
operation = "M"
elif (
query_molecule_type != "protein"
and target_molecule_type == "protein"
):
operation = "M"
else:
raise ValueError("Both target and query step are zero")
words.append(operation)
words.append(str(query_step))
words.append(str(target_step))
else:
steps = steps.transpose()
operations = operations.decode()
n = len(operations)
i = 0
while i < n:
target_step, query_step = steps[i]
operation = operations[i]
if operation == "M":
if target_step == query_step:
pass
elif target_step == 3 * query_step:
assert query_molecule_type == "protein"
assert target_molecule_type != "protein"
elif query_step == 3 * target_step:
assert query_molecule_type != "protein"
assert target_molecule_type == "protein"
else:
raise ValueError(
"Unexpected steps target %d, query %d for operation 'M'"
% (target_step, query_step)
)
elif operation == "5": # 5' splice site
assert target_step == 2 or query_step == 2
elif operation == "N": # Intron
operation = "I" # Intron; exonerate definition
assert query_step == 0 or target_step == 0
elif operation == "3": # 3' splice site
assert target_step == 2 or query_step == 2
elif operation == "C": # Codon
assert target_step == query_step
elif operation == "D": # Deletion
assert query_step == 0
operation = "G" # Gap; exonerate definition
elif operation == "I": # Insertion
assert target_step == 0
operation = "G" # Gap; exonerate definition
elif operation == "U": # Non-equivalenced (unaligned) region
if target_step == 0:
assert query_step > 0
i += 1
target_step, dummy = steps[i]
assert dummy == 0
if query_step == 0:
assert target_step > 0
i += 1
dummy, query_step = steps[i]
assert dummy == 0
operation = operations[i]
assert operation == "U"
operation = "N" # Non-equivalenced region; exonerate definition
elif operation == "S": # Split codon
step = target_step
elif operation == "F": # Frame shift
step = target_step
else:
raise ValueError("Unknown operation %s" % operation)
words.append(operation)
words.append(str(query_step))
words.append(str(target_step))
i += 1
line = " ".join(words) + "\n"
return line
class AlignmentIterator(interfaces.AlignmentIterator):
"""Alignment iterator for the Exonerate text, cigar, and vulgar formats.
Each line in the file contains one pairwise alignment, which are loaded
and returned incrementally. Alignment score information such as the number
of matches and mismatches are stored as attributes of each alignment.
"""
fmt = "Exonerate"
def _read_header(self, stream):
self.metadata = {}
self.metadata["Program"] = "exonerate"
line = next(stream)
prefix = "Command line: "
assert line.startswith(prefix)
commandline = line[len(prefix) :].strip()
assert commandline.startswith("[")
assert commandline.endswith("]")
self.metadata["Command line"] = commandline[1:-1]
line = next(stream)
prefix = "Hostname: "
assert line.startswith(prefix)
hostname = line[len(prefix) :].strip()
assert hostname.startswith("[")
assert hostname.endswith("]")
self.metadata["Hostname"] = hostname[1:-1]
@staticmethod
def _parse_cigar(words):
query_id = words[0]
query_start = int(words[1])
query_end = int(words[2])
query_strand = words[3]
target_id = words[4]
target_start = int(words[5])
target_end = int(words[6])
target_strand = words[7]
score = float(words[8])
target_seq = Seq(None, length=target_end)
query_seq = Seq(None, length=query_end)
target = SeqRecord(target_seq, id=target_id, description="")
query = SeqRecord(query_seq, id=query_id, description="")
qs = 0
ts = 0
n = (len(words) - 8) // 2
coordinates = numpy.empty((2, n + 1), int)
coordinates[0, 0] = ts
coordinates[1, 0] = qs
for i, (operation, step) in enumerate(zip(words[9::2], words[10::2])):
step = int(step)
if operation == "M": # match or mismatch
ts += step
qs += step
elif operation == "I": # insertion
if query_strand == "." and target_strand != ".":
qs += step * 3
else:
qs += step
elif operation == "D": # deletion
if target_strand == "." and query_strand != ".":
ts += step * 3
else:
ts += step
else:
raise ValueError("Unknown operation %s in cigar string" % operation)
coordinates[0, i + 1] = ts
coordinates[1, i + 1] = qs
if target_strand == "+":
coordinates[0, :] += target_start
elif target_strand == "-":
coordinates[0, :] = target_start - coordinates[0, :]
elif target_strand == ".": # protein
if query_strand != ".":
# dna to protein alignment; integer division, but round up:
coordinates[0, :] = (coordinates[0, :] + 2) // 3
coordinates[0, :] += target_start
target.annotations["molecule_type"] = "protein"
if query_strand == "+":
coordinates[1, :] += query_start
elif query_strand == "-":
coordinates[1, :] = query_start - coordinates[1, :]
elif query_strand == ".": # protein
if target_strand != ".":
# protein to dna alignment; integer division, but round up:
coordinates[1, :] = -(coordinates[1, :] // -3)
coordinates[1, :] += query_start
query.annotations["molecule_type"] = "protein"
alignment = Alignment([target, query], coordinates)
alignment.score = score
return alignment
@staticmethod
def _parse_vulgar(words):
query_id = words[0]
query_start = int(words[1])
query_end = int(words[2])
query_strand = words[3]
target_id = words[4]
target_start = int(words[5])
target_end = int(words[6])
target_strand = words[7]
score = float(words[8])
target_seq = Seq(None, length=target_end)
query_seq = Seq(None, length=query_end)
target = SeqRecord(target_seq, id=target_id, description="")
query = SeqRecord(query_seq, id=query_id, description="")
ops = words[9::3]
qs = 0
ts = 0
n = (len(words) - 8) // 3 + ops.count("N")
coordinates = numpy.empty((2, n + 1), int)
coordinates[0, 0] = ts
coordinates[1, 0] = qs
operations = bytearray(n)
i = 0
for (operation, query_step, target_step) in zip(
ops, words[10::3], words[11::3]
):
query_step = int(query_step)
target_step = int(target_step)
if operation == "M": # Match
pass
elif operation == "5": # 5' splice site
assert target_step == 2 or query_step == 2
elif operation == "I": # Intron
# use SAM/BAM definitions of operations:
operation = "N"
elif operation == "3": # 3' splice site
assert target_step == 2 or query_step == 2
elif operation == "C": # Codon
assert target_step % 3 == 0
assert query_step % 3 == 0
elif operation == "G": # Gap
# use SAM/BAM definitions of operations:
if query_step == 0:
operation = "D" # Deletion
elif target_step == 0:
operation = "I" # Insertion
else:
raise ValueError(
"Unexpected gap operation with steps %d, %d in vulgar line"
% (query_step, target_step)
)
elif operation == "N": # Non-equivalenced (unaligned) region
operation = "U" # 'N' is alread used for introns in SAM/BAM
if target_step > 0:
ts += target_step
coordinates[0, i + 1] = ts
coordinates[1, i + 1] = qs
operations[i] = ord(operation)
i += 1
if query_step > 0:
qs += query_step
coordinates[0, i + 1] = ts
coordinates[1, i + 1] = qs
operations[i] = ord(operation)
i += 1
continue
elif operation == "S": # Split codon
pass
elif operation == "F": # Frame shift
pass
else:
raise ValueError("Unknown operation %s in vulgar string" % operation)
ts += target_step
qs += query_step
coordinates[0, i + 1] = ts
coordinates[1, i + 1] = qs
operations[i] = ord(operation)
i += 1
if target_strand == "+":
coordinates[0, :] += target_start
elif target_strand == "-":
coordinates[0, :] = target_start - coordinates[0, :]
elif target_strand == ".": # protein
coordinates[0, :] += target_start
target.annotations["molecule_type"] = "protein"
if query_strand == "+":
coordinates[1, :] += query_start
elif query_strand == "-":
coordinates[1, :] = query_start - coordinates[1, :]
elif query_strand == ".": # protein
coordinates[1, :] += query_start
query.annotations["molecule_type"] = "protein"
alignment = Alignment([target, query], coordinates)
alignment.operations = operations
alignment.score = score
return alignment
def _read_next_alignment(self, stream):
for line in stream:
line = line.strip()
if line == "-- completed exonerate analysis":
try:
next(stream)
except StopIteration:
return
raise ValueError(
"Found additional data after 'completed exonerate analysis'; corrupt file?"
)
if line.startswith("vulgar: "):
words = line[8:].split()
alignment = self._parse_vulgar(words)
elif line.startswith("cigar: "):
words = line[7:].split()
alignment = self._parse_cigar(words)
return alignment
raise ValueError(
"Failed to find 'completed exonerate analysis'; truncated file?"
)
|