PMC:3475482 / 5911-14151
Annnotations
{"target":"https://pubannotation.org/docs/sourcedb/PMC/sourceid/3475482","sourcedb":"PMC","sourceid":"3475482","source_url":"https://www.ncbi.nlm.nih.gov/pmc/3475482","text":"Methods\n\nConcepts and definitions\nLet Σ = {A, C, G, T} be a set of DNA alphabets, where A, C, G, and T are called DNA characters or bases. A DNA sequence S is an ordered list of DNA alphabets. S is denoted by 〈c1, c2, ..., cl〉, where ci ∈ Σ and |S| denotes the length of sequence S. A sequence with length n is called an n-sequence. A sequence database D is a set of tuples 〈sid, S〉, where sid is a sequence ID. The sum of the lengths of all sequences in D is denoted as |D|=|S1|+|S2|...|Sn|\n\nDefinition 1 (Patter)\nA pattern is a contiguous sub-sequence of DNA sequence S drawn from Σ = {A, C, G, T}. A sequence α = 〈a1, a2, ..., an〉 is called a contiguous sub-sequence of another sequence β = 〈b1, b2, ..., bm〉, and β is a contiguous super-sequence of α, denoted as α⊆β, if there exists integers 1 ≤ j1 ≤ j2 ≤ ... ≤ jn ≤ m and ji+1 = ji + 1 for 1 ≤ i ≤ n-1 such that a1 = bj1, a2 = bj2, ..., an = bjn. We can also say that α is contained by β. In our paper, we use the term \"(sub)-sequence\" to describe \"contiguous (sub)-sequence\" in brief.\n\nDefinition 2 (Support)\nGiven a pattern P and a sequence S, the number of occurrences of P in S is called the support of pattern P in sequence S, denoted as Sup(P, Si). For DNA sequence database D, the support of P in D is defined as .\n\nDefinition 3 (Confidence)\nGiven a pattern P = P1, P2, ..., Pq and a DNA sequence database D, the confidence of P1P2 with respect to P1 is defined as Conf(P1P2, P1) = Sup(P1P2,D)/Sup(P1,D).\nFor example, the character \"A\" occurs 10 times and \"AT\" occurs 7 times, and in database D in Table 1, Conf(AT,A) = 7/10 = 0.7.\n\nDefinition 4 (Pattern probability)\nGiven a pattern P = P1, P2, ..., Pq (Pi is a DNA alphabet) and a DNA sequence database D, the pattern probability of P in D is defined as , where Pr(Pi, D) = # of occurrences of an alphabet Pi/|D|.\nFor example, the pattern probability of pattern \"ATCG\" in Table 1 is Pr(ATCG,D) = Pr(A,D) × Pr(T,D) × Pr(C,D) × Pr(G,D) = (10/55) × (18/55) × (12/55) × (15/55) = 0.182 × 0.372 × 0.218 × 0.273 = 0.00403.\n\nDefinition 5 (Information)\nThe information carried by a DNA character or base in DNA sequence database D is defined as I(c) = -log|C|Pr(c,D), where |C| is the number of distinct characters in D and Pr(c) is the probability of c occurs in D.\nFor example, the occurrence probability of character A in Table 1 is Pr(A,D) = # of occurence(A)/|D|. So, the probability of character A is Pr(A,D) = 10/55 = 0.182 in our example database. Then, the information of character A in D is, I(A) = -log|C|Pr(A,D) = -log4(0.182) = 1.228.\n\nDefinition 6 (Pattern information)\nGiven a pattern P = P1, P2, ..., Pq and a DNA sequence database D, the pattern information of P in D is defined as I(P) = -log|C|Pr(P,D) = I(P1) + I(P2) +......+ I(Pq).\nFor example, the pattern information of pattern \"ATCG\" is I(ATCG,D) = I(A,D) + I(T,D) + I(C,D) + I(G,D) = 1.228 + 0.713 + 1.098 + 0.9365 = 3.9755 in Table 1.\n\nDefinition 7 (Information gain)\nGiven a pattern P = P1, P2, ..., Pq and a DNA sequence database D, the pattern information gain of P in D is defined as IG(P) = I(P) × Support(P).\nFor example, the information gain of pattern \"ATCG\" is IG(ATCG,D) = 3.9755 * 5 = 19.8775 in Table 1.\n\nDefinition 8 (Finding interesting patterns)\nGiven a sequence database D and user-specified min_conf and min_in_gain, the problem of finding interesting patterns is to find the complete set of interesting patterns, such that IG(P) and Conf(P) are greater than min_in_gain and min_conf , respectively.\n\nSurprising pattern-mining algorithm\nThe method for mining surprising contiguous patterns from a DNA sequence database proceeds as follows. For constructing the fixed length spanning tree, we follow the method suggested by Kang et al. [12] - that is, read the database sequences and, starting from the first of each sequence, move the position one by one of the fixed length window throughout the sequence (Fig. 1). We put the sequence ID and the starting position in the leaf node of the tree as a variable length array, in addition to the frequency of the pattern moving of the window.\nFig. 2 shows our proposed algorithm. It has two steps. The first step recursively scans the subsequence with the same length as the fixed-length window from the given sequences to construct a fixed-length spanning tree and put the database sequence ID and starting position of the pattern in the leaf node of tree as a one-side open variable length array. At this time, it calculates the character probabilities for A, C, G, and T, respectively. It is straightforward for the calculation of character probabilities for A, C, G, and T. By adding all occurrences of A, C, G, and T and dividing by the total number of characters in the database, it can be obtained easily. After calculating character probabilities, we can calculate character information, pattern information, and pattern information gain by using definition 5, definition 6, and definition 7.\nThe second step generates fixed-length patterns from the constructed spanning tree with satisfying the minimum information gain threshold and minimum confidence threshold, and expands sequences by joining candidates and checking the frequency and starting position of the candidates. At the time of joining the sequences with the same length to generate the candidates of the next length, it checks whether the second candidate starts right to the next position of the first one with the same ID or not. If so, it increases the frequency counter by one. Finally, it checks the minimum information gain and minimum confidence threshold. If the pattern satisfies both thresholds, then it is added to the next-length candidate pattern. This process is recursively followed for all the candidates with the same length to generate the next-length surprising candidates.\nThe spanning tree is shown in Fig. 3, which is constructed based on the database available in Table 1. We have constructed a fixed-length spanning tree using the method suggested by Zerin et al. [13] but put the sequence ID and the staring position in the leaf node of the tree as a variable length array. Once the tree is constructed like Fig. 3, retrieval of the tree can obtain contiguous subsequences with length-4, satisfying the satisfying minimum information gain threshold and minimum confidence threshold. Then, the obtained length-4 surprising contiguous patterns are 〈ATCG〉, 〈TCGT〉, 〈TGAT〉, 〈CGTG〉, 〈CGTT〉, 〈CATC〉, and 〈GTGA〉, shown in Fig. 4.\nTo generate the length-5 surprising contiguous patterns, we need to join the length-4 surprising patterns; all the items in the first pattern, excluding the first item, should be same as all the items of the second pattern, excluding the last item. The frequency counter of the next length pattern will increase if both of the patterns are present in the same sequence and the second pattern's starting positions are the right next to the position of the first pattern in the same sequence. If the generated patterns satisfy the min_in_gain and min_conf, we consider the new pattern as a next length surprising candidate. The obtained length-5 surprising patterns are 〈ATCGT〉, 〈TCGTG〉, 〈TCGTT〉, 〈CGTGA〉, 〈CATCG〉, and 〈GTGAT〉. From Fig. 2, we see pattern ATCG starts from the 1st and 11th positions of sequence 10, 2nd and 9th positions of sequence 20, and 2nd position of sequence 30.\nThe pattern TCGT starts from 3rd and 10th positions of sequence 20, 3rd position of sequence 30, and 1st position of sequence 40. As a result, the length-5 candidate ATCGT starts from the 2nd and 9th positions of sequence 20 and the 2nd position of sequence 30. So, the information gain of ATCGT is 14.065, and the confidence of ATCGT with respect to ATCG is 0.6, which satisfy both min_in_gain and min_conf thresholds.\nFollowing the same process, the obtained length-6 surprising patterns are 〈CGTGAT〉, 〈CATCGT〉, and 〈TCGTGA〉, and the obtained length-7 surprising pattern is 〈TCGTGAT〉. Here, we scan the whole database only once to construct the fixed-length spanning tree and then never scan the database again. On the other hand, using an index-based method and min_in_gain and min_conf thresholds, our proposed approach consumes less memory and faster execution than Zerin et al. [13].","divisions":[{"label":"Title","span":{"begin":0,"end":7}},{"label":"Section","span":{"begin":9,"end":3499}},{"label":"Title","span":{"begin":9,"end":33}},{"label":"Section","span":{"begin":493,"end":1041}},{"label":"Title","span":{"begin":493,"end":514}},{"label":"Section","span":{"begin":1043,"end":1277}},{"label":"Title","span":{"begin":1043,"end":1065}},{"label":"Section","span":{"begin":1279,"end":1594}},{"label":"Title","span":{"begin":1279,"end":1304}},{"label":"Section","span":{"begin":1596,"end":2031}},{"label":"Title","span":{"begin":1596,"end":1630}},{"label":"Section","span":{"begin":2033,"end":2554}},{"label":"Title","span":{"begin":2033,"end":2059}},{"label":"Section","span":{"begin":2556,"end":2917}},{"label":"Title","span":{"begin":2556,"end":2590}},{"label":"Section","span":{"begin":2919,"end":3198}},{"label":"Title","span":{"begin":2919,"end":2950}},{"label":"Section","span":{"begin":3200,"end":3499}},{"label":"Title","span":{"begin":3200,"end":3243}},{"label":"Title","span":{"begin":3501,"end":3536}}],"tracks":[{"project":"BLAH6-GNI-CORPUS","denotations":[{"id":"T144","span":{"begin":1199,"end":1202},"obj":"protein"},{"id":"T145","span":{"begin":942,"end":943},"obj":"protein"},{"id":"T146","span":{"begin":924,"end":925},"obj":"protein"},{"id":"T147","span":{"begin":878,"end":880},"obj":"protein"},{"id":"T148","span":{"begin":868,"end":870},"obj":"protein"},{"id":"T149","span":{"begin":788,"end":810},"obj":"protein"},{"id":"T150","span":{"begin":717,"end":718},"obj":"protein"},{"id":"T151","span":{"begin":699,"end":701},"obj":"protein"},{"id":"T152","span":{"begin":621,"end":623},"obj":"protein"},{"id":"T153","span":{"begin":616,"end":619},"obj":"protein"},{"id":"T154","span":{"begin":471,"end":505},"obj":"protein"},{"id":"T155","span":{"begin":321,"end":331},"obj":"DNA"},{"id":"T156","span":{"begin":239,"end":248},"obj":"DNA"},{"id":"T157","span":{"begin":214,"end":216},"obj":"protein"},{"id":"T158","span":{"begin":209,"end":212},"obj":"protein"},{"id":"T159","span":{"begin":3424,"end":3426},"obj":"protein"},{"id":"T160","span":{"begin":3190,"end":3197},"obj":"protein"},{"id":"T161","span":{"begin":3071,"end":3073},"obj":"protein"},{"id":"T162","span":{"begin":2993,"end":3005},"obj":"DNA"},{"id":"T163","span":{"begin":2984,"end":2986},"obj":"DNA"},{"id":"T164","span":{"begin":2975,"end":2977},"obj":"DNA"},{"id":"T165","span":{"begin":2909,"end":2916},"obj":"protein"},{"id":"T166","span":{"begin":2755,"end":2757},"obj":"DNA"},{"id":"T167","span":{"begin":2740,"end":2742},"obj":"DNA"},{"id":"T168","span":{"begin":2732,"end":2734},"obj":"DNA"},{"id":"T169","span":{"begin":2633,"end":2645},"obj":"DNA"},{"id":"T170","span":{"begin":2624,"end":2626},"obj":"DNA"},{"id":"T171","span":{"begin":2615,"end":2617},"obj":"DNA"},{"id":"T172","span":{"begin":2414,"end":2416},"obj":"protein"},{"id":"T173","span":{"begin":2343,"end":2345},"obj":"protein"},{"id":"T193","span":{"begin":1390,"end":1394},"obj":"protein"},{"id":"T194","span":{"begin":1347,"end":1359},"obj":"DNA"},{"id":"T195","span":{"begin":1338,"end":1340},"obj":"DNA"},{"id":"T196","span":{"begin":1329,"end":1331},"obj":"DNA"},{"id":"T253","span":{"begin":8222,"end":8227},"obj":"protein"},{"id":"T254","span":{"begin":7869,"end":7877},"obj":"protein"},{"id":"T255","span":{"begin":7702,"end":7706},"obj":"protein"},{"id":"T256","span":{"begin":7680,"end":7685},"obj":"protein"},{"id":"T257","span":{"begin":7641,"end":7646},"obj":"protein"},{"id":"T258","span":{"begin":7183,"end":7190},"obj":"protein"},{"id":"T259","span":{"begin":7170,"end":7177},"obj":"protein"},{"id":"T260","span":{"begin":7161,"end":7168},"obj":"protein"},{"id":"T261","span":{"begin":7152,"end":7159},"obj":"protein"},{"id":"T262","span":{"begin":7143,"end":7150},"obj":"protein"},{"id":"T263","span":{"begin":7134,"end":7141},"obj":"protein"},{"id":"T264","span":{"begin":6441,"end":6447},"obj":"protein"},{"id":"T265","span":{"begin":6429,"end":6435},"obj":"protein"},{"id":"T266","span":{"begin":6421,"end":6427},"obj":"protein"},{"id":"T267","span":{"begin":6413,"end":6419},"obj":"protein"},{"id":"T268","span":{"begin":6405,"end":6411},"obj":"protein"},{"id":"T269","span":{"begin":6397,"end":6403},"obj":"protein"},{"id":"T270","span":{"begin":5905,"end":5912},"obj":"protein"},{"id":"T271","span":{"begin":4249,"end":4264},"obj":"DNA"},{"id":"T272","span":{"begin":3760,"end":3778},"obj":"DNA"},{"id":"T273","span":{"begin":3597,"end":3609},"obj":"DNA"},{"id":"T174","span":{"begin":2332,"end":2339},"obj":"protein"},{"id":"T175","span":{"begin":2231,"end":2233},"obj":"protein"},{"id":"T176","span":{"begin":2181,"end":2184},"obj":"protein"},{"id":"T177","span":{"begin":1941,"end":1943},"obj":"protein"},{"id":"T178","span":{"begin":1931,"end":1933},"obj":"protein"},{"id":"T179","span":{"begin":1921,"end":1923},"obj":"protein"},{"id":"T180","span":{"begin":1911,"end":1913},"obj":"protein"},{"id":"T181","span":{"begin":1898,"end":1900},"obj":"protein"},{"id":"T182","span":{"begin":1812,"end":1827},"obj":"protein"},{"id":"T183","span":{"begin":1777,"end":1779},"obj":"protein"},{"id":"T184","span":{"begin":1696,"end":1708},"obj":"DNA"},{"id":"T185","span":{"begin":1664,"end":1666},"obj":"DNA"},{"id":"T186","span":{"begin":1655,"end":1657},"obj":"DNA"},{"id":"T187","span":{"begin":1461,"end":1463},"obj":"DNA"},{"id":"T188","span":{"begin":1456,"end":1460},"obj":"protein"},{"id":"T189","span":{"begin":1449,"end":1453},"obj":"protein"},{"id":"T190","span":{"begin":1439,"end":1441},"obj":"DNA"},{"id":"T191","span":{"begin":1433,"end":1437},"obj":"protein"},{"id":"T192","span":{"begin":1411,"end":1413},"obj":"DNA"}],"attributes":[{"subj":"T144","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T145","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T146","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T147","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T148","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T149","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T150","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T151","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T152","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T153","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T154","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T155","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T156","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T157","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T158","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T159","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T160","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T161","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T162","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T163","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T164","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T165","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T166","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T167","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T168","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T169","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T170","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T171","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T172","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T173","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T193","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T194","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T195","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T196","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T253","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T254","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T255","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T256","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T257","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T258","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T259","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T260","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T261","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T262","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T263","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T264","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T265","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T266","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T267","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T268","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T269","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T270","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T271","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T272","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T273","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T174","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T175","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T176","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T177","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T178","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T179","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T180","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T181","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T182","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T183","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T184","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T185","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T186","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T187","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T188","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T189","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T190","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T191","pred":"source","obj":"BLAH6-GNI-CORPUS"},{"subj":"T192","pred":"source","obj":"BLAH6-GNI-CORPUS"}]},{"project":"BLAH6-GNI-CORPUS2","denotations":[{"id":"T29","span":{"begin":3424,"end":3426},"obj":"protein"},{"id":"T30","span":{"begin":3385,"end":3388},"obj":"DNA"},{"id":"T31","span":{"begin":3252,"end":3269},"obj":"DNA"},{"id":"T32","span":{"begin":3190,"end":3197},"obj":"protein"},{"id":"T33","span":{"begin":3156,"end":3160},"obj":"protein"},{"id":"T34","span":{"begin":3153,"end":3155},"obj":"protein"},{"id":"T35","span":{"begin":3144,"end":3148},"obj":"protein"},{"id":"T36","span":{"begin":3071,"end":3073},"obj":"protein"},{"id":"T37","span":{"begin":2993,"end":3005},"obj":"DNA"},{"id":"T38","span":{"begin":2984,"end":2986},"obj":"DNA"},{"id":"T39","span":{"begin":2975,"end":2977},"obj":"DNA"},{"id":"T40","span":{"begin":2971,"end":2973},"obj":"DNA"},{"id":"T41","span":{"begin":2971,"end":2977},"obj":"protein"},{"id":"T42","span":{"begin":2909,"end":2916},"obj":"protein"},{"id":"T43","span":{"begin":2850,"end":2851},"obj":"protein"},{"id":"T44","span":{"begin":2820,"end":2824},"obj":"protein"},{"id":"T45","span":{"begin":2809,"end":2813},"obj":"protein"},{"id":"T46","span":{"begin":2755,"end":2757},"obj":"DNA"},{"id":"T47","span":{"begin":2740,"end":2742},"obj":"DNA"},{"id":"T48","span":{"begin":2732,"end":2734},"obj":"DNA"},{"id":"T49","span":{"begin":2720,"end":2722},"obj":"protein"},{"id":"T50","span":{"begin":2718,"end":2719},"obj":"protein"},{"id":"T51","span":{"begin":2633,"end":2645},"obj":"DNA"},{"id":"T52","span":{"begin":2624,"end":2626},"obj":"DNA"},{"id":"T53","span":{"begin":2615,"end":2617},"obj":"DNA"},{"id":"T54","span":{"begin":2611,"end":2613},"obj":"DNA"},{"id":"T55","span":{"begin":2611,"end":2617},"obj":"protein"},{"id":"T56","span":{"begin":2523,"end":2525},"obj":"protein"},{"id":"T57","span":{"begin":2521,"end":2522},"obj":"protein"},{"id":"T58","span":{"begin":2509,"end":2513},"obj":"protein"},{"id":"T59","span":{"begin":2424,"end":2426},"obj":"protein"},{"id":"T60","span":{"begin":2414,"end":2416},"obj":"protein"},{"id":"T61","span":{"begin":2343,"end":2345},"obj":"protein"},{"id":"T62","span":{"begin":2332,"end":2339},"obj":"protein"},{"id":"T63","span":{"begin":2259,"end":2260},"obj":"protein"},{"id":"T64","span":{"begin":2234,"end":2235},"obj":"protein"},{"id":"T65","span":{"begin":2231,"end":2233},"obj":"protein"},{"id":"T66","span":{"begin":2182,"end":2183},"obj":"protein"},{"id":"T67","span":{"begin":2169,"end":2170},"obj":"protein"},{"id":"T68","span":{"begin":2166,"end":2168},"obj":"protein"},{"id":"T69","span":{"begin":2164,"end":2165},"obj":"protein"},{"id":"T70","span":{"begin":2154,"end":2155},"obj":"protein"},{"id":"T71","span":{"begin":2114,"end":2126},"obj":"DNA"},{"id":"T72","span":{"begin":2089,"end":2092},"obj":"DNA"},{"id":"T73","span":{"begin":1952,"end":1954},"obj":"protein"},{"id":"T74","span":{"begin":1941,"end":1943},"obj":"protein"},{"id":"T75","span":{"begin":1934,"end":1935},"obj":"protein"},{"id":"T76","span":{"begin":1931,"end":1933},"obj":"protein"},{"id":"T77","span":{"begin":1921,"end":1923},"obj":"protein"},{"id":"T78","span":{"begin":1911,"end":1913},"obj":"protein"},{"id":"T79","span":{"begin":1901,"end":1905},"obj":"protein"},{"id":"T80","span":{"begin":1898,"end":1900},"obj":"protein"},{"id":"T81","span":{"begin":1887,"end":1894},"obj":"protein"},{"id":"T82","span":{"begin":1878,"end":1882},"obj":"protein"},{"id":"T83","span":{"begin":1812,"end":1826},"obj":"protein"},{"id":"T84","span":{"begin":1780,"end":1782},"obj":"DNA"},{"id":"T85","span":{"begin":1780,"end":1782},"obj":"protein"},{"id":"T86","span":{"begin":1777,"end":1779},"obj":"protein"},{"id":"T87","span":{"begin":1696,"end":1708},"obj":"DNA"},{"id":"T88","span":{"begin":1676,"end":1679},"obj":"DNA"},{"id":"T89","span":{"begin":1668,"end":1670},"obj":"DNA"},{"id":"T90","span":{"begin":1668,"end":1670},"obj":"protein"},{"id":"T91","span":{"begin":1664,"end":1666},"obj":"DNA"},{"id":"T92","span":{"begin":1655,"end":1657},"obj":"DNA"},{"id":"T93","span":{"begin":1651,"end":1653},"obj":"DNA"},{"id":"T94","span":{"begin":1651,"end":1657},"obj":"protein"},{"id":"T95","span":{"begin":1585,"end":1587},"obj":"protein"},{"id":"T96","span":{"begin":1561,"end":1568},"obj":"protein"},{"id":"T97","span":{"begin":1506,"end":1508},"obj":"protein"},{"id":"T98","span":{"begin":1461,"end":1463},"obj":"DNA"},{"id":"T99","span":{"begin":1457,"end":1460},"obj":"protein"},{"id":"T100","span":{"begin":1449,"end":1453},"obj":"protein"},{"id":"T101","span":{"begin":1445,"end":1448},"obj":"protein"},{"id":"T102","span":{"begin":1439,"end":1441},"obj":"DNA"},{"id":"T103","span":{"begin":1433,"end":1437},"obj":"protein"},{"id":"T104","span":{"begin":1411,"end":1413},"obj":"DNA"},{"id":"T105","span":{"begin":1390,"end":1394},"obj":"protein"},{"id":"T106","span":{"begin":1347,"end":1359},"obj":"DNA"},{"id":"T107","span":{"begin":1338,"end":1340},"obj":"DNA"},{"id":"T108","span":{"begin":1329,"end":1331},"obj":"DNA"},{"id":"T109","span":{"begin":1325,"end":1327},"obj":"DNA"},{"id":"T110","span":{"begin":1325,"end":1331},"obj":"protein"},{"id":"T111","span":{"begin":1215,"end":1227},"obj":"DNA"},{"id":"T112","span":{"begin":1199,"end":1202},"obj":"protein"},{"id":"T113","span":{"begin":1005,"end":1030},"obj":"DNA"},{"id":"T114","span":{"begin":970,"end":974},"obj":"protein"},{"id":"T115","span":{"begin":878,"end":880},"obj":"protein"},{"id":"T116","span":{"begin":868,"end":870},"obj":"protein"},{"id":"T117","span":{"begin":854,"end":857},"obj":"protein"},{"id":"T118","span":{"begin":788,"end":808},"obj":"protein"},{"id":"T119","span":{"begin":699,"end":701},"obj":"protein"},{"id":"T120","span":{"begin":695,"end":697},"obj":"protein"},{"id":"T121","span":{"begin":657,"end":669},"obj":"DNA"},{"id":"T122","span":{"begin":621,"end":623},"obj":"protein"},{"id":"T123","span":{"begin":617,"end":619},"obj":"protein"},{"id":"T124","span":{"begin":588,"end":595},"obj":"protein"},{"id":"T125","span":{"begin":557,"end":569},"obj":"DNA"},{"id":"T126","span":{"begin":541,"end":553},"obj":"DNA"},{"id":"T127","span":{"begin":493,"end":505},"obj":"protein"},{"id":"T128","span":{"begin":481,"end":483},"obj":"protein"},{"id":"T129","span":{"begin":476,"end":478},"obj":"protein"},{"id":"T130","span":{"begin":438,"end":441},"obj":"protein"},{"id":"T131","span":{"begin":360,"end":363},"obj":"DNA"},{"id":"T132","span":{"begin":335,"end":352},"obj":"DNA"},{"id":"T133","span":{"begin":321,"end":331},"obj":"DNA"},{"id":"T134","span":{"begin":234,"end":236},"obj":"protein"},{"id":"T135","span":{"begin":214,"end":216},"obj":"protein"},{"id":"T136","span":{"begin":210,"end":212},"obj":"protein"},{"id":"T137","span":{"begin":178,"end":181},"obj":"DNA"},{"id":"T138","span":{"begin":141,"end":153},"obj":"DNA"},{"id":"T139","span":{"begin":114,"end":117},"obj":"DNA"},{"id":"T140","span":{"begin":88,"end":95},"obj":"protein"},{"id":"T141","span":{"begin":67,"end":70},"obj":"DNA"},{"id":"T142","span":{"begin":60,"end":63},"obj":"DNA"},{"id":"T143","span":{"begin":43,"end":50},"obj":"protein"},{"id":"T208","span":{"begin":7415,"end":7417},"obj":"protein"},{"id":"T209","span":{"begin":7368,"end":7374},"obj":"protein"},{"id":"T210","span":{"begin":7363,"end":7367},"obj":"protein"},{"id":"T211","span":{"begin":7314,"end":7316},"obj":"protein"},{"id":"T212","span":{"begin":7276,"end":7278},"obj":"protein"},{"id":"T213","span":{"begin":7225,"end":7231},"obj":"protein"},{"id":"T214","span":{"begin":7220,"end":7224},"obj":"protein"},{"id":"T215","span":{"begin":7197,"end":7200},"obj":"protein"},{"id":"T216","span":{"begin":7184,"end":7189},"obj":"protein"},{"id":"T217","span":{"begin":7171,"end":7176},"obj":"protein"},{"id":"T218","span":{"begin":7162,"end":7167},"obj":"protein"},{"id":"T219","span":{"begin":7153,"end":7158},"obj":"protein"},{"id":"T220","span":{"begin":7144,"end":7149},"obj":"protein"},{"id":"T221","span":{"begin":7135,"end":7140},"obj":"protein"},{"id":"T222","span":{"begin":6860,"end":6868},"obj":"protein"},{"id":"T223","span":{"begin":6653,"end":6656},"obj":"protein"},{"id":"T224","span":{"begin":6573,"end":6576},"obj":"protein"},{"id":"T225","span":{"begin":6458,"end":6461},"obj":"protein"},{"id":"T226","span":{"begin":6442,"end":6446},"obj":"protein"},{"id":"T227","span":{"begin":6430,"end":6434},"obj":"protein"},{"id":"T228","span":{"begin":6422,"end":6426},"obj":"protein"},{"id":"T229","span":{"begin":6414,"end":6418},"obj":"protein"},{"id":"T230","span":{"begin":6406,"end":6410},"obj":"protein"},{"id":"T231","span":{"begin":6398,"end":6402},"obj":"protein"},{"id":"T232","span":{"begin":6390,"end":6394},"obj":"protein"},{"id":"T233","span":{"begin":6151,"end":6154},"obj":"protein"},{"id":"T234","span":{"begin":5993,"end":5998},"obj":"protein"},{"id":"T235","span":{"begin":5905,"end":5912},"obj":"protein"},{"id":"T236","span":{"begin":5841,"end":5844},"obj":"protein"},{"id":"T237","span":{"begin":5720,"end":5723},"obj":"protein"},{"id":"T238","span":{"begin":5374,"end":5380},"obj":"protein"},{"id":"T239","span":{"begin":5193,"end":5201},"obj":"protein"},{"id":"T240","span":{"begin":4652,"end":4659},"obj":"protein"},{"id":"T241","span":{"begin":4633,"end":4636},"obj":"protein"},{"id":"T242","span":{"begin":4607,"end":4614},"obj":"protein"},{"id":"T243","span":{"begin":4504,"end":4511},"obj":"protein"},{"id":"T244","span":{"begin":4344,"end":4352},"obj":"protein"},{"id":"T245","span":{"begin":4319,"end":4336},"obj":"DNA"},{"id":"T246","span":{"begin":4249,"end":4264},"obj":"DNA"},{"id":"T247","span":{"begin":4088,"end":4091},"obj":"protein"},{"id":"T248","span":{"begin":3947,"end":3955},"obj":"protein"},{"id":"T249","span":{"begin":3907,"end":3910},"obj":"protein"},{"id":"T250","span":{"begin":3784,"end":3792},"obj":"protein"},{"id":"T251","span":{"begin":3760,"end":3778},"obj":"DNA"},{"id":"T252","span":{"begin":3597,"end":3609},"obj":"DNA"},{"id":"T197","span":{"begin":8222,"end":8227},"obj":"protein"},{"id":"T198","span":{"begin":8072,"end":8077},"obj":"DNA"},{"id":"T199","span":{"begin":7928,"end":7935},"obj":"protein"},{"id":"T200","span":{"begin":7870,"end":7876},"obj":"protein"},{"id":"T201","span":{"begin":7846,"end":7852},"obj":"protein"},{"id":"T202","span":{"begin":7702,"end":7706},"obj":"protein"},{"id":"T203","span":{"begin":7680,"end":7685},"obj":"protein"},{"id":"T204","span":{"begin":7641,"end":7646},"obj":"protein"},{"id":"T205","span":{"begin":7573,"end":7575},"obj":"protein"},{"id":"T206","span":{"begin":7523,"end":7529},"obj":"protein"},{"id":"T207","span":{"begin":7517,"end":7522},"obj":"protein"}],"attributes":[{"subj":"T29","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T30","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T31","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T32","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T33","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T34","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T35","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T36","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T37","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T38","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T39","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T40","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T41","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T42","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T43","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T44","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T45","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T46","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T47","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T48","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T49","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T50","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T51","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T52","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T53","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T54","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T55","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T56","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T57","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T58","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T59","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T60","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T61","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T62","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T63","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T64","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T65","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T66","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T67","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T68","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T69","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T70","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T71","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T72","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T73","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T74","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T75","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T76","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T77","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T78","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T79","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T80","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T81","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T82","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T83","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T84","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T85","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T86","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T87","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T88","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T89","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T90","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T91","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T92","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T93","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T94","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T95","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T96","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T97","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T98","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T99","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T100","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T101","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T102","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T103","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T104","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T105","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T106","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T107","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T108","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T109","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T110","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T111","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T112","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T113","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T114","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T115","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T116","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T117","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T118","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T119","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T120","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T121","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T122","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T123","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T124","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T125","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T126","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T127","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T128","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T129","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T130","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T131","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T132","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T133","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T134","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T135","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T136","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T137","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T138","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T139","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T140","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T141","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T142","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T143","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T208","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T209","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T210","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T211","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T212","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T213","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T214","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T215","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T216","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T217","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T218","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T219","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T220","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T221","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T222","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T223","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T224","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T225","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T226","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T227","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T228","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T229","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T230","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T231","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T232","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T233","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T234","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T235","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T236","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T237","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T238","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T239","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T240","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T241","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T242","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T243","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T244","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T245","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T246","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T247","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T248","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T249","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T250","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T251","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T252","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T197","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T198","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T199","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T200","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T201","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T202","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T203","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T204","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T205","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T206","pred":"source","obj":"BLAH6-GNI-CORPUS2"},{"subj":"T207","pred":"source","obj":"BLAH6-GNI-CORPUS2"}]}],"config":{"attribute types":[{"pred":"source","value type":"selection","values":[{"id":"BLAH6-GNI-CORPUS","color":"#df93ec","default":true},{"id":"BLAH6-GNI-CORPUS2","color":"#93ecc5"}]}]}}