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 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262
|
# Copyright 2009-2013 by Peter Cock. 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.
"""SeqFeature related tests for SeqRecord objects from Bio.SeqIO.
Initially this takes matched tests of GenBank and FASTA files from the NCBI
and confirms they are consistent using our different parsers.
"""
from __future__ import print_function
import os
import unittest
from Bio._py3k import StringIO
from Bio._py3k import _universal_read_mode
from Bio.Alphabet import generic_dna, generic_rna, generic_protein
from Bio import SeqIO
from Bio.Data.CodonTable import TranslationError
from Bio.Seq import Seq, UnknownSeq, MutableSeq, reverse_complement
from Bio.SeqRecord import SeqRecord
from Bio.SeqFeature import SeqFeature, FeatureLocation, CompoundLocation
from Bio.SeqFeature import ExactPosition, BeforePosition, AfterPosition
from Bio.SeqFeature import OneOfPosition, WithinPosition, UnknownPosition
from Bio.SeqIO.InsdcIO import _insdc_location_string
def _get_location_string(feature, record_length):
return _insdc_location_string(feature.location, record_length)
# Top level function as this makes it easier to use for debugging:
def write_read(filename, in_format="gb", out_formats=("gb", "embl", "imgt")):
for out_format in out_formats:
gb_records = list(SeqIO.parse(filename, in_format))
# Write it out...
handle = StringIO()
SeqIO.write(gb_records, handle, out_format)
handle.seek(0)
# Now load it back and check it agrees,
gb_records2 = list(SeqIO.parse(handle, out_format))
compare_records(gb_records, gb_records2)
def compare_record(old, new, expect_minor_diffs=False):
# Note the name matching is a bit fuzzy
if not expect_minor_diffs \
and old.id != new.id and old.name != new.name \
and (old.id not in new.id) and (new.id not in old.id) \
and (old.id.replace(" ", "_") != new.id.replace(" ", "_")):
raise ValueError("'%s' or '%s' vs '%s' or '%s' records"
% (old.id, old.name, new.id, new.name))
if len(old.seq) != len(new.seq):
raise ValueError("%i vs %i" % (len(old.seq), len(new.seq)))
if isinstance(old.seq, UnknownSeq) \
and isinstance(new.seq, UnknownSeq):
# Jython didn't like us comparing the string of very long
# UnknownSeq object (out of heap memory error)
if old.seq._character.upper() != new.seq._character:
raise ValueError("%s vs %s" % (repr(old.seq), repr(new.seq)))
elif str(old.seq).upper() != str(new.seq).upper():
if len(old.seq) < 200:
raise ValueError("'%s' vs '%s'" % (old.seq, new.seq))
else:
raise ValueError("'%s...' vs '%s...'" % (old.seq[:100], new.seq[:100]))
if old.features and new.features:
if not compare_features(old.features, new.features):
return False
# Just insist on at least one word in common:
if (old.description or new.description) \
and not set(old.description.split()).intersection(new.description.split()):
raise ValueError("%s versus %s"
% (repr(old.description), repr(new.description)))
# This only checks common annotation
# Would a white list be easier?
for key in set(old.annotations).intersection(new.annotations):
if key in ["data_file_division", "accessions"]:
# TODO - These are not yet supported on output, or
# have other complications (e.g. different number of accessions
# allowed in various file formats)
continue
if key == "comment":
# Ignore whitespace
if old.annotations[key].split() != new.annotations[key].split():
raise ValueError("Annotation mis-match for comment:\n%s\n%s"
% (old.annotations[key], new.annotations[key]))
continue
if key == "references":
if expect_minor_diffs:
# TODO - Implement EMBL output of references
continue
assert len(old.annotations[key]) == len(new.annotations[key])
for r1, r2 in zip(old.annotations[key], new.annotations[key]):
assert r1.title == r2.title
assert r1.authors == r2.authors, \
"Old: '%s'\nNew: '%s'" % (r1.authors, r2.authors)
assert r1.journal == r2.journal
if r1.consrtm and r2.consrtm:
# Not held in EMBL files
assert r1.consrtm == r2.consrtm
if r1.medline_id and r2.medline_id:
# Not held in EMBL files
assert r1.medline_id == r2.medline_id
assert r1.pubmed_id == r2.pubmed_id
continue
if repr(old.annotations[key]) != repr(new.annotations[key]):
raise ValueError("Annotation mis-match for %s:\n%s\n%s"
% (key, old.annotations[key], new.annotations[key]))
return True
def compare_records(old_list, new_list, expect_minor_diffs=False):
"""Check two lists of SeqRecords agree, raises a ValueError if mismatch."""
if len(old_list) != len(new_list):
raise ValueError("%i vs %i records" % (len(old_list), len(new_list)))
for old, new in zip(old_list, new_list):
if not compare_record(old, new, expect_minor_diffs):
return False
return True
def compare_feature(old, new):
"""Check two SeqFeatures agree."""
if old.type != new.type:
raise ValueError("Type %s versus %s" % (repr(old.type), repr(new.type)))
if old.location.nofuzzy_start != new.location.nofuzzy_start \
or old.location.nofuzzy_end != new.location.nofuzzy_end:
raise ValueError("%s versus %s:\n%s\nvs:\n%s"
% (old.location, new.location, repr(old), repr(new)))
if old.strand is not None and old.strand != new.strand:
raise ValueError("Different strand:\n%s\nvs:\n%s" % (repr(old), repr(new)))
if old.ref != new.ref:
raise ValueError("Different ref:\n%s\nvs:\n%s" % (repr(old), repr(new)))
if old.ref_db != new.ref_db:
raise ValueError("Different ref_db:\n%s\nvs:\n%s" % (repr(old), repr(new)))
if old.location_operator != new.location_operator:
raise ValueError("Different location_operator:\n%s\nvs:\n%s" % (repr(old), repr(new)))
if old.location.start != new.location.start \
or str(old.location.start) != str(new.location.start):
raise ValueError("Start %s versus %s:\n%s\nvs:\n%s"
% (old.location.start, new.location.start, repr(old), repr(new)))
if old.location.end != new.location.end \
or str(old.location.end) != str(new.location.end):
raise ValueError("End %s versus %s:\n%s\nvs:\n%s"
% (old.location.end, new.location.end, repr(old), repr(new)))
# This only checks key shared qualifiers
# Would a white list be easier?
# for key in ["name","gene","translation","codon_table","codon_start","locus_tag"]:
for key in set(old.qualifiers).intersection(new.qualifiers):
if key in ["db_xref", "protein_id", "product", "note"]:
# EMBL and GenBank files are use different references/notes/etc
continue
if old.qualifiers[key] != new.qualifiers[key]:
raise ValueError("Qualifier mis-match for %s:\n%s\n%s"
% (key, old.qualifiers[key], new.qualifiers[key]))
return True
def compare_features(old_list, new_list):
"""Check two lists of SeqFeatures agree, raises a ValueError if mismatch."""
if len(old_list) != len(new_list):
raise ValueError("%i vs %i features" % (len(old_list), len(new_list)))
for old, new in zip(old_list, new_list):
# This assumes they are in the same order
if not compare_feature(old, new):
return False
return True
def make_join_feature(f_list, ftype="misc_feature"):
# NOTE - Does NOT reorder the sub-features
if len(set(f.strand for f in f_list)) == 1:
strand = f_list[0].strand
else:
strand = None
for f in f_list:
f.type = ftype
if strand == -1:
# All reverse strand.
# Put into biological order for CompoundLocation
c_loc = CompoundLocation([f.location for f in f_list[::-1]])
else:
# All forward, or mixed strand
c_loc = CompoundLocation([f.location for f in f_list])
return SeqFeature(c_loc, ftype)
# Prepare a single GenBank record with one feature with a %s place holder for
# the feature location [leaves the source feature in place]
with open("GenBank/iro.gb", _universal_read_mode) as handle:
gbk_template = handle.read()
gbk_template = gbk_template.replace(' gene 341..756\n'
' /gene="FTCD"\n',
' misc_feature %s\n'
' /note="Test case"\n')
gbk_template = gbk_template.replace(' exon 341..384\n'
' /gene="FTCD"\n'
' /number=1\n', '')
gbk_template = gbk_template.replace(' intron 385..617\n'
' /gene="FTCD"\n'
' /number=1\n', '')
gbk_template = gbk_template.replace(' exon 618..756\n'
' /gene="FTCD"\n'
' /number=2\n', '')
assert len(gbk_template) == 4445
assert gbk_template.count("%") == 1, gbk_template
class GenBankLocations(unittest.TestCase):
"""Tests for parsing GenBank feature locations."""
def check_loc(self, expected_location_obj, input_location_str, round_trip=True):
rec = SeqIO.read(StringIO(gbk_template % input_location_str), "gb")
self.assertEqual(len(rec.features), 2)
self.assertEqual(rec.features[0].type, "source")
self.assertEqual(rec.features[1].type, "misc_feature")
# TODO - Do we have object equality defined?
self.assertEqual(str(expected_location_obj), str(rec.features[1].location))
if round_trip:
self.assertEqual(input_location_str, _get_location_string(rec.features[1], 99999))
def test_rev_comp_styles(self):
# These two are equivalent locations
ncbi_str = "complement(join(84..283,1149..1188))"
embl_str = "join(complement(1149..1188),complement(84..283))"
exon1 = FeatureLocation(1148, 1188, strand=-1)
exon2 = FeatureLocation(83, 283, strand=-1)
expected_loc = exon1 + exon2
self.check_loc(expected_loc, ncbi_str)
self.check_loc(expected_loc, embl_str, round_trip=False)
# TODO self.assertEqual(ncbi_str, _get_location_string(loc, ...))
def test_mixed_strand(self):
# Trans-spliced example from NC_000932
loc_str = "join(complement(69611..69724),139856..140087,140625..140650)"
exon1 = FeatureLocation(69610, 69724, strand=-1)
exon2 = FeatureLocation(139855, 140087, strand=+1)
exon3 = FeatureLocation(140624, 140650, strand=+1)
expected_loc = exon1 + exon2 + exon3
self.check_loc(expected_loc, loc_str)
# Made up example putting reverse-complement exon in middle,
loc_str = "join(69611..69724,complement(139856..140087),140625..140650)"
exon1 = FeatureLocation(69610, 69724, strand=+1)
exon2 = FeatureLocation(139855, 140087, strand=-1)
exon3 = FeatureLocation(140624, 140650, strand=+1)
expected_loc = exon1 + exon2 + exon3
self.check_loc(expected_loc, loc_str)
# Made up example putting reverse-complement exon at end,
loc_str = "join(69611..69724,139856..140087,complement(140625..140650))"
exon1 = FeatureLocation(69610, 69724, strand=+1)
exon2 = FeatureLocation(139855, 140087, strand=+1)
exon3 = FeatureLocation(140624, 140650, strand=-1)
expected_loc = exon1 + exon2 + exon3
self.check_loc(expected_loc, loc_str)
# Another made up example
loc_str = "join(complement(69611..69724),139856..140087,complement(140625..140650))"
exon1 = FeatureLocation(69610, 69724, strand=-1)
exon2 = FeatureLocation(139855, 140087, strand=+1)
exon3 = FeatureLocation(140624, 140650, strand=-1)
expected_loc = exon1 + exon2 + exon3
self.check_loc(expected_loc, loc_str)
class SeqFeatureExtractionWritingReading(unittest.TestCase):
"""Tests for SeqFeature sequence extract method, writing, and reading."""
def check(self, parent_seq, feature, answer_str, location_str):
self.assertEqual(location_str,
_get_location_string(feature, len(parent_seq)))
new = feature.extract(parent_seq)
self.assertTrue(isinstance(new, Seq))
self.assertEqual(str(new), answer_str)
new = feature.extract(str(parent_seq))
self.assertTrue(isinstance(new, str))
self.assertEqual(new, answer_str)
new = feature.extract(parent_seq.tomutable())
self.assertTrue(isinstance(new, Seq)) # Not MutableSeq!
self.assertEqual(str(new), answer_str)
new = feature.extract(UnknownSeq(len(parent_seq), parent_seq.alphabet))
self.assertTrue(isinstance(new, UnknownSeq))
self.assertEqual(len(new), len(answer_str))
if _get_location_string(feature, 1326) != location_str:
# This is to avoid issues with the N^1 between feature which only
# makes sense at the end of the sequence
return
# This template is DNA, but that will still be OK for protein features
# as they have no strand information... but see below for strand fun
rec = SeqIO.read(StringIO(gbk_template % location_str), "gb")
self.assertEqual(1326, len(rec))
self.assertEqual(2, len(rec.features))
self.assertEqual(rec.features[0].type, "source")
self.assertEqual(rec.features[1].type, "misc_feature")
new_f = rec.features[1]
self.assertEqual(location_str,
_get_location_string(new_f, 1326))
feature.type = "misc_feature" # hack as may not be misc_feature
if not feature.strand:
feature.strand = new_f.strand # hack as above
self.assertEqual(feature.strand, new_f.strand)
self.assertTrue(compare_feature(feature, new_f))
# Some feature method tests
parent = "ACGT" * 250
s = feature.extract(parent)
self.assertEqual(len(feature), len(s))
for i in feature:
self.assertTrue(i in feature)
self.assertEqual(set(feature),
set(i for i in range(1000) if i in feature))
if feature.strand == +1:
self.assertEqual(s, "".join(parent[i] for i in feature))
if len(feature):
self.assertEqual(feature.location.start, min(feature.location))
self.assertEqual(feature.location.end, max(feature.location) + 1)
self.assertTrue(len(feature) <= feature.location.end - feature.location.start)
def test_simple_rna(self):
"""Feature on RNA (simple, default strand)"""
s = Seq("GAUCRYWSMKHBVDN", generic_rna)
f = SeqFeature(FeatureLocation(5, 10))
self.assertEqual(f.strand, None)
self.assertEqual(f.location.strand, None)
self.check(s, f, "YWSMK", "6..10")
def test_simple_dna(self):
"""Feature on DNA (simple, default strand)"""
s = Seq("GATCRYWSMKHBVDN", generic_dna)
f = SeqFeature(FeatureLocation(5, 10))
self.check(s, f, "YWSMK", "6..10")
def test_single_letter_dna(self):
"""Feature on DNA (single letter, default strand)"""
s = Seq("GATCRYWSMKHBVDN", generic_dna)
f = SeqFeature(FeatureLocation(5, 6))
self.check(s, f, "Y", "6")
def test_zero_len_dna(self):
"""Feature on DNA (between location, zero length, default strand)"""
s = Seq("GATCRYWSMKHBVDN", generic_dna)
f = SeqFeature(FeatureLocation(5, 5))
self.check(s, f, "", "5^6")
def test_zero_len_dna_end(self):
"""Feature on DNA (between location at end, zero length, default strand)"""
s = Seq("GATCRYWSMKHBVDN", generic_dna)
f = SeqFeature(FeatureLocation(15, 15))
self.check(s, f, "", "15^1")
def test_simple_dna_strand0(self):
"""Feature on DNA (simple, strand 0)"""
s = Seq("GATCRYWSMKHBVDN", generic_dna)
f = SeqFeature(FeatureLocation(5, 10), strand=0)
self.check(s, f, "YWSMK", "6..10")
def test_simple_dna_strand_none(self):
"""Feature on DNA (simple, strand None)"""
s = Seq("GATCRYWSMKHBVDN", generic_dna)
f = SeqFeature(FeatureLocation(5, 10), strand=None)
self.check(s, f, "YWSMK", "6..10")
def test_simple_dna_strand1(self):
"""Feature on DNA (simple, strand +1)"""
s = Seq("GATCRYWSMKHBVDN", generic_dna)
f = SeqFeature(FeatureLocation(5, 10), strand=1)
self.assertEqual(f.strand, +1)
self.assertEqual(f.location.strand, +1)
self.check(s, f, "YWSMK", "6..10")
def test_simple_dna_strand_minus(self):
"""Feature on DNA (simple, strand -1)"""
s = Seq("GATCRYWSMKHBVDN", generic_dna)
f = SeqFeature(FeatureLocation(5, 10), strand=-1)
self.assertEqual(f.strand, -1)
self.assertEqual(f.location.strand, -1)
self.check(s, f, "MKSWR", "complement(6..10)")
def test_simple_dna_join(self):
"""Feature on DNA (join, strand +1)"""
s = Seq("GATCRYWSMKHBVDN", generic_dna)
f1 = SeqFeature(FeatureLocation(5, 10), strand=1)
f2 = SeqFeature(FeatureLocation(12, 15), strand=1)
f = make_join_feature([f1, f2])
self.check(s, f, "YWSMKVDN", "join(6..10,13..15)")
def test_simple_dna_join_strand_minus(self):
"""Feature on DNA (join, strand -1)"""
s = Seq("AAAAACCCCCTTTTTGGGGG", generic_dna)
f1 = SeqFeature(FeatureLocation(5, 10), strand=-1)
f2 = SeqFeature(FeatureLocation(12, 15), strand=-1)
f = make_join_feature([f1, f2])
self.check(s, f, reverse_complement("CCCCC" + "TTT"),
"complement(join(6..10,13..15))")
def test_simple_dna_join_before(self):
"""Feature on DNA (join, strand -1, before position)"""
s = Seq("AAAAACCCCCTTTTTGGGGG", generic_dna)
f1 = SeqFeature(FeatureLocation(BeforePosition(5), 10), strand=-1)
f2 = SeqFeature(FeatureLocation(12, 15), strand=-1)
f = make_join_feature([f1, f2])
self.check(s, f, reverse_complement("CCCCC" + "TTT"),
"complement(join(<6..10,13..15))")
def test_simple_dna_join_after(self):
"""Feature on DNA (join, strand -1, after position)"""
s = Seq("AAAAACCCCCTTTTTGGGGG", generic_dna)
f1 = SeqFeature(FeatureLocation(5, 10), strand=-1)
f2 = SeqFeature(FeatureLocation(12, AfterPosition(15)), strand=-1)
f = make_join_feature([f1, f2])
self.check(s, f, reverse_complement("CCCCC" + "TTT"),
"complement(join(6..10,13..>15))")
def test_mixed_strand_dna_join(self):
"""Feature on DNA (join, mixed strand)"""
s = Seq("AAAAACCCCCTTTTTGGGGG", generic_dna)
f1 = SeqFeature(FeatureLocation(5, 10), strand=+1)
f2 = SeqFeature(FeatureLocation(12, 15), strand=-1)
f = make_join_feature([f1, f2])
self.check(s, f, "CCCCC" + reverse_complement("TTT"),
"join(6..10,complement(13..15))")
def test_mixed_strand_dna_multi_join(self):
"""Feature on DNA (multi-join, mixed strand)"""
s = Seq("AAAAACCCCCTTTTTGGGGG", generic_dna)
f1 = SeqFeature(FeatureLocation(5, 10), strand=+1)
f2 = SeqFeature(FeatureLocation(12, 15), strand=-1)
f3 = SeqFeature(FeatureLocation(BeforePosition(0), 5), strand=+1)
f = make_join_feature([f1, f2, f3])
self.check(s, f, "CCCCC" + reverse_complement("TTT") + "AAAAA",
"join(6..10,complement(13..15),<1..5)")
def test_protein_simple(self):
"""Feature on protein (simple)"""
s = Seq("ABCDEFGHIJKLMNOPQRSTUVWXYZ", generic_protein)
f = SeqFeature(FeatureLocation(5, 10))
self.check(s, f, "FGHIJ", "6..10")
def test_protein_join(self):
"""Feature on protein (join)"""
s = Seq("ABCDEFGHIJKLMNOPQRSTUVWXYZ", generic_protein)
f1 = SeqFeature(FeatureLocation(5, 10))
f2 = SeqFeature(FeatureLocation(15, 20))
f = make_join_feature([f1, f2])
self.check(s, f, "FGHIJ" + "PQRST", "join(6..10,16..20)")
def test_protein_join_fuzzy(self):
"""Feature on protein (fuzzy join)"""
s = Seq("ABCDEFGHIJKLMNOPQRSTUVWXYZ", generic_protein)
f1 = SeqFeature(FeatureLocation(BeforePosition(5), 10))
f2 = SeqFeature(FeatureLocation(OneOfPosition(15, (ExactPosition(15),
ExactPosition(16))),
AfterPosition(20)))
f = make_join_feature([f1, f2])
self.check(s, f, "FGHIJ" + "PQRST", "join(<6..10,one-of(16,17)..>20)")
def test_protein_multi_join(self):
"""Feature on protein (multi-join)"""
s = Seq("ABCDEFGHIJKLMNOPQRSTUVWXYZ", generic_protein)
f1 = SeqFeature(FeatureLocation(1, 2))
f2 = SeqFeature(FeatureLocation(8, 9))
f3 = SeqFeature(FeatureLocation(14, 16))
f4 = SeqFeature(FeatureLocation(24, 25))
f5 = SeqFeature(FeatureLocation(19, 20))
f6 = SeqFeature(FeatureLocation(7, 8))
f7 = SeqFeature(FeatureLocation(14, 15))
f8 = SeqFeature(FeatureLocation(13, 14))
f = make_join_feature([f1, f2, f3, f4, f5, f6, f7, f8])
self.check(s, f, "BIOPYTHON", "join(2,9,15..16,25,20,8,15,14)")
def test_protein_between(self):
"""Feature on protein (between location, zero length)"""
s = Seq("ABCDEFGHIJKLMNOPQRSTUVWXYZ", generic_protein)
f = SeqFeature(FeatureLocation(5, 5))
self.check(s, f, "", "5^6")
def test_protein_oneof(self):
"""Feature on protein (one-of positions)"""
s = Seq("ABCDEFGHIJKLMNOPQRSTUVWXYZ", generic_protein)
start = OneOfPosition(5, (ExactPosition(5), ExactPosition(7)))
end = OneOfPosition(11, (ExactPosition(10), ExactPosition(11)))
f = SeqFeature(FeatureLocation(start, 10))
self.check(s, f, "FGHIJ", "one-of(6,8)..10")
f = SeqFeature(FeatureLocation(start, end))
self.check(s, f, "FGHIJK", "one-of(6,8)..one-of(10,11)")
f = SeqFeature(FeatureLocation(5, end))
self.check(s, f, "FGHIJK", "6..one-of(10,11)")
class SeqFeatureCreation(unittest.TestCase):
"""Test basic creation of SeqFeatures.
"""
def test_qualifiers(self):
"""Pass in qualifiers to SeqFeatures.
"""
f = SeqFeature(FeatureLocation(10, 20), strand=+1, type="CDS")
self.assertEqual(f.qualifiers, {})
f = SeqFeature(FeatureLocation(10, 20), strand=+1, type="CDS",
qualifiers={"test": ["a test"]})
self.assertEqual(f.qualifiers["test"], ["a test"])
class FeatureWriting(unittest.TestCase):
def setUp(self):
self.record = SeqRecord(Seq("ACGT" * 100, generic_dna),
id="Test", name="Test", description="Test")
def write_read_check(self, format):
handle = StringIO()
SeqIO.write([self.record], handle, format)
handle.seek(0)
record2 = SeqIO.read(handle, format)
compare_record(self.record, record2)
def write_read_checks(self, formats=("gb", "embl", "imgt")):
for f in formats:
self.write_read_check(f)
def test_exact(self):
"""GenBank/EMBL write/read simple exact locations."""
# Note we don't have to explicitly give an ExactPosition object,
# an integer will also work:
f = SeqFeature(FeatureLocation(10, 20), strand=+1, type="CDS")
self.assertEqual(_get_location_string(f, 100),
"11..20")
self.assertEqual(_get_location_string(f._flip(20), 20),
"complement(1..10)")
self.assertEqual(_get_location_string(f._flip(100), 100),
"complement(81..90)")
self.assertEqual(f._flip(100).strand, -1)
self.record.features.append(f)
f = SeqFeature(FeatureLocation(30, 40), strand=-1, type="CDS")
self.assertEqual(_get_location_string(f, 100),
"complement(31..40)")
self.assertEqual(_get_location_string(f._flip(40), 40),
"1..10")
self.assertEqual(_get_location_string(f._flip(100), 100),
"61..70")
self.assertEqual(f._flip(100).strand, +1)
self.record.features.append(f)
f = SeqFeature(FeatureLocation(ExactPosition(50), ExactPosition(60)),
strand=+1, type="CDS")
self.assertEqual(_get_location_string(f, 100),
"51..60")
self.assertEqual(_get_location_string(f._flip(60), 60),
"complement(1..10)")
self.assertEqual(_get_location_string(f._flip(100), 100),
"complement(41..50)")
self.assertEqual(f._flip(100).strand, -1)
self.record.features.append(f)
self.write_read_checks()
# The write/check won't work on strandless features due to the
# limitations of the GenBank (and EMBL) feature location scheme
for s in [0, None]:
# Check flipping of a simple strand 0 feature:
f = SeqFeature(FeatureLocation(0, 100), strand=s, type="source")
self.assertEqual(_get_location_string(f, 100),
"1..100")
self.assertEqual(_get_location_string(f._flip(100), 100),
"1..100")
self.assertEqual(_get_location_string(f._flip(200), 200),
"101..200")
self.assertEqual(f._flip(100).strand, f.strand)
def test_between(self):
"""GenBank/EMBL write/read simple between locations."""
# Note we don't use the BetweenPosition any more!
f = SeqFeature(FeatureLocation(10, 10), strand=+1, type="variation")
self.assertEqual(_get_location_string(f, 100),
"10^11")
self.assertEqual(_get_location_string(f._flip(20), 20),
"complement(10^11)")
self.assertEqual(_get_location_string(f._flip(100), 100),
"complement(90^91)")
self.assertEqual(f._flip(100).strand, -1)
self.record.features.append(f)
f = SeqFeature(FeatureLocation(20, 20), strand=-1, type="variation")
self.assertEqual(_get_location_string(f, 100),
"complement(20^21)")
self.assertEqual(_get_location_string(f._flip(40), 40),
"20^21")
self.assertEqual(_get_location_string(f._flip(100), 100),
"80^81")
self.assertEqual(f._flip(100).strand, +1)
self.record.features.append(f)
self.write_read_checks()
def test_unknown(self):
"""GenBank/EMBL write/read with unknown end points."""
f = SeqFeature(FeatureLocation(10, 15), strand=+1, type="region")
self.assertEqual(_get_location_string(f, 100),
"11..15")
self.record.features.append(f)
f = SeqFeature(FeatureLocation(10, UnknownPosition()), strand=+1, type="region")
self.assertEqual(_get_location_string(f, 100),
"11..>11")
self.record.features.append(f)
f = SeqFeature(FeatureLocation(UnknownPosition(), 15), strand=+1, type="region")
self.assertEqual(_get_location_string(f, 100),
"<15..15")
self.record.features.append(f)
f = SeqFeature(FeatureLocation(10, 15), strand=-1, type="region")
self.assertEqual(_get_location_string(f, 100),
"complement(11..15)")
f = SeqFeature(FeatureLocation(10, UnknownPosition()), strand=-1, type="region")
self.assertEqual(_get_location_string(f, 100),
"complement(11..>11)")
self.record.features.append(f)
f = SeqFeature(FeatureLocation(UnknownPosition(), 15), strand=-1, type="region")
self.assertEqual(_get_location_string(f, 100),
"complement(<15..15)")
self.record.features.append(f)
# This doesn't round trip
# self.write_read_checks()
def test_join(self):
"""GenBank/EMBL write/read simple join locations."""
f1 = SeqFeature(FeatureLocation(10, 20), strand=+1)
f2 = SeqFeature(FeatureLocation(25, 40), strand=+1)
f = make_join_feature([f1, f2])
self.record.features.append(f)
self.assertEqual(_get_location_string(f, 500),
"join(11..20,26..40)")
self.assertEqual(_get_location_string(f._flip(60), 60),
"complement(join(21..35,41..50))")
self.assertEqual(_get_location_string(f._flip(100), 100),
"complement(join(61..75,81..90))")
self.assertEqual(f._flip(100).strand, -1)
for sub_loc in f._flip(100).location.parts:
self.assertEqual(sub_loc.strand, -1)
f1 = SeqFeature(FeatureLocation(110, 120), strand=+1)
f2 = SeqFeature(FeatureLocation(125, 140), strand=+1)
f3 = SeqFeature(FeatureLocation(145, 150), strand=+1)
f = make_join_feature([f1, f2, f3], "CDS")
self.assertEqual(_get_location_string(f, 500),
"join(111..120,126..140,146..150)")
self.assertEqual(_get_location_string(f._flip(150), 150),
"complement(join(1..5,11..25,31..40))")
self.assertEqual(f._flip(100).strand, -1)
self.assertEqual(f._flip(100).location.strand, -1)
for sub_loc in f._flip(100).location.parts:
self.assertEqual(sub_loc.strand, -1)
self.record.features.append(f)
f1 = SeqFeature(FeatureLocation(210, 220), strand=-1)
f2 = SeqFeature(FeatureLocation(225, 240), strand=-1)
f = make_join_feature([f1, f2], ftype="gene")
self.assertEqual(_get_location_string(f, 500),
"complement(join(211..220,226..240))")
self.assertEqual(_get_location_string(f._flip(300), 300),
"join(61..75,81..90)")
self.assertEqual(f._flip(100).strand, +1)
self.assertEqual(f._flip(100).location.strand, +1)
for sub_loc in f._flip(100).location.parts:
self.assertEqual(sub_loc.strand, +1)
self.record.features.append(f)
f1 = SeqFeature(FeatureLocation(310, 320), strand=-1)
f2 = SeqFeature(FeatureLocation(325, 340), strand=-1)
f3 = SeqFeature(FeatureLocation(345, 350), strand=-1)
f = make_join_feature([f1, f2, f3], "CDS")
self.assertEqual(_get_location_string(f, 500),
"complement(join(311..320,326..340,346..350))")
self.assertEqual(_get_location_string(f._flip(350), 350),
"join(1..5,11..25,31..40)")
self.assertEqual(f._flip(100).strand, +1)
for sub_loc in f._flip(100).location.parts:
self.assertEqual(sub_loc.strand, +1)
self.record.features.append(f)
self.write_read_checks()
def test_fuzzy_join(self):
"""Features: write/read fuzzy join locations."""
s = "N" * 500
f1 = SeqFeature(FeatureLocation(BeforePosition(10), 20), strand=+1)
f2 = SeqFeature(FeatureLocation(25, AfterPosition(40)), strand=+1)
f = make_join_feature([f1, f2])
self.record.features.append(f)
self.assertEqual(_get_location_string(f, 500),
"join(<11..20,26..>40)")
self.assertEqual(_get_location_string(f._flip(100), 100),
"complement(join(<61..75,81..>90))")
self.assertEqual(f.strand, +1)
for sub_loc in f.location.parts:
self.assertEqual(sub_loc.strand, +1)
tmp = f._flip(100)
self.assertEqual(tmp.strand, -1)
for sub_loc in tmp.location.parts:
self.assertEqual(sub_loc.strand, -1)
f1 = SeqFeature(FeatureLocation(OneOfPosition(107, [ExactPosition(107),
ExactPosition(110)]),
120),
strand=+1)
f2 = SeqFeature(FeatureLocation(125, 140), strand=+1)
f3 = SeqFeature(FeatureLocation(145, WithinPosition(160, left=150, right=160)), strand=+1)
f = make_join_feature([f1, f2, f3], "CDS")
self.assertEqual(_get_location_string(f, 500),
"join(one-of(108,111)..120,126..140,146..(150.160))")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(200), 200),
"complement(join((41.51)..55,61..75,81..one-of(90,93)))")
self.assertEqual(f.strand, +1)
for sub_loc in f.location.parts:
self.assertEqual(sub_loc.strand, +1)
tmp = f._flip(100)
self.assertEqual(tmp.strand, -1)
for sub_loc in tmp.location.parts:
self.assertEqual(sub_loc.strand, -1)
self.record.features.append(f)
f1 = SeqFeature(FeatureLocation(BeforePosition(210), 220), strand=-1)
f2 = SeqFeature(FeatureLocation(225, WithinPosition(244, left=240, right=244)), strand=-1)
f = make_join_feature([f1, f2], "gene")
self.assertEqual(_get_location_string(f, 500),
"complement(join(<211..220,226..(240.244)))")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(300), 300),
"join((57.61)..75,81..>90)")
self.assertEqual(f.strand, -1)
for sub_loc in f.location.parts:
self.assertEqual(sub_loc.strand, -1)
tmp = f._flip(100)
self.assertEqual(tmp.strand, +1)
for sub_loc in tmp.location.parts:
self.assertEqual(sub_loc.strand, +1)
self.record.features.append(f)
f1 = SeqFeature(FeatureLocation(AfterPosition(310), 320), strand=-1)
# Note - is one-of(340,337) allowed or should it be one-of(337,340)?
f2 = SeqFeature(FeatureLocation(325, OneOfPosition(340, [ExactPosition(340),
ExactPosition(337)])),
strand=-1)
f3 = SeqFeature(FeatureLocation(345, WithinPosition(355, left=350, right=355)), strand=-1)
f = make_join_feature([f1, f2, f3], "CDS")
self.assertEqual(_get_location_string(f, 500),
"complement(join(>311..320,326..one-of(340,337),346..(350.355)))")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(400), 400),
"join((46.51)..55,one-of(64,61)..75,81..<90)")
self.assertEqual(f.strand, -1)
tmp = f._flip(100)
self.assertEqual(tmp.strand, +1)
for sub_loc in tmp.location.parts:
self.assertEqual(sub_loc.strand, +1)
self.record.features.append(f)
self.write_read_checks()
def test_before(self):
"""Features: write/read simple before locations."""
s = "N" * 200
f = SeqFeature(FeatureLocation(BeforePosition(5), 10),
strand=+1, type="CDS")
self.assertEqual(_get_location_string(f, 100),
"<6..10")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(20), 20),
"complement(11..>15)")
self.assertEqual(f.strand, +1)
self.assertEqual(f._flip(100).strand, -1)
self.record.features.append(f)
f = SeqFeature(FeatureLocation(BeforePosition(15), BeforePosition(20)),
strand=+1, type="CDS")
self.assertEqual(_get_location_string(f, 100),
"<16..<20")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(20), 20),
"complement(>1..>5)")
self.assertEqual(f.strand, +1)
self.assertEqual(f._flip(100).strand, -1)
self.record.features.append(f)
f = SeqFeature(FeatureLocation(25, BeforePosition(30)),
strand=+1, type="CDS")
self.assertEqual(_get_location_string(f, 100),
"26..<30")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(40), 40),
"complement(>11..15)")
self.assertEqual(f.strand, +1)
self.assertEqual(f._flip(100).strand, -1)
self.record.features.append(f)
f = SeqFeature(FeatureLocation(BeforePosition(35), 40),
strand=-1, type="CDS")
self.assertEqual(_get_location_string(f, 100),
"complement(<36..40)")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(40), 40),
"1..>5")
self.assertEqual(f.strand, -1)
self.assertEqual(f._flip(100).strand, +1)
self.record.features.append(f)
f = SeqFeature(FeatureLocation(BeforePosition(45), BeforePosition(50)),
strand=-1, type="CDS")
self.assertEqual(_get_location_string(f, 100),
"complement(<46..<50)")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(100), 100),
">51..>55")
self.assertEqual(f.strand, -1)
self.assertEqual(f._flip(100).strand, +1)
self.record.features.append(f)
f = SeqFeature(FeatureLocation(55, BeforePosition(60)),
strand=-1, type="CDS")
self.assertEqual(_get_location_string(f, 100),
"complement(56..<60)")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(100), 100),
">41..45")
self.assertEqual(f.strand, -1)
self.assertEqual(f._flip(100).strand, +1)
self.record.features.append(f)
self.write_read_checks()
def test_after(self):
"""Features: write/read simple after locations."""
s = "N" * 200
f = SeqFeature(FeatureLocation(AfterPosition(5), 10),
strand=+1, type="CDS")
self.assertEqual(_get_location_string(f, 100),
">6..10")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(100), 100),
"complement(91..<95)")
self.assertEqual(f.strand, +1)
self.assertEqual(f._flip(100).strand, -1)
self.record.features.append(f)
f = SeqFeature(FeatureLocation(AfterPosition(15), AfterPosition(20)),
strand=+1, type="CDS")
self.assertEqual(_get_location_string(f, 100),
">16..>20")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(20), 20),
"complement(<1..<5)")
self.assertEqual(f.strand, +1)
self.assertEqual(f._flip(100).strand, -1)
self.record.features.append(f)
f = SeqFeature(FeatureLocation(25, AfterPosition(30)),
strand=+1, type="CDS")
self.assertEqual(_get_location_string(f, 100),
"26..>30")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(30), 30),
"complement(<1..5)")
self.assertEqual(f.strand, +1)
self.assertEqual(f._flip(100).strand, -1)
self.record.features.append(f)
f = SeqFeature(FeatureLocation(AfterPosition(35), 40),
strand=-1, type="CDS")
self.assertEqual(_get_location_string(f, 100),
"complement(>36..40)")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(100), 100),
"61..<65")
self.assertEqual(f.strand, -1)
self.assertEqual(f._flip(100).strand, +1)
self.record.features.append(f)
f = SeqFeature(FeatureLocation(AfterPosition(45), AfterPosition(50)),
strand=-1, type="CDS")
self.assertEqual(_get_location_string(f, 100),
"complement(>46..>50)")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(100), 100),
"<51..<55")
self.assertEqual(f.strand, -1)
self.assertEqual(f._flip(100).strand, +1)
self.record.features.append(f)
f = SeqFeature(FeatureLocation(55, AfterPosition(60)),
strand=-1, type="CDS")
self.assertEqual(_get_location_string(f, 100),
"complement(56..>60)")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(100), 100),
"<41..45")
self.assertEqual(f.strand, -1)
self.assertEqual(f._flip(100).strand, +1)
self.record.features.append(f)
self.write_read_checks()
def test_oneof(self):
"""Features: write/read simple one-of locations."""
s = "N" * 100
start = OneOfPosition(0, [ExactPosition(0), ExactPosition(3), ExactPosition(6)])
f = SeqFeature(FeatureLocation(start, 21), strand=+1, type="CDS")
self.assertEqual(_get_location_string(f, 100),
"one-of(1,4,7)..21")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(100), 100),
"complement(80..one-of(94,97,100))")
self.assertEqual(f.strand, +1)
self.assertEqual(f._flip(100).strand, -1)
self.record.features.append(f)
start = OneOfPosition(10, [ExactPosition(x) for x in [10, 13, 16]])
end = OneOfPosition(50, [ExactPosition(x) for x in [41, 44, 50]])
f = SeqFeature(FeatureLocation(start, end), strand=+1, type="gene")
self.assertEqual(_get_location_string(f, 100),
"one-of(11,14,17)..one-of(41,44,50)")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(50), 50),
"complement(one-of(1,7,10)..one-of(34,37,40))")
self.assertEqual(f.strand, +1)
self.assertEqual(f._flip(100).strand, -1)
self.record.features.append(f)
end = OneOfPosition(33, [ExactPosition(x) for x in [30, 33]])
f = SeqFeature(FeatureLocation(27, end), strand=+1, type="gene")
self.assertEqual(_get_location_string(f, 100),
"28..one-of(30,33)")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(40), 40),
"complement(one-of(8,11)..13)")
self.assertEqual(f.strand, +1)
self.assertEqual(f._flip(100).strand, -1)
self.record.features.append(f)
start = OneOfPosition(36, [ExactPosition(x) for x in [36, 40]])
f = SeqFeature(FeatureLocation(start, 46), strand=-1, type="CDS")
self.assertEqual(_get_location_string(f, 100),
"complement(one-of(37,41)..46)")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(50), 50),
"5..one-of(10,14)")
self.assertEqual(f.strand, -1)
self.assertEqual(f._flip(100).strand, +1)
self.record.features.append(f)
start = OneOfPosition(45, [ExactPosition(x) for x in [45, 60]])
end = OneOfPosition(90, [ExactPosition(x) for x in [70, 90]])
f = SeqFeature(FeatureLocation(start, end), strand=-1, type="CDS")
self.assertEqual(_get_location_string(f, 100),
"complement(one-of(46,61)..one-of(70,90))")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(100), 100),
"one-of(11,31)..one-of(40,55)")
self.assertEqual(f.strand, -1)
self.assertEqual(f._flip(100).strand, +1)
self.record.features.append(f)
end = OneOfPosition(63, [ExactPosition(x) for x in [60, 63]])
f = SeqFeature(FeatureLocation(55, end), strand=-1, type="tRNA")
self.assertEqual(_get_location_string(f, 100),
"complement(56..one-of(60,63))")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(100), 100),
"one-of(38,41)..45")
self.assertEqual(f.strand, -1)
self.assertEqual(f._flip(100).strand, +1)
self.record.features.append(f)
self.write_read_checks()
def test_within(self):
"""Features: write/read simple within locations."""
s = "N" * 100
f = SeqFeature(FeatureLocation(WithinPosition(2, left=2, right=8), 10),
strand=+1, type="CDS")
self.assertEqual(_get_location_string(f, 100),
"(3.9)..10")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(20), 20),
"complement(11..(12.18))")
self.assertEqual(f.strand, +1)
self.assertEqual(f._flip(100).strand, -1)
self.record.features.append(f)
f = SeqFeature(FeatureLocation(WithinPosition(12, left=12, right=18),
WithinPosition(28, left=20, right=28)),
strand=+1, type="CDS")
self.assertEqual(_get_location_string(f, 100),
"(13.19)..(20.28)")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(30), 30),
"complement((3.11)..(12.18))")
self.assertEqual(f.strand, +1)
self.assertEqual(f._flip(100).strand, -1)
self.record.features.append(f)
f = SeqFeature(FeatureLocation(25, WithinPosition(33, left=30, right=33)),
strand=+1, type="misc_feature")
self.assertEqual(_get_location_string(f, 100),
"26..(30.33)")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(40), 40),
"complement((8.11)..15)")
self.assertEqual(f.strand, +1)
self.assertEqual(f._flip(100).strand, -1)
self.record.features.append(f)
f = SeqFeature(FeatureLocation(WithinPosition(35, left=35, right=39), 40),
strand=-1, type="rRNA")
self.assertEqual(_get_location_string(f, 100),
"complement((36.40)..40)")
self.assertEqual(_get_location_string(f._flip(40), 40),
"1..(1.5)")
self.assertEqual(f.strand, -1)
self.assertEqual(f._flip(100).strand, +1)
self.record.features.append(f)
f = SeqFeature(FeatureLocation(WithinPosition(45, left=45, right=47),
WithinPosition(53, left=50, right=53)),
strand=-1, type="repeat_region")
self.assertEqual(_get_location_string(f, 100),
"complement((46.48)..(50.53))")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(60), 60),
"(8.11)..(13.15)")
self.assertEqual(f.strand, -1)
self.assertEqual(f._flip(100).strand, +1)
self.record.features.append(f)
f = SeqFeature(FeatureLocation(55, WithinPosition(65, left=60, right=65)),
strand=-1, type="CDS")
self.assertEqual(_get_location_string(f, 100),
"complement(56..(60.65))")
self.assertEqual(len(f), len(f.extract(s)))
self.assertEqual(_get_location_string(f._flip(100), 100),
"(36.41)..45")
self.assertEqual(f.strand, -1)
self.assertEqual(f._flip(100).strand, +1)
self.record.features.append(f)
self.write_read_checks()
class NC_000932(unittest.TestCase):
# This includes an evil dual strand gene
basename = "NC_000932"
emblname = None # "AP000423" has different annotation (e.g. more CDS)
table = 11
skip_trans_test = ["gi|7525080|ref|NP_051037.1|", # dual-strand
"gi|7525057|ref|NP_051038.1|", # dual-strand
"gi|90110725|ref|NP_051109.2|", # Invalid annotation? No start codon
]
__doc__ = "Tests using %s GenBank and FASTA files from the NCBI" % basename
# TODO - neat way to change the docstrings...
def setUp(self):
self.gb_filename = os.path.join("GenBank", self.basename + ".gb")
self.ffn_filename = os.path.join("GenBank", self.basename + ".ffn")
self.faa_filename = os.path.join("GenBank", self.basename + ".faa")
self.fna_filename = os.path.join("GenBank", self.basename + ".fna")
if self.emblname:
self.embl_filename = os.path.join("EMBL", self.emblname + ".embl")
# These tests only need the GenBank file and the FAA file:
def test_CDS(self):
"""Checking GenBank CDS translations vs FASTA faa file."""
gb_record = SeqIO.read(self.gb_filename, "genbank")
gb_cds = list(SeqIO.parse(self.gb_filename, "genbank-cds"))
fasta = list(SeqIO.parse(self.faa_filename, "fasta"))
compare_records(gb_cds, fasta)
cds_features = [f for f in gb_record.features if f.type == "CDS"]
self.assertEqual(len(cds_features), len(fasta))
for f, r in zip(cds_features, fasta):
if r.id in self.skip_trans_test:
continue
# Get the nucleotides and translate them
nuc = f.extract(gb_record.seq)
self.assertEqual(len(nuc), len(f))
try:
pro = nuc.translate(table=self.table, cds=True)
except TranslationError as e:
print(e)
print("%r, %r, %r" % (r.id, nuc, self.table))
print(f)
raise
if pro[-1] == "*":
self.assertEqual(str(pro)[:-1], str(r.seq))
else:
self.assertEqual(str(pro), str(r.seq))
class NC_005816(NC_000932):
basename = "NC_005816"
emblname = "AE017046"
table = 11
skip_trans_test = []
__doc__ = "Tests using %s GenBank and FASTA files from the NCBI" % basename
def test_GenBank_vs_EMBL(self):
if not self.emblname:
return
gb_record = SeqIO.read(self.gb_filename, "genbank")
embl_record = SeqIO.read(self.embl_filename, "embl")
if len(embl_record.features) < len(gb_record.features):
# Used to match, but I've update the GenBank files
# which now has lots of misc_feature entries not in EMBL
embl_record.features = [f for f in embl_record.features
if f.type != "misc_feature"]
gb_record.features = [f for f in gb_record.features
if f.type != "misc_feature"]
return compare_record(gb_record, embl_record, expect_minor_diffs=True)
def test_Translations(self):
"""Checking translation of FASTA features (faa vs ffn)."""
faa_records = list(SeqIO.parse(self.faa_filename, "fasta"))
ffn_records = list(SeqIO.parse(self.ffn_filename, "fasta"))
self.assertEqual(len(faa_records), len(ffn_records))
for faa, fna in zip(faa_records, ffn_records):
translation = fna.seq.translate(self.table, cds=True)
if faa.id in self.skip_trans_test:
continue
if (str(translation) != str(faa.seq)) \
and (str(translation) != str(faa.seq) + "*"):
t = SeqRecord(translation, id="Translation",
description="Table %s" % self.table)
raise ValueError("FAA vs FNA translation problem:\n%s\n%s\n%s\n"
% (fna.format("fasta"),
t.format("fasta"),
faa.format("fasta")))
def test_Genome(self):
"""Checking GenBank sequence vs FASTA fna file."""
gb_record = SeqIO.read(self.gb_filename, "genbank")
fa_record = SeqIO.read(self.fna_filename, "fasta")
compare_record(gb_record, fa_record)
if self.emblname is None:
return
embl_record = SeqIO.read(self.embl_filename, "embl")
if len(embl_record.features) < len(gb_record.features):
# Hack since now out of sync for NC_005816
embl_record.features = [f for f in embl_record.features
if f.type != "misc_feature"]
gb_record.features = [f for f in gb_record.features
if f.type != "misc_feature"]
compare_record(gb_record, embl_record, expect_minor_diffs=True)
def test_Features(self):
"""Checking GenBank features sequences vs FASTA ffn file."""
gb_record = SeqIO.read(self.gb_filename, "genbank")
features = [f for f in gb_record.features if f.type == "CDS"]
fa_records = list(SeqIO.parse(self.ffn_filename, "fasta"))
self.assertEqual(len(fa_records), len(features))
# This assumes they are in the same order...
for fa_record, f in zip(fa_records, features):
# TODO - check the FASTA ID line against the co-ordinates?
f_seq = f.extract(gb_record.seq)
self.assertEqual(len(fa_record.seq),
len(f_seq))
self.assertEqual(str(fa_record.seq),
str(f_seq))
self.assertEqual(len(f_seq), len(f))
class TestWriteRead(unittest.TestCase):
"""Test can write and read back files."""
def test_NC_000932(self):
"""Write and read back NC_000932.gb"""
write_read(os.path.join("GenBank", "NC_000932.gb"), "gb")
def test_NC_005816(self):
"""Write and read back NC_005816.gb"""
write_read(os.path.join("GenBank", "NC_005816.gb"), "gb")
def test_gbvrl1_start(self):
"""Write and read back gbvrl1_start.seq"""
write_read(os.path.join("GenBank", "gbvrl1_start.seq"), "gb")
def test_NT_019265(self):
"""Write and read back NT_019265.gb"""
write_read(os.path.join("GenBank", "NT_019265.gb"), "gb")
def test_cor6(self):
"""Write and read back cor6_6.gb"""
write_read(os.path.join("GenBank", "cor6_6.gb"), "gb")
def test_arab1(self):
"""Write and read back arab1.gb"""
write_read(os.path.join("GenBank", "arab1.gb"), "gb")
def test_one_of(self):
"""Write and read back of_one.gb"""
write_read(os.path.join("GenBank", "one_of.gb"), "gb")
def test_pri1(self):
"""Write and read back pri1.gb"""
write_read(os.path.join("GenBank", "pri1.gb"), "gb")
def test_noref(self):
"""Write and read back noref.gb"""
write_read(os.path.join("GenBank", "noref.gb"), "gb")
def test_origin_line(self):
"""Write and read back origin_line.gb"""
write_read(os.path.join("GenBank", "origin_line.gb"), "gb")
def test_dbsource_wrap(self):
"""Write and read back dbsource_wrap.gb"""
write_read(os.path.join("GenBank", "dbsource_wrap.gb"), "gb", ["gb"])
# Protein so can't convert this to EMBL format
def test_blank_seq(self):
"""Write and read back blank_seq.gb"""
write_read(os.path.join("GenBank", "blank_seq.gb"), "gb", ["gb"])
# Protein so can't convert this to EMBL format
def test_extra_keywords(self):
"""Write and read back extra_keywords.gb"""
write_read(os.path.join("GenBank", "extra_keywords.gb"), "gb")
def test_protein_refseq(self):
"""Write and read back protein_refseq.gb"""
write_read(os.path.join("GenBank", "protein_refseq.gb"), "gb", ["gb"])
# Protein so can't convert this to EMBL format
def test_protein_refseq2(self):
"""Write and read back protein_refseq2.gb"""
write_read(os.path.join("GenBank", "protein_refseq2.gb"), "gb", ["gb"])
# Protein so can't convert this to EMBL format
def test_AAA03323(self):
"""Write and read back AAA03323.embl"""
write_read(os.path.join("EMBL", "AAA03323.embl"), "embl")
def test_AE017046(self):
"""Write and read back AE017046.embl"""
write_read(os.path.join("EMBL", "AE017046.embl"), "embl")
def test_DD231055_edited(self):
"""Write and read back DD231055_edited.embl"""
write_read(os.path.join("EMBL", "DD231055_edited.embl"), "embl")
def test_Human_contigs(self):
"""Write and read back Human_contigs.embl"""
write_read(os.path.join("EMBL", "Human_contigs.embl"), "embl")
def test_SC10H5(self):
"""Write and read back SC10H5.embl"""
write_read(os.path.join("EMBL", "SC10H5.embl"), "embl")
def test_TRBG361(self):
"""Write and read back TRBG361.embl"""
write_read(os.path.join("EMBL", "TRBG361.embl"), "embl")
def test_U87107(self):
"""Write and read back U87107.embl"""
write_read(os.path.join("EMBL", "U87107.embl"), "embl")
if __name__ == "__main__":
runner = unittest.TextTestRunner(verbosity=2)
unittest.main(testRunner=runner)
|