├── .gitignore ├── RDF_output └── semrep_1.xml ├── RDFizer.py ├── README.md ├── SemRep_RDFizer.sh ├── images ├── PubAnnotation_json.jpg ├── SemRep+PubAnnotation.jpg ├── SemRepRDF_Open.gliffy ├── SemRepRDF_Open.jpg ├── SempRep_PA_triples.gliffy └── SempRep_PA_triples.jpg └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | # Distribution / packaging 2 | .Python 3 | build/ 4 | develop-eggs/ 5 | dist/ 6 | downloads/ 7 | eggs/ 8 | .eggs/ 9 | lib/ 10 | lib64/ 11 | parts/ 12 | sdist/ 13 | var/ 14 | wheels/ 15 | *.egg-info/ 16 | .installed.cfg 17 | *.egg 18 | 19 | # Installer logs 20 | pip-log.txt 21 | pip-delete-this-directory.txt 22 | 23 | # Unit test / coverage reports 24 | htmlcov/ 25 | .tox/ 26 | .coverage 27 | .coverage.* 28 | .cache 29 | nosetests.xml 30 | coverage.xml 31 | *.cover 32 | .hypothesis/ 33 | 34 | # Jupyter Notebook 35 | .ipynb_checkpoints 36 | 37 | # Environments 38 | .env 39 | .idea/ 40 | 41 | # specific scripts 42 | RDFizer.ipynb 43 | README.md 44 | 45 | #directories 46 | images/drafts/ 47 | 48 | #data 49 | SemRepRDF_PMIDS.tsv -------------------------------------------------------------------------------- /RDF_output/semrep_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 165 14 | ti 15 | 228 16 | 17 | 18 | 19 | 20 | Formate assay in body fluids: application in methanol poisoning. 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 178 35 | 173 36 | 37 | 38 | 39 | 1975 40 | 1 41 | 42 | 43 | 44 | 165 45 | 172 46 | 47 | 48 | 49 | 50 | 178 51 | 52 | 165 53 | 54 | 55 | 56 | 209 57 | 207 58 | 59 | 60 | 61 | 1.7 62 | 63 | SemRep 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | formate 72 | 73 | Methyl alcohol poisoning 74 | 75 | 76 | 77 | Assay 78 | 79 | 80 | 81 | 82 | 83 | 84 | USES 85 | 86 | DIAGNOSES 87 | 88 | 89 | 90 | 210 91 | 228 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | -------------------------------------------------------------------------------- /RDFizer.py: -------------------------------------------------------------------------------- 1 | ########################################################################################## 2 | # RDFizer.py 3 | # Purpose: convert SemRep predications into RDF triples 4 | # version 1.0.0 5 | # date: 12.19.2017 6 | # Python 2.7.13 7 | # ################################### 8 | # Licensing: The SemRep (Database Version 3.0_A; SemRep Version 1.7; Date 12/31/2016) is the original source of the 9 | # predications. Neither the United States Government, the U.S. Department of Health and Human Services, the National 10 | # Institutes of Health, the National Library of Medicine, the Lister Hill National Center for Biomedical Communications, 11 | # nor any of their agencies, contractors, subcontractors, or employees make any warranties, expressed or implied, with 12 | # respect to the SKR resources, and furthermore, they assume no liability for any party's use, or the results of such 13 | # use, of any part of these tools. For the SemRepRDF-Open version, minor modifications to the original SemRep 14 | # predications include the mapping of UMLS CUIs to open resource concept identifiers. 15 | ########################################################################################## 16 | 17 | 18 | ##NEEDS: 19 | #1. Dockers for triples and docker that can download SemMedDB instance 20 | #2. autmoatic build 21 | #3. add github topics to repo/create a wikipage for it 22 | #4. write testing 23 | #5. think through combining with PubAnnotation - and or the way that we will map the UMLS concepts to other 24 | # terminologies 25 | #6. add wording to top of output file to be in compliance with terms and use agreement. 26 | 27 | # install needed libraries 28 | import argparse 29 | import base64 30 | from functools import partial 31 | import hashlib 32 | import multiprocessing 33 | from mysql.connector import Error, errorcode 34 | import MySQLdb 35 | import os 36 | import sys 37 | from rdflib import Namespace 38 | from rdflib.namespace import RDF, DCTERMS, RDFS 39 | from rdflib import Graph 40 | from rdflib import URIRef, Literal 41 | 42 | 43 | 44 | 45 | 46 | def DBConnect(host, username, password, db): 47 | """ 48 | Function takes several strings and an integer that contain information on how to connect to a MySQL database 49 | containing the SemMedDB database instance. The function returns a string representing the cursor object necessary 50 | for querying the database as well as a string that stores the database connection (needed to close the connection 51 | to the database after querying is complete). 52 | 53 | :param host: string representing the database host name 54 | :param username: string representing the database username 55 | :param password: string representing the database password 56 | :param db: string representing the database name 57 | 58 | :return: strings representing the cursor object necessary for querying the database and the database object 59 | """ 60 | 61 | try: 62 | cnx = MySQLdb.connect(host=host, 63 | user=username, 64 | passwd=password, 65 | db=db) 66 | # verify that connection to database is valid 67 | except Error as err: 68 | if err.errno == errorcode.ER_ACCESS_DENIED_ERROR: 69 | print("Something is wrong with your user name or password") 70 | elif err.errno == errorcode.ER_BAD_DB_ERROR: 71 | print("Database does not exist") 72 | else: 73 | print(err) 74 | else: 75 | return cnx 76 | 77 | 78 | 79 | def QueryRunner(db_info, query): 80 | """ 81 | Function takes a list storing information needed to access MySQL database and a string storing an SQL query as 82 | input. The query is then processed against the database via the cursor. Prior to returning results, the function 83 | verifies that query returned data, otherwise an exception is raised. The function returns a list of lists where 84 | each list contains one row of output. 85 | 86 | :param db_info (list): list of information needed to connect to a database 87 | :param query (str): string storing an SQL query 88 | 89 | :return: list of lists where each list contains one row of output 90 | """ 91 | 92 | # execute query against a MySQL DB 93 | db_cnx = DBConnect(db_info[0], db_info[1], db_info[2], db_info[3]) 94 | cursor = db_cnx.cursor() 95 | cursor.execute(query) 96 | 97 | # verify that query returned results 98 | if int(cursor.rowcount) > 0: 99 | return cursor.fetchall() 100 | else: 101 | raise Exception("Query returned no results") 102 | 103 | 104 | 105 | def SentenceSpan(db_info, sentence_id): 106 | """Function takes a list storing information needed to access MySQL database and a string storing an identifier. The 107 | function uses this information to run a query against the database. The query uses the string identifier to retrieve 108 | all start and end indices for the given identifier. Prior to returning results, the function verifies that the 109 | returned start and stop indices for the sentence make sense (i.e., that the stop index is equal to or larger 110 | than the start index, otherwise an exception is raised. The function returns a list of start and stop indexes. 111 | 112 | :param db_info (list): list of information needed to connect to a database 113 | :param sentence_id (str): sentence identifier 114 | 115 | :return: a list of start and stop indices for the input sentence identifier 116 | """ 117 | 118 | sent_span = QueryRunner(db_info, 119 | ("select p.SENTENCE_ID, " 120 | " MIN(LEAST(pa.PREDICATE_START_INDEX, pa.SUBJECT_START_INDEX, pa.OBJECT_START_INDEX))," 121 | " MAX(GREATEST(pa.PREDICATE_END_INDEX, pa.SUBJECT_END_INDEX, pa.OBJECT_END_INDEX))" 122 | " from SemMedDB.PREDICATION p " 123 | " inner join SemMedDB.PREDICATION_AUX pa on pa.PREDICATION_ID = p.PREDICATION_ID" 124 | " where p.SENTENCE_ID = " + "'" + str(sentence_id) + "'" + 125 | " GROUP BY p.SENTENCE_ID")) 126 | 127 | # verify that query returned results 128 | if int(sent_span[0][2]) >= int(sent_span[0][1]): 129 | return str(sent_span[0][1]), str(sent_span[0][2]) 130 | else: 131 | raise Exception("Sentence start and end indices are incorrect") 132 | 133 | 134 | 135 | def TripleMaker(pmid, db_info): 136 | """ 137 | 138 | :param pmid: 139 | :param db_info: 140 | :return: 141 | """ 142 | 143 | ## GET DATA FOR TRIPLES ## 144 | # run query to get results needed for generating triples 145 | res = [map(str, x) for x in QueryRunner(db_info, 146 | ("select *" 147 | " from SemMedDB.PREDICATION p" 148 | " inner join SemMedDB.SENTENCE s on s.SENTENCE_ID = p.SENTENCE_ID" \ 149 | " inner join " 150 | "SemMedDB.CITATIONS c on c.PMID = p.PMID" \ 151 | " inner join SemMedDB.PREDICATION_AUX pa on pa.PREDICATION_ID = " 152 | "p.PREDICATION_ID" \ 153 | " where p.PMID = " + "'" + str(pmid) + "'" 154 | " order by p.PREDICATION_ID"))] 155 | 156 | # get database version information 157 | vers = [map(str, x) for x in QueryRunner(db_info, ("select * from SemMedDB.METAINFO"))] 158 | version = base64.b64encode(hashlib.sha1("semrep" + str(vers[0][1])).digest()) 159 | 160 | ##CREATE TRIPLES 161 | 162 | # add namespaces 163 | nlm = Namespace("https://skr3.nlm.nih.gov/") 164 | oa = Namespace("http://www.w3.org/ns/oa#") 165 | oa_ext = Namespace("http://www.weneedaurl.now/") 166 | obo = Namespace("http://purl.obolibrary.org/obo/") 167 | prov = Namespace("http://www.w3.org/ns/prov#") 168 | sep = Namespace("http://purl.obolibrary.org/obo/sep/") 169 | swo = Namespace("http://purl.obolibrary.org/obo/swo/") 170 | tao = Namespace("http://pubannotation.org/ontology/tao.owl#") 171 | umls = Namespace("http://uts-ws.nlm.nih.gov/rest/content/current/CUI/") 172 | 173 | # add identifiers 174 | prj = "http://pubannotation.org/projects/semrep/" 175 | doc = "http://pubannotation.org/docs/sourcedb/PMC/sourceid/" + str(pmid) + "/divs/0" 176 | sent = "http://pubannotation.org/projects/sentences/PMC-" + str(pmid) + "-0-sentence_" 177 | span = "http://pubannotation.org/docs/sourcedb/PMC/sourceid/" + str(pmid) + "/divs/0/spans/" 178 | concept = "http://pubannotation.org/projects/sentences/PMC-" + str(pmid) + "-0-T_" 179 | 180 | # create graph 181 | g = Graph() 182 | annot_graph = base64.b64encode(hashlib.sha1(str(pmid)).digest()) 183 | 184 | # document provenance 185 | g.add((URIRef(str(prj) + str(annot_graph)), URIRef(str(oa) + 'has_source'), URIRef(str(doc)))) 186 | g.add((URIRef(str(doc)), DCTERMS.published, Literal(str(res[0][21])))) 187 | g.add((URIRef(str(doc)), RDF.type, URIRef(str(obo) + "IAO_0000310"))) 188 | g.add((URIRef(str(doc)), DCTERMS.identifier, Literal(str(pmid)))) 189 | 190 | # annotation description triples 191 | g.add((URIRef(str(prj) + str(annot_graph)), URIRef(str(prov) + 'atTime'), URIRef(str(vers[0][2])))) 192 | g.add((URIRef(str(prj) + str(annot_graph)), URIRef(str(prov) + 'wasGeneratedBy'), URIRef(str(nlm) + str(version)))) 193 | g.add((URIRef(str(prj) + str(annot_graph)), RDF.type, URIRef(str(prov) + 'Activity'))) 194 | g.add((URIRef(str(prj) + str(annot_graph)), RDF.type, URIRef(str(oa_ext) + 'OA_Concept_Annotation'))) 195 | g.add((URIRef(str(nlm) + str(version)), URIRef(str(sep) + 'SEP_00065'), Literal(str(vers[0][1])))) 196 | g.add((URIRef(str(nlm) + str(version)), RDF.type, URIRef(str(swo) + 'SWO_0000001'))) 197 | g.add((URIRef(str(nlm) + str(version)), RDFS.label, Literal("SemRep"))) 198 | 199 | 200 | # loop over predications and add annotations to graph 201 | for annot in res: 202 | 203 | # get sentence span information 204 | sent_span = SentenceSpan(db_info, annot[1]) 205 | 206 | # resource description 207 | sents = str(sent) + str(annot[1]) 208 | g.add((URIRef(str(sents)), URIRef(str(tao) + 'belongs_to'), URIRef(str(doc)))) 209 | g.add((URIRef(str(sents)), URIRef(str(tao) + 'begins_at'), Literal(str(sent_span[0])))) 210 | g.add((URIRef(str(sents)), URIRef(str(tao) + 'ends_at'), Literal(str(sent_span[1])))) 211 | g.add((URIRef(str(sents)), DCTERMS.source, Literal(str(annot[14])))) 212 | g.add((URIRef(str(sents)), URIRef(str(tao) + 'has_text'), Literal(str(annot[16])))) 213 | g.add((URIRef(str(sents)), RDF.type, URIRef(str(tao) + 'Text_span'))) 214 | 215 | # subject 216 | span1 = str(span) + str(annot[27]) + "-" + str(annot[28]) 217 | g.add((URIRef(str(sents)), URIRef(str(tao) + 'contains'), URIRef(str(span1)))) 218 | g.add((URIRef(str(span1)), URIRef(str(tao) + 'begins_at'), Literal(str(annot[27])))) 219 | g.add((URIRef(str(span1)), URIRef(str(tao) + 'ends_at'), Literal(str(annot[28])))) 220 | 221 | if '|' in annot[4]: 222 | for con in annot[4].split('|'): 223 | concept1 = str(concept) + str(con) 224 | g.add((URIRef(str(span1)), URIRef(str(tao) + 'denotes'), URIRef(str(concept1)))) 225 | g.add((URIRef(str(concept1)), RDF.type, URIRef(str(tao) + 'Concept_entity'))) 226 | g.add((URIRef(str(concept1)), RDF.type, URIRef(str(RDF) + 'Subject'))) 227 | g.add((URIRef(str(RDF) + 'Subject'), DCTERMS.identifier, URIRef(str(umls) + str(annot[4])))) 228 | g.add((URIRef(str(RDF) + 'Subject'), RDFS.label, Literal(str(annot[5])))) 229 | else: 230 | concept1 = str(concept) + str(annot[4]) 231 | g.add((URIRef(str(span1)), URIRef(str(tao) + 'denotes'), URIRef(str(concept1)))) 232 | g.add((URIRef(str(concept1)), RDF.type, URIRef(str(tao) + 'Concept_entity'))) 233 | g.add((URIRef(str(concept1)), RDF.type, URIRef(str(RDF) + 'Subject'))) 234 | g.add((URIRef(str(RDF) + 'Subject'), DCTERMS.identifier, URIRef(str(umls) + str(annot[4])))) 235 | g.add((URIRef(str(RDF) + 'Subject'), RDFS.label, Literal(str(annot[5])))) 236 | 237 | # predicate 238 | span2 = str(span) + str(annot[31]) + "-" + str(annot[32]) 239 | g.add((URIRef(str(sents)), URIRef(str(tao) + 'contains'), URIRef(str(span2)))) 240 | g.add((URIRef(str(span2)), URIRef(str(tao) + 'begins_at'), Literal(str(annot[31])))) 241 | g.add((URIRef(str(span2)), URIRef(str(tao) + 'ends_at'), Literal(str(annot[32])))) 242 | 243 | if '|' in annot[3]: 244 | for con in annot[3].split('|'): 245 | concept2 = str(concept) + str(con) 246 | g.add((URIRef(str(span2)), URIRef(str(tao) + 'denotes'), URIRef(str(concept1)))) 247 | g.add((URIRef(str(concept2)), RDF.type, URIRef(str(tao) + 'Concept_entity'))) 248 | g.add((URIRef(str(concept2)), RDF.type, URIRef(str(RDF) + 'Predicate'))) 249 | g.add((URIRef(str(RDF) + 'Predicate'), DCTERMS.identifier, URIRef(str(umls) + str(annot[3])))) 250 | g.add((URIRef(str(RDF) + 'Predicate'), RDFS.label, Literal(str(annot[3])))) 251 | else: 252 | concept2 = str(concept) + str(annot[3]) 253 | g.add((URIRef(str(span2)), URIRef(str(tao) + 'denotes'), URIRef(str(concept1)))) 254 | g.add((URIRef(str(concept2)), RDF.type, URIRef(str(tao) + 'Concept_entity'))) 255 | g.add((URIRef(str(concept2)), RDF.type, URIRef(str(RDF) + 'Predicate'))) 256 | g.add((URIRef(str(RDF) + 'Predicate'), DCTERMS.identifier, URIRef(str(umls) + str(annot[3])))) 257 | g.add((URIRef(str(RDF) + 'Predicate'), RDFS.label, Literal(str(annot[3])))) 258 | 259 | # object 260 | span3 = str(span) + str(annot[36]) + "-" + str(annot[37]) 261 | g.add((URIRef(str(sents)), URIRef(str(tao) + 'contains'), URIRef(str(span3)))) 262 | g.add((URIRef(str(span3)), URIRef(str(tao) + 'begins_at'), Literal(str(annot[36])))) 263 | g.add((URIRef(str(span3)), URIRef(str(tao) + 'ends_at'), Literal(str(annot[37])))) 264 | 265 | if '|' in annot[8]: 266 | for con in annot[8].split('|'): 267 | concept3 = str(concept) + str(con) 268 | g.add((URIRef(str(span3)), URIRef(str(tao) + 'denotes'), URIRef(str(concept3)))) 269 | g.add((URIRef(str(concept3)), RDF.type, URIRef(str(tao) + 'Concept_entity'))) 270 | g.add((URIRef(str(concept3)), RDF.type, URIRef(str(RDF) + 'Object'))) 271 | g.add((URIRef(str(RDF) + 'Object'), DCTERMS.identifier, URIRef(str(umls) + str(annot[8])))) 272 | g.add((URIRef(str(RDF) + 'Object'), RDFS.label, Literal(str(annot[9])))) 273 | else: 274 | concept3 = str(concept) + str(annot[8]) 275 | g.add((URIRef(str(span3)), URIRef(str(tao) + 'denotes'), URIRef(str(concept3)))) 276 | g.add((URIRef(str(concept3)), RDF.type, URIRef(str(tao) + 'Concept_entity'))) 277 | g.add((URIRef(str(concept3)), RDF.type, URIRef(str(RDF) + 'Object'))) 278 | g.add((URIRef(str(RDF) + 'Object'), DCTERMS.identifier, URIRef(str(umls) + str(annot[8])))) 279 | g.add((URIRef(str(RDF) + 'Object'), RDFS.label, Literal(str(annot[9])))) 280 | 281 | # graph-level triples 282 | g.add((URIRef(str(span1)), URIRef(str(tao) + 'follows'), URIRef(str(span2)))) 283 | g.add((URIRef(str(span2)), URIRef(str(tao) + 'follows'), URIRef(str(span3)))) 284 | 285 | # serialize annotation graph for pmid 286 | out = "RDF_output/semrep_" + str(pmid) 287 | g.serialize(destination=str(out) + ".xml", format='xml') 288 | 289 | 290 | 291 | 292 | def main(): 293 | parser = argparse.ArgumentParser(description='SemRepRDF: This program is designed to ') 294 | parser.add_argument('-h', '--host', help='MySQL host information', required=True) 295 | parser.add_argument('-u', '--user', help='MySQL username information', required=True) 296 | parser.add_argument('-p', '--passwd', help='MySQL root information', required=True) 297 | parser.add_argument('-d', '--db', help='MySQL password information', required=True) 298 | args = parser.parse_args() 299 | 300 | # set default encoding to utf8 301 | reload(sys) 302 | sys.setdefaultencoding('utf8') # needed to parse article titles 303 | 304 | # connect to database 305 | # db_info = [args.host, args.user, args.passwd, args.db] 306 | db_info = ['', 'root', 'YRUS9bjb', 'SemMedDB'] 307 | 308 | # retrieve all pubmed ids to facilitate parallel processing 309 | pmids = [str(id[0]) for id in QueryRunner(db_info, ("select PMID from SemMedDB.CITATIONS"))] 310 | 311 | # configure multiprocessing settings 312 | pool = multiprocessing.Pool() # set up pool 313 | func = partial(TripleMaker, db_info) 314 | triples = pool.map(func, pmids) 315 | 316 | # close and join pool 317 | pool.close() 318 | pool.join() 319 | 320 | if __name__ == '__main__': 321 | main() 322 | 323 | 324 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SemRepRDF 2 | This repository contains code used to transform the National Library of Medicine’s Semantic Representation (SemRep) predications into open semantically-linked annotations. Please see the Wiki for more details. 3 | 4 | 5 | ## Getting Started 6 | 7 | To obtain an RDFized version of SemRep, download the zip file or fork the project repository. Additional instructions can be found under [*Installation*](Installation). 8 | 9 | 10 | ### Installation 11 | 12 | This program was written on a system running OS X Sierra. Successful execution of this program requires Python version 2.7. 13 | 14 | * Python 2.7.13 modules 15 | * Native Modules: base64, hashlib, multiprocessing, MySQLdb, os, sys 16 | * To download needed modules run the following from the working directory of the project folder: 17 | 18 | ``` 19 | pip install -r requirements.txt 20 | ``` 21 | 22 | * Semantic MEDLINE Database 23 | * If using SemRepRDF-UMLS, you will need to obtain a free [UMLS license](https://www.nlm.nih.gov/research/umls/) 24 | * Download and configure the latest SemMedDB MySQL data dump [SemMedDB](https://skr3.nlm.nih.gov/SemMedDB/dbinfo.html) 25 | 26 | * Although not a requirement, the program has been written to run in parallel on a super computer. 27 | 28 | 29 | ## Running Program 30 | 31 | The program can be run from the command line via argparse arguments. 32 | 33 | ``` 34 | # from project directory - find help menu 35 | tiffanycallahan$ python RDFizer.py -h 36 | 37 | 38 | 39 | # to run the program 40 | tiffanycallahan$ python RDFizer.py 41 | 42 | ``` 43 | 44 | ## Versioning 45 | 46 | We use [SemVer](http://semver.org/) for versioning. 47 | 48 | ## Testing 49 | 50 | 51 | ## License 52 | Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. 53 | 54 | This repository generates two different kinds of output that are subject to two different kind of licensing (see details regarding these representations on the [Wiki](https://github.com/callahantiff/SemRepRDF/wiki/Licensing)): 55 | 1. The SemRepRDF-UMLS representation uses concepts that are part of the UMLS Metathesaurus and are thus subject to the [UMLS license agreement](https://uts.nlm.nih.gov/license.html). 56 | 2. The SemRepRDF-LOD version has been generated in such a way that all annotated concept identifiers come only from terminologies, vocabularies, and ontologies with open license agreements. Minor modifications to the original SemRep predications include the mapping of UMLS CUIs to open resource concept identifiers. 57 | 58 | #### SemRepRDF-Open Resources and Tools 59 | 60 | Table of UMLS Metathesaurus vocabularies and NLM tools used when generating SemRepRDF-LOD. For details regarding how each of these sources will be used when generating SemRepRDF-LOD, see Wiki page on [Resource Mapping](https://github.com/callahantiff/SemRepRDF/wiki/UMLS-Concept-and-Relation-Mapping). 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 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 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 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 |
SourceVersionLicenseTerms of Use
RESOUCES
Anatomical Therapeutic Chemical (ATC) 2017AB Non-Commercial Use of all or parts of the material requires reference to the WHO Collaborating Centre for Drug Statistics Methodology. Copying and distribution for commercial purposes is not allowed. Additional Information. Changing or manipulating the material is not allowed.
DrugBank 2017AB CC BY-NC 4.0 DrugBank is offered to the public as a freely available resource. Use and re-distribution of the data, in whole or in part, for commercial purposes (including internal use) requires a license. Additional Information
Gene Ontology (GO) 2017AB CC-BY 4.0 The GOC wishes the users and consumers of GO data publicly display the date(s) and/or version number(s) of the relevant GO files, data, or software version. The GO is evolving and changes regularly--this information is critical to downstream consumers and users. Additional Information
HUGO Gene Nomenclature Committee (HGNC) 2017AB It is a condition of our funding from NIH and the Wellcome Trust that the nomenclature and information we provide is freely available to all. Anyone may use the HGNC data, but we request that they reference the "HUGO Gene Nomenclature Committee at the European Bioinformatics Institute" and the website where possible. Additional Information
Human Phenotype Ontology (HPO) 2017AB The HPO vocabularies, annotation files, tools and documentation are freely available. The HPO is copyrighted to protect the integrity of the vocabularies, which means that changes to the HPO vocabularies need to be done by HPO developers. However, anyone can download the HPO and use the ontologies or other HPO files under three conditions: 106 |
    107 |
  • That the Human Phenotype Ontology Consortium is acknowledged and cited properly.
  • 108 |
  • That any HPO Consortium file(s) displayed publicly include the date(s) and/or version number(s) of the relevant HPO file(s).
  • 109 |
  • That neither the content of the HPO file(s) nor the logical relationships embedded within the HPO file(s) be altered in any way. (Content additions and modifications have to be suggested using our issue tracker).
  • 110 |
  • We suggest that you follow standard scientific citation practice if you use the HPO in publications.
    5)Services and products have to display a short acknowledgement statement, that makes clear that the service/product is using HPO.
  • 111 |
112 | Additional Information
The International Classification of Diseases, Ninth Revision, Clinical Modification (ICD9-CM) 2017AB Not specified in readme when downloaded Availible for download via ftp through the CDC. Additional Information
The International Classification of Diseases, Tenth Revision (ICD10) 2017AB WHO is able to issue internal licences to organizations wishing to incorporate WHO 126 | classifications into their internal information systems for use by employees for use for 127 | administrative purposes eg. health records management". For more information regarding guidelines for using resource, see link. Additional Information
The International Classification of Diseases, Tenth Revision, Procedure Coding System (ICD10-PCS) 2017AB WHO is able to issue internal licences to organizations wishing to incorporate WHO 135 | classifications into their internal information systems for use by employees for use for 136 | administrative purposes eg. health records management. For more information regarding guidelines for using resource, see link. Additional Information
The Logical Observation Identifiers Names and Codes terminology (LOINC) 2017AB Licensed and Copyrighted, free to use The Terms of Use are very detailed, see link. Additional Information
NCBI Taxonomy 2017AB Databases of molecular data on the NCBI Web site include such examples as nucleotide sequences (GenBank), protein sequences, macromolecular structures, molecular variation, gene expression, and mapping data. They are designed to provide and encourage access within the scientific community to sources of current and comprehensive information. Therefore, NCBI itself places no restrictions on the use or distribution of the data contained therein. Nor do we accept data when the submitter has requested restrictions on reuse or redistribution. For more information regarding guidelines for using resource, see link. Additional Information
National Drug File - Reference Terminology 2017AB UMLS Category 0 license; but vocabulary can be downloaded from NCI without license or registration. For more information regarding guidelines for using resource, see link. Additional Information
Foundational Model of Anatomy (FMA) 2017AB Licensed through the University of Washington, which states "The Foundational Model of Anatomy ontology (FMA) is OPEN SOURCE and available for general use". For more information regarding guidelines for using resource, see link. Additional Information
The Healthcare Common Procedure Coding System (HCPCS) 2017AB Subject to same licensing as Current Procedural Terminology (CPT) codes. The AMA licenses thousands of organizations to use CPT data in a broad array of applications. The AMA’s licensing model for CPT is based on individual users. In each of these cases, organizations that utilize CPT in one of these systems are required to obtain a license for each system and for each Individual user—regardless of the number of codes they use. For more information regarding guidelines for using resource, see link. Additional Information
Online Mendelian Inheritance in Man (OMIM) 2017AB License prevents redistribution. For more information regarding guidelines for using resource, see link. Additional Information
TOOLS
Semantic Knowledge Representation 2017AB;
v 1.7
SKR resources are available to all applicants at no charge, both within and outside the United States. Redistributions of SKR resources in source or binary form must include the following list of conditions in the documentation and other materials provided with the distribution. 191 |
    192 |
  • In any publication or distribution of all or any portion of the SKR resources: (1) the user must attribute the source of the tools as SemRep and SemRep Tools with the release number and date; (2) the user must clearly annotate within the source code any modification made to SemRep and SemRep Tools; and (3) any subsequent distribution of the program, tools, or material based on SemRep and SemRep Tools, must be accomplished within the context of an open source set of terms and conditions such as the GNU General License.
  • 193 |
  • Bugs, questions, and/or issues relating to an SKR resource should be directed to the most recent in the chain of entities that may have modified and re-distributed this code.
  • 194 |
  • Users shall not assert any proprietary rights to any portion of an SKR resource, nor represent it or any part thereof to anyone as other than a United States Government product.
  • 195 |
  • The name of the U.S. Department of Health and Human Services, National Institutes of Health, National Library of Medicine, and Lister Hill National Center for Biomedical Communications may not be used to endorse or promote any products derived from an SKR resource without specific prior written permission.
  • 196 |
  • Neither the United States Government, the U.S. Department of Health and Human Services, the National Institutes of Health, the National Library of Medicine, the Lister Hill National Center for Biomedical Communications, nor any of their agencies, contractors, subcontractors, or employees make any warranties, expressed or implied, with respect to the SKR resources, and furthermore, they assume no liability for any party's use, or the results of such use, of any part of these tools.
  • 197 |
  • These Terms and Conditions are in effect as long as the user retains any part of the SKR resources.
  • 198 |
199 | Additional Information
Semantic Network 2017AB;
v 54
The following Terms and Conditions apply for use of the UMLS Semantic Network. Using the UMLS Semantic Network indicates your acceptance of the following Terms and Conditions. These Terms and Conditions apply to all the UMLS Semantic Network files, independent of format and method of acquisition. For more information regarding guidelines for using resource, see link. Additional Information
211 | 212 | ## Acknowledgments 213 | 214 | * Project completed as part of the 4th annual Biomedical Linked Annotation Hackathon ([BLAH](http://blah4.linkedannotation.org)) held in Kashiwa, Japan. 215 | 216 | * README was generated from a modified markdown template originally created by **Billie Thompson [PurpleBooth](https://github.com/PurpleBooth)**. 217 | 218 | -------------------------------------------------------------------------------- /SemRep_RDFizer.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if ! [[ -e README.md ]]; then 4 | echo "Please run from the root of the project." 5 | exit 1 6 | fi 7 | 8 | # run python script 9 | python /Users/tiffanycallahan/Dropbox/Papers-Conferences-Projects/Hackathons/BLAH 2018/SemRep_RDF.py -h "$path" -u 10 | "$path" -p "$path" -d "$path" 11 | -------------------------------------------------------------------------------- /images/PubAnnotation_json.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callahantiff/SemRepRDF/157e95088d93684f4b907389b179ff5e6f715d1d/images/PubAnnotation_json.jpg -------------------------------------------------------------------------------- /images/SemRep+PubAnnotation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callahantiff/SemRepRDF/157e95088d93684f4b907389b179ff5e6f715d1d/images/SemRep+PubAnnotation.jpg -------------------------------------------------------------------------------- /images/SemRepRDF_Open.gliffy: -------------------------------------------------------------------------------- 1 | {"contentType":"application/gliffy+json","version":"1.1","metadata":{"title":"untitled","revision":0,"exportBorder":false},"embeddedResources":{"index":0,"resources":[]},"stage":{"objects":[{"x":1205,"y":494,"rotation":0,"id":87,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":64,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":false,"interpolationType":"linear","cornerRadius":null,"controlPath":[[0,0],[0,0]],"lockSegments":{}}},"children":null,"linkMap":[]},{"x":780,"y":557,"rotation":0,"id":53,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":39,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#ff0000","fillColor":"none","dashStyle":"4.0,4.0","startArrow":0,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[29,-5],[55.67135375475175,-5],[82.3427075095035,-5],[109.01406126425525,-5]],"lockSegments":{}}},"children":null,"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":48,"px":1,"py":0.5}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":29,"px":0,"py":0.5}}},"linkMap":[]},{"x":721,"y":555,"rotation":0,"id":44,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":34,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#ff0000","fillColor":"none","dashStyle":"4.0,4.0","startArrow":0,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[88,-3],[128,-3],[128,52],[168,52]],"lockSegments":{}}},"children":null,"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":48,"px":1,"py":0.5}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":31,"px":0,"py":0.5}}},"linkMap":[]},{"x":718,"y":554,"rotation":0,"id":42,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":33,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#ff0000","fillColor":"none","dashStyle":"4.0,4.0","startArrow":0,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[91,-2],[132,-2],[132,-53],[173,-53]],"lockSegments":{}}},"children":null,"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":48,"px":1,"py":0.5}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":27,"px":0,"py":0.5}}},"linkMap":[]},{"x":359,"y":571,"rotation":0,"id":13,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":14,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-117,-17],[35,-17],[35,136.7157287525381],[100,136.7157287525381]],"lockSegments":{"1":true}}},"children":[{"x":0,"y":0,"rotation":0,"id":14,"uid":null,"width":19,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

ISA

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":0,"px":1,"py":0.5}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":46,"px":1.1102230246251563e-16,"py":0.2928932188134525}}},"linkMap":[]},{"x":349,"y":561,"rotation":0,"id":11,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":12,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-107,-7],[119.9314575050762,-7],[119.9314575050762,-84],[346.8629150101524,-84],[346.8629150101524,-29]],"lockSegments":{"2":true}}},"children":[{"x":0,"y":0,"rotation":0,"id":12,"uid":null,"width":37,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

inhibits

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":0,"px":1,"py":0.5}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":48,"px":0.2928932188134524,"py":0}}},"linkMap":[]},{"x":339,"y":551,"rotation":0,"id":9,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":10,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-97,3],[55.5,3],[55.5,-145],[108,-145]],"lockSegments":{"1":true}}},"children":[{"x":0,"y":0,"rotation":0,"id":10,"uid":null,"width":30,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

treats

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":0,"px":1,"py":0.5}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":3,"px":0,"py":0.5}}},"linkMap":[]},{"x":349,"y":561,"rotation":0,"id":141,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":97,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#ff0000","fillColor":"none","dashStyle":"4.0,4.0","startArrow":0,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-107,-7],[-27.5,-7],[-27.5,-163.2842712474619],[98,-163.2842712474619]],"lockSegments":{"1":true}}},"children":[{"x":0,"y":0,"rotation":0,"id":142,"uid":null,"width":133,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

obo:RO_0002606\n

is_substance_that_treats

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":0,"px":1,"py":0.5}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":3,"px":1.1102230246251563e-16,"py":0.2928932188134525}}},"linkMap":[]},{"x":649,"y":532,"rotation":0,"id":48,"uid":"com.gliffy.shape.basic.basic_v1.default.round_rectangle","width":160,"height":40,"lockAspectRatio":false,"lockShape":false,"order":37,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.round_rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#999999","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":3.199999999999999,"y":0,"rotation":0,"id":49,"uid":null,"width":153.59999999999997,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

Bcr-Abl tyrosine kinase

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":369,"y":581,"rotation":0,"id":148,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":99,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#ff0000","fillColor":"none","dashStyle":"4.0,4.0","startArrow":0,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-127,-27],[-49,-27],[-49,143.2842712474619],[90,143.2842712474619]],"lockSegments":{"1":true}}},"children":[{"x":0,"y":0,"rotation":0,"id":149,"uid":null,"width":85,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

rdfs:subClassOf

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":0,"px":1,"py":0.5}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":46,"px":0,"py":0.7071067811865475}}},"linkMap":[]},{"x":359,"y":571,"rotation":0,"id":150,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":101,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#ff0000","fillColor":"none","dashStyle":"4.0,4.0","startArrow":0,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-117,-17],[109.9314575050762,-17],[109.9314575050762,54],[336.8629150101524,54],[336.8629150101524,1]],"lockSegments":{"2":true}}},"children":[{"x":0,"y":0,"rotation":0,"id":151,"uid":null,"width":95,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

obo:RO_0002408\n

directly_inhibits

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":0,"px":1,"py":0.5}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":48,"px":0.29289321881345254,"py":0.9999999999999998}}},"linkMap":[]},{"x":107,"y":270,"rotation":0,"id":62,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":168,"height":30,"lockAspectRatio":false,"lockShape":false,"order":46,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":3.3600000000000003,"y":0,"rotation":0,"id":63,"uid":null,"width":161.28000000000006,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

antineoplastic and immunomodulating agents

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":108,"y":315,"rotation":0,"id":60,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":168,"height":30,"lockAspectRatio":false,"lockShape":false,"order":44,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":3.3600000000000003,"y":0,"rotation":0,"id":61,"uid":null,"width":161.28000000000006,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

antineoplastic agents

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":108,"y":407,"rotation":0,"id":58,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":168,"height":30,"lockAspectRatio":false,"lockShape":false,"order":42,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":3.3600000000000003,"y":0,"rotation":0,"id":59,"uid":null,"width":161.28000000000006,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

Protein kinase inhibitors, antineoplastic drugs

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":108,"y":360,"rotation":0,"id":56,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":168,"height":30,"lockAspectRatio":false,"lockShape":false,"order":40,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":3.3600000000000003,"y":0,"rotation":0,"id":57,"uid":null,"width":161.28000000000006,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

Other antineoplastic agents in ATC

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":193,"y":527,"rotation":0,"id":36,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":30,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-2,7.009999000199969],[-2,-9.660000666533392],[-2,-26.330000333266696],[-2,-43]],"lockSegments":{}}},"children":null,"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":0,"px":0.5,"py":0}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":23,"px":0.5,"py":1}}},"linkMap":[]},{"x":141,"y":454,"rotation":0,"id":23,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":100,"height":30,"lockAspectRatio":false,"lockShape":false,"order":20,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2,"y":0,"rotation":0,"id":24,"uid":null,"width":96,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

ATC_L01XE01

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":142,"y":534,"rotation":0,"id":0,"uid":"com.gliffy.shape.basic.basic_v1.default.round_rectangle","width":100,"height":40,"lockAspectRatio":false,"lockShape":false,"order":6,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.round_rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#999999","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2,"y":0,"rotation":0,"id":2,"uid":null,"width":96,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

imatinib

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":202,"y":271,"rotation":0,"id":64,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":5,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":false,"interpolationType":"linear","cornerRadius":null,"controlPath":[[-11,29],[-11,183]],"lockSegments":{}}},"children":null,"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":62,"px":0.5,"py":1}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":23,"px":0.5,"py":0}}},"linkMap":[]},{"x":458,"y":156,"rotation":0,"id":94,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":138,"height":28,"lockAspectRatio":false,"lockShape":false,"order":71,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.76,"y":0,"rotation":0,"id":95,"uid":null,"width":132.48,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

phenotypic abnormality

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":459,"y":196,"rotation":0,"id":92,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":136,"height":36,"lockAspectRatio":false,"lockShape":false,"order":69,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.719999999999999,"y":0,"rotation":0,"id":93,"uid":null,"width":130.55999999999995,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

abnormality of cellular immune system

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":459,"y":243,"rotation":0,"id":90,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":136,"height":37,"lockAspectRatio":false,"lockShape":false,"order":67,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.7199999999999993,"y":0,"rotation":0,"id":91,"uid":null,"width":130.5599999999999,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

abnormality of leukocytes

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":475,"y":294,"rotation":0,"id":88,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":104,"height":30,"lockAspectRatio":false,"lockShape":false,"order":65,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.08,"y":0,"rotation":0,"id":89,"uid":null,"width":99.84,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

leukemia

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":647,"y":100,"rotation":0,"id":84,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":119,"height":30,"lockAspectRatio":false,"lockShape":false,"order":62,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.3800000000000003,"y":0,"rotation":0,"id":85,"uid":null,"width":114.23999999999998,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

disease

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":646,"y":140,"rotation":0,"id":82,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":121,"height":30,"lockAspectRatio":false,"lockShape":false,"order":60,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.42,"y":0,"rotation":0,"id":83,"uid":null,"width":116.16000000000001,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

disease of cellular proliferation

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":645,"y":177,"rotation":0,"id":80,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":123,"height":23,"lockAspectRatio":false,"lockShape":false,"order":58,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.46,"y":0,"rotation":0,"id":81,"uid":null,"width":118.08000000000003,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

organ system cancer

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":644,"y":207,"rotation":0,"id":77,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":125,"height":26,"lockAspectRatio":false,"lockShape":false,"order":56,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.5,"y":0,"rotation":0,"id":78,"uid":null,"width":120,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

organ system cancer

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":644,"y":240,"rotation":0,"id":75,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":125,"height":30,"lockAspectRatio":false,"lockShape":false,"order":54,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.500000000000001,"y":0,"rotation":0,"id":76,"uid":null,"width":120.00000000000001,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

immune system cancer

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":645,"y":278,"rotation":0,"id":73,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":126,"height":24,"lockAspectRatio":false,"lockShape":false,"order":52,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.5199999999999996,"y":0,"rotation":0,"id":74,"uid":null,"width":120.96000000000002,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

hematologic cancer

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":644,"y":311,"rotation":0,"id":71,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":124,"height":30,"lockAspectRatio":false,"lockShape":false,"order":50,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.48,"y":0,"rotation":0,"id":72,"uid":null,"width":119.04,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

leukemia

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":644,"y":352,"rotation":0,"id":69,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":124,"height":30,"lockAspectRatio":false,"lockShape":false,"order":48,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.4799999999999995,"y":0,"rotation":0,"id":70,"uid":null,"width":119.04000000000002,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

myeloid leukemia

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":608,"y":409,"rotation":0,"id":40,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":32,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-81,-23],[-81,-29.333333333333314],[-81,-35.666666666666686],[-81,-42]],"lockSegments":{}}},"children":null,"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":3,"px":0.5,"py":0}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":21,"px":0.5,"py":1}}},"linkMap":[]},{"x":528,"y":381,"rotation":0,"id":39,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":31,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[79,25],[91.00462873691276,25],[103.00925747382541,25],[115.01388621073818,25]],"lockSegments":{}}},"children":null,"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":3,"px":1,"py":0.5}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":18,"px":0,"py":0.5}}},"linkMap":[]},{"x":477,"y":337,"rotation":0,"id":21,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":100,"height":30,"lockAspectRatio":false,"lockShape":false,"order":18,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2,"y":0,"rotation":0,"id":22,"uid":null,"width":96,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

HP_000558

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":643,"y":392,"rotation":0,"id":18,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":123.00000000000001,"height":30,"lockAspectRatio":false,"lockShape":false,"order":16,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.4600000000000004,"y":0,"rotation":0,"id":20,"uid":null,"width":118.08000000000001,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

DOID_8552

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":447,"y":386,"rotation":0,"id":3,"uid":"com.gliffy.shape.basic.basic_v1.default.round_rectangle","width":160,"height":40,"lockAspectRatio":false,"lockShape":false,"order":8,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.round_rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#999999","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":3.199999999999999,"y":0,"rotation":0,"id":4,"uid":null,"width":153.59999999999997,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

myeloid leukemia, chronic

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":715,"y":43,"rotation":0,"id":86,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":4,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":false,"interpolationType":"linear","cornerRadius":null,"controlPath":[[-8.5,87],[-10.5,364]],"lockSegments":{}}},"children":null,"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":84,"px":0.5,"py":1}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":18,"px":0.5,"py":0.5}}},"linkMap":[]},{"x":527,"y":329,"rotation":0,"id":96,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":3,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":false,"interpolationType":"linear","cornerRadius":null,"controlPath":[[0,23],[0,-159]],"lockSegments":{}}},"children":null,"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":21,"px":0.5,"py":0.5}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":94,"px":0.5,"py":0.5}}},"linkMap":[]},{"x":498,"y":988,"rotation":0,"id":123,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":120,"height":30,"lockAspectRatio":false,"lockShape":false,"order":95,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.4,"y":0,"rotation":0,"id":124,"uid":null,"width":115.2,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

role

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":499,"y":948,"rotation":0,"id":121,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":120,"height":30,"lockAspectRatio":false,"lockShape":false,"order":93,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.4,"y":0,"rotation":0,"id":122,"uid":null,"width":115.2,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

biological role

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":500,"y":909,"rotation":0,"id":119,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":120,"height":30,"lockAspectRatio":false,"lockShape":false,"order":91,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.4,"y":0,"rotation":0,"id":120,"uid":null,"width":115.2,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

biochemical role

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":501,"y":869,"rotation":0,"id":117,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":120,"height":30,"lockAspectRatio":false,"lockShape":false,"order":89,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.4,"y":0,"rotation":0,"id":118,"uid":null,"width":115.2,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

enzyme inhibitor

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":501,"y":829,"rotation":0,"id":115,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":120,"height":30,"lockAspectRatio":false,"lockShape":false,"order":87,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.4,"y":0,"rotation":0,"id":116,"uid":null,"width":115.2,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

transferase inhibitor

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":500,"y":788,"rotation":0,"id":113,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":120,"height":30,"lockAspectRatio":false,"lockShape":false,"order":85,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.4,"y":0,"rotation":0,"id":114,"uid":null,"width":115.2,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

p-containing group transferase inhibitor

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":459,"y":696,"rotation":0,"id":46,"uid":"com.gliffy.shape.basic.basic_v1.default.round_rectangle","width":200,"height":40,"lockAspectRatio":false,"lockShape":false,"order":35,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.round_rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#999999","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":3.9999999999999982,"y":0,"rotation":0,"id":47,"uid":null,"width":191.99999999999994,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

protein-tyrosine kinase inhibitor

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":500,"y":748,"rotation":0,"id":33,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":120,"height":30,"lockAspectRatio":false,"lockShape":false,"order":28,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.4,"y":0,"rotation":0,"id":34,"uid":null,"width":115.2,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

CHEBI_76817

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":562,"y":772,"rotation":0,"id":125,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":1,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":false,"interpolationType":"linear","cornerRadius":null,"controlPath":[[-2,-9],[-4,216]],"lockSegments":{}}},"children":null,"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":33,"px":0.5,"py":0.5}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":123,"px":0.5,"py":0}}},"linkMap":[]},{"x":613,"y":714,"rotation":0,"id":45,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":0,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[2,1],[-52,1],[-52,49],[-53,49]],"lockSegments":{"1":true}}},"children":null,"constraints":{"constraints":[],"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":33,"px":0.5,"py":0.5}}},"linkMap":[]},{"x":880,"y":528,"rotation":0,"id":154,"uid":"com.gliffy.shape.basic.basic_v1.default.round_rectangle","width":141,"height":103,"lockAspectRatio":false,"lockShape":false,"order":103,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.round_rectangle.basic_v1","strokeWidth":2,"strokeColor":"#ff0000","fillColor":"none","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[],"linkMap":[]},{"x":890,"y":223,"rotation":0,"id":108,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":100,"height":30,"lockAspectRatio":false,"lockShape":false,"order":83,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2,"y":0,"rotation":0,"id":109,"uid":null,"width":96,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

chemical entity

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":891,"y":268,"rotation":0,"id":106,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":100,"height":30,"lockAspectRatio":false,"lockShape":false,"order":81,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2,"y":0,"rotation":0,"id":107,"uid":null,"width":96,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

molecular entity

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":891,"y":314,"rotation":0,"id":104,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":100,"height":30,"lockAspectRatio":false,"lockShape":false,"order":79,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2,"y":0,"rotation":0,"id":105,"uid":null,"width":96,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

macromolecular complex

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":891,"y":356,"rotation":0,"id":102,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":100,"height":30,"lockAspectRatio":false,"lockShape":false,"order":77,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2,"y":0,"rotation":0,"id":103,"uid":null,"width":96,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

organic amino compound

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":891,"y":401,"rotation":0,"id":100,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":100,"height":30,"lockAspectRatio":false,"lockShape":false,"order":75,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2,"y":0,"rotation":0,"id":101,"uid":null,"width":96,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

amino acid chain

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":890,"y":443,"rotation":0,"id":98,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":100,"height":30,"lockAspectRatio":false,"lockShape":false,"order":73,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2,"y":0,"rotation":0,"id":99,"uid":null,"width":96,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

protein

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":889,"y":590,"rotation":0,"id":31,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":120,"height":34,"lockAspectRatio":false,"lockShape":false,"order":26,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.4,"y":0,"rotation":0,"id":32,"uid":null,"width":115.2,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

ENSG00000271484\n

Abl

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":889,"y":535,"rotation":0,"id":29,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":124,"height":37,"lockAspectRatio":false,"lockShape":false,"order":24,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.4800000000000004,"y":0,"rotation":0,"id":30,"uid":null,"width":119.03999999999998,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

ENSG00000186716\n

(Bcr)

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":891,"y":486,"rotation":0,"id":27,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":100,"height":30,"lockAspectRatio":false,"lockShape":false,"order":22,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#333333","fillColor":"#9fc5e8","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2,"y":0,"rotation":0,"id":28,"uid":null,"width":96,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

PR_000003582

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":941,"y":498,"rotation":0,"id":110,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":2,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":false,"interpolationType":"linear","cornerRadius":null,"controlPath":[[0,3],[-1,-260]],"lockSegments":{}}},"children":null,"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":27,"px":0.5,"py":0.5}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":108,"px":0.5,"py":0.5}}},"linkMap":[]}],"background":"#FFFFFF","width":1210,"height":1018,"maxWidth":5000,"maxHeight":5000,"nodeIndex":168,"autoFit":true,"exportBorder":false,"gridOn":false,"snapToGrid":false,"drawingGuidesOn":false,"pageBreaksOn":false,"printGridOn":false,"printPaper":"LETTER","printShrinkToFit":false,"printPortrait":true,"shapeStyles":{"com.gliffy.shape.basic.basic_v1.default":{"fill":"#9fc5e8","stroke":"#ff0000","strokeWidth":2}},"lineStyles":{"global":{"stroke":"#000000","strokeWidth":2,"dashStyle":"4.0,4.0","orthoMode":1}},"textStyles":{},"themeData":null}} -------------------------------------------------------------------------------- /images/SemRepRDF_Open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callahantiff/SemRepRDF/157e95088d93684f4b907389b179ff5e6f715d1d/images/SemRepRDF_Open.jpg -------------------------------------------------------------------------------- /images/SempRep_PA_triples.gliffy: -------------------------------------------------------------------------------- 1 | {"contentType":"application/gliffy+json","version":"1.1","metadata":{"title":"untitled","revision":0,"exportBorder":false},"embeddedResources":{"index":0,"resources":[]},"stage":{"objects":[{"x":1156.6666666666667,"y":827.3333333333334,"rotation":0,"id":381,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":31,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":1,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-1171.8333333333337,-267.6666666666667],[-1251.5833333333335,-267.6666666666667],[-1251.5833333333335,-414.50000000000006],[-1331.3333333333335,-414.50000000000006]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":382,"uid":null,"width":82,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

oa:renderedVia

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":2082.333333333333,"y":1162.6666666666665,"rotation":0,"id":387,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":33,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-1647.9577114427857,-956.8432835820894],[-1647.9577114427857,-851.1268656716417],[-1559.4060411240193,-851.1268656716417],[-1559.4060411240193,-757.6343283582088]],"lockSegments":{"1":true}}},"children":[{"x":0,"y":0,"rotation":0,"id":388,"uid":null,"width":73,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

oa:has_target

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":686,"px":0.5,"py":1}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":676,"px":0.5,"py":0}}},"linkMap":[]},{"x":1115.3333333333333,"y":555.3333333333334,"rotation":0,"id":564,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":40,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-1276.3333333333335,-485.50000000000006],[-1228.9166666666672,-485.50000000000006],[-1228.9166666666672,-536.8321428875106],[-1181.500000000001,-536.8321428875106]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":565,"uid":null,"width":86,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

dcterms:created

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":971.3333333333335,"y":519.3333333333334,"rotation":0,"id":567,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":42,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-1276.3333333333335,-485.50000000000006],[-1228.9166666666672,-485.50000000000006],[-1228.9166666666672,-536.8321428875106],[-1181.500000000001,-536.8321428875106]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":568,"uid":null,"width":86,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

dcterms:created

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":1076.6666666666667,"y":506,"rotation":0,"id":569,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":44,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-1276.3333333333335,-485.50000000000006],[-1228.9166666666672,-485.50000000000006],[-1228.9166666666672,-536.8321428875106],[-1181.500000000001,-536.8321428875106]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":570,"uid":null,"width":86,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

dcterms:created

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":622.679104477611,"y":1384.0149253731345,"rotation":0,"id":177,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":22,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[172.67288557213942,-1236.5497512437812],[172.67288557213942,-1264.258208955224],[359.18855721393004,-1264.258208955224]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":178,"uid":null,"width":87,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

sep:SEP_00065\n

software version

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":157,"px":0.5,"py":0}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":175,"px":0,"py":0.5}}},"linkMap":[]},{"x":552.5883084577106,"y":1290.7462686567162,"rotation":0,"id":173,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":18,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[242.7636815920398,-1110.281094527363],[242.7636815920398,-1086.633830845771],[380.30671641791014,-1086.633830845771]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":174,"uid":null,"width":40,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

rdf:type

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":157,"px":0.5,"py":1}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":159,"px":0,"py":0.5}}},"linkMap":[]},{"x":555.5883084577106,"y":1301.7462686567162,"rotation":0,"id":168,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":16,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[306.7344043214364,-1140.1263681592045],[338.05087982954774,-1140.1263681592045],[369.3673553376592,-1140.1263681592045],[400.68383084577056,-1140.1263681592045]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":172,"uid":null,"width":49,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

rdfs:label

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":157,"px":1,"py":0.5}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":162,"px":0,"py":0.5}}},"linkMap":[]},{"x":2393.311279936769,"y":533.5074626865671,"rotation":0,"id":156,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":4,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":1,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-1664.8893377571558,-375.18407960199],[-1740.7381111868444,-375.18407960199],[-1816.586884616533,-375.18407960199],[-1892.4356580462218,-375.18407960199]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":331,"uid":null,"width":119,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

prov:wasGeneratedBy

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":157,"px":0,"py":0.5}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":686,"px":1,"py":0.5}}},"linkMap":[]},{"x":2315.710199004975,"y":620.1741293532339,"rotation":0,"id":166,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":14,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-1881.3345771144277,-509.35074626865674],[-1881.3345771144277,-539.7562189054725],[-1587.859452736319,-539.7562189054725]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":167,"uid":null,"width":63,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

prov:atTime

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":686,"px":0.5,"py":0}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":164,"px":0,"py":0.5}}},"linkMap":[]},{"x":61.982587064676494,"y":1272.4623519827765,"rotation":0,"id":482,"uid":"com.gliffy.shape.basic.basic_v1.default.text","width":209,"height":15,"lockAspectRatio":false,"lockShape":false,"order":37,"graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

Identifiers

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null,"linkMap":[]},{"x":36.6567164179105,"y":1267.4776119402986,"rotation":0,"id":479,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":590,"height":139,"lockAspectRatio":false,"lockShape":false,"order":35,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#000000","fillColor":"#e2e2e2","gradient":false,"dropShadow":true,"state":0,"shadowX":4,"shadowY":4,"opacity":1}},"children":[{"x":5.339366515837112,"y":0,"rotation":0,"id":481,"uid":null,"width":579.3212669683264,"height":120,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

\n

Annotation: <http://pubannotation.org/projects/semrep>\n

\n

document:<http://pubannotation.org/docs/sourcedb/PMC/sourceid/>\n

sentence: <http://pubannotation.org/projects/semrep_sentences/PMC-25361541-0-sentence_T#>\n

span: <http://pubannotation.org/docs/sourcedb/PMC/sourceid/25361541/divs/0/spans/162-312>\n

concept: <http://pubannotation.org/projects/semrep/PMC-25361541-0-T#>\n

software instance: <http://pubannotation.org/projects/semrep/ hash(\"semrep\" + \"1.7\")>

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":1630.3014429238845,"y":1993.1666666666667,"rotation":0,"id":826,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":130,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-816.8093535094611,-1475.3037270891905],[-778.481791182591,-1475.3037270891905],[-778.481791182591,-1436.8159203980101],[-740.1542288557209,-1436.8159203980101]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":827,"uid":null,"width":40,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

rdf:type

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":828,"px":0.9999999999999998,"py":0.7071067811865475}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":824,"px":0,"py":0.5}}},"linkMap":[]},{"x":884.2365044583175,"y":432.7189054726364,"rotation":0,"id":848,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":113,"height":32,"lockAspectRatio":false,"lockShape":false,"order":128,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#000000","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.935064935064937,"y":0,"rotation":0,"id":849,"uid":null,"width":107.12987012987023,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

tao:Context_entity

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":890.1472140681635,"y":536.8507462686566,"rotation":0,"id":824,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":160,"height":39,"lockAspectRatio":false,"lockShape":false,"order":126,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#000000","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":4.1558441558441555,"y":0,"rotation":0,"id":825,"uid":null,"width":151.68831168831167,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

obo:UBERON_0000955\n

Brain

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":711.189054726368,"y":470.24129353233843,"rotation":0,"id":846,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":124,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[102.30303468805539,23.597259427498443],[137.67524221000247,23.597259427498443],[137.67524221000247,-21.522388059702052],[173.04744973194954,-21.522388059702052]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":847,"uid":null,"width":40,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

rdf:type

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":828,"px":1,"py":0.29289321881345237}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":848,"px":0,"py":0.5}}},"linkMap":[]},{"x":733.0696517412932,"y":476.8507462686566,"rotation":0,"id":828,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":80.4224376731302,"height":57.99999999999999,"lockAspectRatio":false,"lockShape":false,"order":122,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#000000","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.08889448501637,"y":0,"rotation":0,"id":829,"uid":null,"width":76.24464870309747,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

concept\n

(object)

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":490.70683287165275,"y":352.2412935323383,"rotation":0,"id":833,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":101.80055401662048,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":118,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":1,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[242.36281886964048,141.59725942749856],[156.88824575185004,141.59725942749856],[156.88824575185004,93.80323808493915],[71.41367263405971,93.80323808493915]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":834,"uid":null,"width":63,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

tao:denotes

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":828,"px":1.1102230246251563e-16,"py":0.2928932188134525}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":676,"px":0.9999999999999998,"py":0.7071067811865475}}},"linkMap":[]},{"x":371.76223453370255,"y":448.2412935323383,"rotation":0,"id":838,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":101.80055401662048,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":120,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[111.99662584435998,-4.947366576660443],[61.10886167401776,-4.947366576660443],[10.22109750367548,-4.947366576660443],[-40.66666666666674,-4.947366576660443]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":839,"uid":null,"width":88,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

tao:contained_in

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":676,"px":0,"py":0.7071067811865475}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":674,"px":0.9999999999999998,"py":0.7071067811865475}}},"linkMap":[]},{"x":146.33333333333326,"y":687.2412935323387,"rotation":0,"id":836,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":116,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[591.0076487369247,-51.63279333343144],[632.9315870730135,-51.63279333343144],[674.8555254091021,-51.63279333343144],[716.7794637451909,-51.63279333343144]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":837,"uid":null,"width":83,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

tao:followed_by

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":607,"px":0.9999999999999998,"py":0.7071067811865475}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":605,"px":0,"py":0.7071067811865475}}},"linkMap":[]},{"x":726.189054726368,"y":533.2412935323384,"rotation":0,"id":831,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":114,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[44.056989980843696,-160.31592039801012],[44.056989980843696,-125.65936201727692],[44.056989980843696,-91.00280363654372],[44.056989980843696,-56.346245255810516]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":832,"uid":null,"width":101,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

obo:BFO_0000050\n

part of

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":688,"px":0.5,"py":1}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":828,"px":0.5,"py":0}}},"linkMap":[]},{"x":711.189054726368,"y":470.24129353233843,"rotation":0,"id":810,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":112,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[99.26820881740878,-114.30372708919037],[136.09577114427873,-114.30372708919037],[136.09577114427873,-72.81592039801012],[172.9233334711488,-72.81592039801012]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":811,"uid":null,"width":40,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

rdf:type

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":688,"px":0.9999999999999998,"py":0.7071067811865475}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":808,"px":0,"py":0.5}}},"linkMap":[]},{"x":884.1123881975168,"y":376.9253731343283,"rotation":0,"id":808,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":166,"height":41,"lockAspectRatio":false,"lockShape":false,"order":110,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#000000","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":4.311688311688318,"y":0,"rotation":0,"id":809,"uid":null,"width":157.37662337662348,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

obo:NCIT_C96898\n

CD15 Antigen

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":343.8543708052533,"y":105.31592039801001,"rotation":0,"id":804,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":101.80055401662048,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":108,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[162.8385609037103,299.7164179104477],[162.8385609037103,235.27611940298505],[-0.032945628286711326,235.27611940298505],[-0.032945628286711326,197.8358208955225]],"lockSegments":{"1":true}}},"children":[{"x":0,"y":0,"rotation":0,"id":805,"uid":null,"width":79,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

tao:belongs_to

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":676,"px":0.2928932188134524,"py":0}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":782,"px":0.7071067811865476,"py":1}}},"linkMap":[]},{"x":288.3938513802178,"y":249.1517412935325,"rotation":0,"id":782,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":78.38642659279776,"height":54.000000000000014,"lockAspectRatio":false,"lockShape":false,"order":106,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#000000","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.0360110803324094,"y":0,"rotation":0,"id":783,"uid":null,"width":74.31440443213299,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

document

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":482.6393034825869,"y":51.10447761194041,"rotation":0,"id":759,"uid":"com.gliffy.shape.basic.basic_v1.default.text","width":209,"height":16,"lockAspectRatio":false,"lockShape":false,"order":105,"graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

Annotation Metadata

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null,"linkMap":[]},{"x":580.014427860696,"y":184.36766169154228,"rotation":0,"id":742,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":98,"height":31,"lockAspectRatio":false,"lockShape":false,"order":103,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#000000","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":1.9599999999999977,"y":0,"rotation":0,"id":743,"uid":null,"width":94.08000000000001,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

prov:Activity

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":467.2727227228381,"y":632.0796019900497,"rotation":0,"id":740,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":101,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[33.6028991677091,-473.75621890547256],[73.17230215278346,-473.75621890547256],[73.17230215278346,-432.21194029850744],[112.74170513785782,-432.21194029850744]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":741,"uid":null,"width":40,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

rdf:type

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":686,"px":1,"py":0.5}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":742,"px":0,"py":0.5}}},"linkMap":[]},{"x":884.2365044583175,"y":271.7189054726365,"rotation":0,"id":704,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":113,"height":32,"lockAspectRatio":false,"lockShape":false,"order":99,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#000000","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.935064935064937,"y":0,"rotation":0,"id":705,"uid":null,"width":107.12987012987023,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

tao:Context_entity

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":480.70683287165275,"y":342.2412935323383,"rotation":0,"id":694,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":101.80055401662048,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":97,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":1,"endArrow":0,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[249.32799299899386,-10.328113706829754],[145.3708328165268,-10.328113706829754],[145.3708328165268,71.75870646766168],[80.29316712834725,71.75870646766168]],"lockSegments":{"1":true}}},"children":[{"x":0,"y":0,"rotation":0,"id":695,"uid":null,"width":63,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

tao:denotes

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":688,"px":1.1102230246251563e-16,"py":0.2928932188134525}}},"linkMap":[]},{"x":730.0348258706466,"y":314.9253731343283,"rotation":0,"id":688,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":80.4224376731302,"height":57.99999999999999,"lockAspectRatio":false,"lockShape":false,"order":95,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#000000","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.08889448501637,"y":0,"rotation":0,"id":689,"uid":null,"width":76.24464870309747,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

concept\n

(subject)

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":367.8756218905472,"y":110.82338308457713,"rotation":0,"id":686,"uid":"com.gliffy.shape.basic.basic_v1.default.ellipse","width":133,"height":95,"lockAspectRatio":false,"lockShape":false,"order":93,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.ellipse.basic_v1","strokeWidth":2,"strokeColor":"#274e13","fillColor":"#d9ead3","gradient":false,"dropShadow":true,"state":0,"shadowX":4,"shadowY":4,"opacity":1}},"children":[{"x":2.6599999999999997,"y":0,"rotation":0,"id":687,"uid":null,"width":127.6799999999999,"height":16,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

Annotation\n

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":136.33333333333326,"y":677.2412935323387,"rotation":0,"id":601,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":91,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[726.775621417418,-63.5861121392054],[684.8529638572536,-63.5861121392054],[642.9303062970891,-63.5861121392054],[601.0076487369247,-63.5861121392054]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":602,"uid":null,"width":57,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

tao:follows

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":605,"px":1.1102230246251563e-16,"py":0.2928932188134525}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":607,"px":1,"py":0.29289321881345237}}},"linkMap":[]},{"x":512.6666666666666,"y":443.2412935323383,"rotation":0,"id":613,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":85,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[26.494986042996857,-38.208955223880594],[26.494986042996857,-93.27114427860687],[74.70914127423805,-93.27114427860687],[74.70914127423805,-148.33333333333314]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":614,"uid":null,"width":40,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

rdf:type

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":676,"px":0.7071067811865476,"py":0}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":615,"px":0.5,"py":1}}},"linkMap":[]},{"x":544.3758079409047,"y":264.9079601990052,"rotation":0,"id":615,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":86,"height":30.000000000000007,"lockAspectRatio":false,"lockShape":false,"order":83,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#000000","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.2337662337662345,"y":0,"rotation":0,"id":616,"uid":null,"width":81.53246753246758,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

tao:Text_span

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":47.68159203980068,"y":250.3756218905471,"rotation":0,"id":621,"uid":"com.gliffy.shape.basic.basic_v1.default.text","width":267,"height":16,"lockAspectRatio":false,"lockShape":false,"order":82,"graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

Resource Description

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null,"linkMap":[]},{"x":303.7359187442288,"y":445.24129353233843,"rotation":0,"id":634,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":101.80055401662048,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":80,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-28.067924673941775,15.333333333333144],[-28.067924673941775,53.8333333333332],[-181.06140350877186,53.8333333333332],[-181.06140350877186,92.33333333333326]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":635,"uid":null,"width":82,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

dcterms:source

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":674,"px":0.29289321881345254,"py":0.9999999999999998}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":636,"px":0.5,"py":0}}},"linkMap":[]},{"x":73.8102493074791,"y":537.5746268656717,"rotation":0,"id":636,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":97.7285318559557,"height":30.000000000000007,"lockAspectRatio":false,"lockShape":false,"order":78,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#cccccc","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.5384034248300176,"y":0,"rotation":0,"id":637,"uid":null,"width":92.65172500629565,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

'title' | 'abstract'

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":487.99492151431207,"y":484.24129353233843,"rotation":0,"id":640,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":101.80055401662048,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":76,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[51.16673119535142,-21.208955223880707],[51.16673119535142,55.426616915422755],[129.18234313198548,55.426616915422755],[129.18234313198548,81.0621890547261]],"lockSegments":{"1":true}}},"children":[{"x":0,"y":0,"rotation":0,"id":641,"uid":null,"width":63,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

tao:ends_at

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":676,"px":0.7071067811865476,"py":1}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":648,"px":0.5,"py":0}}},"linkMap":[]},{"x":744.5323176361959,"y":300.2412935323383,"rotation":0,"id":642,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":101.80055401662048,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":74,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-237.83938592723223,162.7910447761194],[-237.83938592723223,239.10323383084585],[-360.8420914816502,239.10323383084585],[-360.8420914816502,260.4154228855722]],"lockSegments":{"1":true}}},"children":[{"x":0,"y":0,"rotation":0,"id":643,"uid":null,"width":72,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

tao:begins_at

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":676,"px":0.29289321881345254,"py":0.9999999999999998}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":650,"px":0.5,"py":0}}},"linkMap":[]},{"x":597.6772646462975,"y":565.3034825870645,"rotation":0,"id":648,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":39,"height":30.000000000000007,"lockAspectRatio":false,"lockShape":false,"order":72,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#cccccc","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":1.0129870129870113,"y":0,"rotation":0,"id":649,"uid":null,"width":36.97402597402596,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

\"229\"

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":364.3481208913878,"y":560.6567164179105,"rotation":0,"id":650,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":38.68421052631578,"height":30.000000000000007,"lockAspectRatio":false,"lockShape":false,"order":70,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#cccccc","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":1.0047846889952152,"y":0,"rotation":0,"id":651,"uid":null,"width":36.67464114832537,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

\"214\"

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":361.76223453370255,"y":438.2412935323383,"rotation":0,"id":652,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":101.80055401662048,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":68,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-30.666666666666742,-19.385966756673042],[20.22377243614585,-19.385966756673042],[71.11421153895844,-19.385966756673042],[122.00465064177104,-19.385966756673042]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":653,"uid":null,"width":65,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

tao:contains

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":674,"px":1,"py":0.29289321881345237}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":676,"px":1.1102230246251563e-16,"py":0.2928932188134525}}},"linkMap":[]},{"x":321.04201292705443,"y":445.24129353233843,"rotation":0,"id":654,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":101.80055401662048,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":66,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-45.374018856767464,-43.666666666666856],[-45.374018856767464,-80.34079601990084],[-191.94952522705051,-80.34079601990084],[-191.94952522705051,-126.0149253731347]],"lockSegments":{"1":true}}},"children":[{"x":0,"y":0,"rotation":0,"id":655,"uid":null,"width":40,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

rdf:type

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":674,"px":0.2928932188134524,"py":0}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":656,"px":0.5,"py":1}}},"linkMap":[]},{"x":85.09248770000391,"y":289.22636815920373,"rotation":0,"id":656,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":88.00000000000001,"height":30.000000000000007,"lockAspectRatio":false,"lockShape":false,"order":64,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#000000","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.2857142857142865,"y":0,"rotation":0,"id":657,"uid":null,"width":83.42857142857149,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

tao:Text_span

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":361.76223453370255,"y":429.2412935323383,"rotation":0,"id":658,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":101.80055401662048,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":62,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-109.0530932594645,1.8333333333332575],[-189.43951985226226,1.8333333333332575],[-189.43951985226226,-51],[-269.82594644506,-51]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":659,"uid":null,"width":72,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

tao:begins_at

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":674,"px":0,"py":0.5}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":668,"px":1,"py":0.5}}},"linkMap":[]},{"x":364.81625115420115,"y":428.2412935323383,"rotation":0,"id":660,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":101.80055401662048,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":60,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-112.1071098799631,2.8333333333332575],[-195.1241920590951,2.8333333333332575],[-195.1241920590951,51.33333333333326],[-271.5466297322253,51.33333333333326]],"lockSegments":{"1":true}}},"children":[{"x":0,"y":0,"rotation":0,"id":661,"uid":null,"width":63,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

tao:ends_at

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":674,"px":0,"py":0.5}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":664,"px":1,"py":0.5}}},"linkMap":[]},{"x":727.2262234533702,"y":400.2412935323383,"rotation":0,"id":662,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":101.80055401662048,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":58,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-419.0895083823833,60.33333333333326],[-419.0895083823833,128.04601990049753],[-419.22622345337015,128.04601990049753],[-419.22622345337015,195.75870646766168]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":663,"uid":null,"width":65,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

tao:has_text

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":674,"px":0.7071067811865476,"py":1}}},"linkMap":[]},{"x":53.56740535549386,"y":464.5746268656716,"rotation":0,"id":664,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":39.70221606648199,"height":30.000000000000007,"lockAspectRatio":false,"lockShape":false,"order":56,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#cccccc","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":1.031226391337195,"y":0,"rotation":0,"id":665,"uid":null,"width":37.63976328380763,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

\"312\"

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":59.41957801022579,"y":596.1716417910445,"rotation":0,"id":666,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":522,"height":43,"lockAspectRatio":false,"lockShape":false,"order":54,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#cccccc","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":13.558441558441524,"y":0,"rotation":0,"id":667,"uid":null,"width":494.8831168831162,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

\"Major glycan structure underlying expression of the Lewis X epitope in the developing brain is O-mannose-linked glycans on phosphacan/RPTPbeta.\"

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":52.23407202216055,"y":363.2412935323383,"rotation":0,"id":668,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":39.70221606648199,"height":29.999999999999996,"lockAspectRatio":false,"lockShape":false,"order":52,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#cccccc","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":1.0312263913371948,"y":0,"rotation":0,"id":669,"uid":null,"width":37.63976328380762,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

\"162\"

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":333.8543708052533,"y":95.31592039801001,"rotation":0,"id":670,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":101.80055401662048,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":50,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[-22.501666628986527,306.3112340211939],[-22.501666628986527,273.4860963126368],[-22.501666628986527,240.6609586040796],[-22.501666628986527,207.8358208955225]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":671,"uid":null,"width":79,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

tao:belongs_to

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":674,"px":0.7071067811865476,"py":0}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":782,"px":0.29289321881345254,"py":0.9999999999999998}}},"linkMap":[]},{"x":252.70914127423805,"y":401.5746268656716,"rotation":0,"id":674,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":78.38642659279776,"height":59.000000000000014,"lockAspectRatio":false,"lockShape":false,"order":48,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#000000","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.0360110803324094,"y":0,"rotation":0,"id":675,"uid":null,"width":74.31440443213299,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

sentence

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":483.7340789129147,"y":405.0323383084577,"rotation":0,"id":676,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":78.38642659279776,"height":58.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":46,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#000000","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.0360110803324094,"y":0,"rotation":0,"id":677,"uid":null,"width":74.31440443213299,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

span

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":44.70149253731324,"y":63.10447761194041,"rotation":0,"id":491,"uid":"com.gliffy.shape.basic.basic_v1.default.group","width":315.00000000000006,"height":164,"lockAspectRatio":false,"lockShape":false,"order":39,"graphic":null,"children":[{"x":5.466101694915486,"y":4.478342749529186,"rotation":0,"id":483,"uid":"com.gliffy.shape.basic.basic_v1.default.text","width":159.40677966101703,"height":15.185185185185185,"lockAspectRatio":false,"lockShape":false,"order":38,"graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

Namespaces

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null,"linkMap":[]},{"x":0,"y":0,"rotation":0,"id":186,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":315.00000000000006,"height":164,"lockAspectRatio":false,"lockShape":false,"order":24,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#000000","fillColor":"#e2e2e2","gradient":false,"dropShadow":true,"state":0,"shadowX":4,"shadowY":4,"opacity":1}},"children":[{"x":6.300000000000002,"y":0,"rotation":0,"id":188,"uid":null,"width":302.4000000000002,"height":150,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

\n

dcterms: <http://purl.org/dc/terms/>\n

oa: <http://www.w3.org/ns/oa#>\n

obo: <http://purl.obolibrary.org/obo/>\n

prov: <http://www.w3.org/ns/prov#>\n

rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>\n

rdfs: <http://www.w3.org/2000/01/rdf-schema#>\n

sep: <http://purl.obolibrary.org/obo/sep/>\n

swo:<http://purl.obolibrary.org/obo/swo/>\n

tao:<http://pubannotation.org/ontology/tao.owl#>

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]}]},{"x":367.2727227228381,"y":643.0796019900497,"rotation":0,"id":324,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100,"lockAspectRatio":false,"lockShape":false,"order":29,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[133.6028991677091,-484.75621890547256],[173.42344303249797,-484.75621890547256],[173.42344303249797,-523.4731343283585],[213.24398689728673,-523.4731343283585]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":325,"uid":null,"width":40,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

rdf:type

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":686,"px":1,"py":0.5}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":199,"px":0,"py":0.5}}},"linkMap":[]},{"x":580.5167096201249,"y":104.10646766169125,"rotation":0,"id":199,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":173,"height":31,"lockAspectRatio":false,"lockShape":false,"order":26,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":2,"strokeColor":"#000000","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":3.4600000000000026,"y":0,"rotation":0,"id":201,"uid":null,"width":166.07999999999993,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

oa_ext:Concept_Annotation

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":981.867661691541,"y":103.25671641791038,"rotation":0,"id":175,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":68,"height":33,"lockAspectRatio":false,"lockShape":false,"order":20,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#cccccc","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":1.2830188679245285,"y":0,"rotation":0,"id":176,"uid":null,"width":65.4339622641509,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

\"1.7\"

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":727.8507462686559,"y":63.917910447761415,"rotation":0,"id":164,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":88,"height":32.99999999999999,"lockAspectRatio":false,"lockShape":false,"order":12,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#cccccc","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":1.142857142857143,"y":0,"rotation":0,"id":165,"uid":null,"width":85.7142857142857,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

\"2016/12/31\"

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":956.2721393034811,"y":145.11990049751182,"rotation":0,"id":162,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":95,"height":33,"lockAspectRatio":false,"lockShape":false,"order":10,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#cccccc","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":1.2337662337662345,"y":0,"rotation":0,"id":163,"uid":null,"width":92.5324675324675,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

\"SemRep\"

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":932.8950248756207,"y":187.61243781094524,"rotation":0,"id":159,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":119,"height":33,"lockAspectRatio":false,"lockShape":false,"order":8,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#000000","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":1.5454545454545454,"y":0,"rotation":0,"id":160,"uid":null,"width":115.90909090909086,"height":28,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

swo:SWO_0000001\n

software

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":728.3519900497504,"y":147.46517412935327,"rotation":0,"id":157,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":134,"height":33,"lockAspectRatio":false,"lockShape":false,"order":6,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#000000","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":4.542372881355934,"y":0,"rotation":0,"id":419,"uid":null,"width":124.91525423728821,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

nlm:software instance

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":474.2213930348247,"y":45.05472636815921,"rotation":0,"id":342,"uid":"com.gliffy.shape.basic.basic_v1.default.round_rectangle","width":590,"height":184,"lockAspectRatio":false,"lockShape":false,"order":3,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.round_rectangle.basic_v1","strokeWidth":2,"strokeColor":"#bf9000","fillColor":"#fff2cc","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[],"linkMap":[]},{"x":701.189054726368,"y":460.24129353233843,"rotation":0,"id":706,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":100,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":1,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[109.26820881740878,-128.32811370682987],[146.1578292746791,-128.32811370682987],[146.1578292746791,-172.52238805970194],[183.04744973194954,-172.52238805970194]],"lockSegments":{}}},"children":[{"x":0,"y":0,"rotation":0,"id":707,"uid":null,"width":40,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

rdf:type

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":688,"px":1,"py":0.29289321881345237}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":704,"px":0,"py":0.5}}},"linkMap":[]},{"x":41.86069651741275,"y":243.0845771144277,"rotation":0,"id":678,"uid":"com.gliffy.shape.basic.basic_v1.default.round_rectangle","width":1024,"height":421,"lockAspectRatio":false,"lockShape":false,"order":0,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.round_rectangle.basic_v1","strokeWidth":2,"strokeColor":"#0b5394","fillColor":"#e2ecf5","gradient":false,"dropShadow":true,"state":0,"shadowX":4,"shadowY":4,"opacity":1}},"children":[],"linkMap":[]},{"x":658.9545554774602,"y":598.1318407960202,"rotation":0,"id":607,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":78.38642659279776,"height":53.000000000000014,"lockAspectRatio":false,"lockShape":false,"order":87,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#000000","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.0360110803324094,"y":0,"rotation":0,"id":608,"uid":null,"width":74.31440443213299,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

span1

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":863.1052941662874,"y":598.7985074626868,"rotation":0,"id":605,"uid":"com.gliffy.shape.basic.basic_v1.default.rectangle","width":78.38642659279776,"height":54.000000000000014,"lockAspectRatio":false,"lockShape":false,"order":89,"graphic":{"type":"Shape","Shape":{"tid":"com.gliffy.stencil.rectangle.basic_v1","strokeWidth":1,"strokeColor":"#000000","fillColor":"#ffffff","gradient":false,"dropShadow":false,"state":0,"shadowX":0,"shadowY":0,"opacity":1}},"children":[{"x":2.0360110803324094,"y":0,"rotation":0,"id":606,"uid":null,"width":74.31440443213299,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"none","vposition":"none","hposition":"none","html":"

span2

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"linkMap":[]},{"x":490.70683287165275,"y":352.2412935323383,"rotation":0,"id":857,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":101.80055401662048,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":132,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[239.32799299899386,3.696272910809739],[180.3708328165268,3.696272910809739],[180.3708328165268,69.77885146729966],[71.41367263405971,69.77885146729966]],"lockSegments":{"1":true}}},"children":[{"x":0,"y":0,"rotation":0,"id":858,"uid":null,"width":83,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

tao:denoted_by

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":688,"px":0,"py":0.7071067811865475}},"endConstraint":{"type":"EndPositionConstraint","EndPositionConstraint":{"nodeId":676,"px":1,"py":0.29289321881345237}}},"linkMap":[]},{"x":500.70683287165275,"y":362.2412935323383,"rotation":0,"id":859,"uid":"com.gliffy.shape.basic.basic_v1.default.line","width":101.80055401662048,"height":100.00000000000001,"lockAspectRatio":false,"lockShape":false,"order":135,"graphic":{"type":"Line","Line":{"strokeWidth":2,"strokeColor":"#000000","fillColor":"none","dashStyle":null,"startArrow":0,"endArrow":1,"startArrowRotation":"auto","endArrowRotation":"auto","ortho":true,"interpolationType":"linear","cornerRadius":10,"controlPath":[[232.36281886964048,155.62164604513805],[109.37083281652679,155.62164604513805],[109.37083281652679,95.75870646766168],[62.29316712834725,95.75870646766168]],"lockSegments":{"1":true}}},"children":[{"x":0,"y":0,"rotation":0,"id":860,"uid":null,"width":83,"height":14,"lockAspectRatio":false,"lockShape":false,"order":"auto","graphic":{"type":"Text","Text":{"tid":null,"valign":"middle","overflow":"both","vposition":"none","hposition":"none","html":"

tao:denoted_by

","paddingLeft":2,"paddingRight":2,"paddingBottom":2,"paddingTop":2}},"children":null}],"constraints":{"constraints":[],"startConstraint":{"type":"StartPositionConstraint","StartPositionConstraint":{"nodeId":828,"px":0,"py":0.7071067811865475}}},"linkMap":[]}],"background":"#FFFFFF","width":1066,"height":1407,"maxWidth":5000,"maxHeight":5000,"nodeIndex":861,"autoFit":true,"exportBorder":false,"gridOn":false,"snapToGrid":false,"drawingGuidesOn":false,"pageBreaksOn":false,"printGridOn":false,"printPaper":"LETTER","printShrinkToFit":false,"printPortrait":true,"shapeStyles":{"com.gliffy.shape.basic.basic_v1.default":{"fill":"#e2e2e2","stroke":"#000000","strokeWidth":2,"shadow":true}},"lineStyles":{"global":{"stroke":"#000000","strokeWidth":2,"endArrow":1,"orthoMode":1}},"textStyles":{},"themeData":null}} -------------------------------------------------------------------------------- /images/SempRep_PA_triples.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callahantiff/SemRepRDF/157e95088d93684f4b907389b179ff5e6f715d1d/images/SempRep_PA_triples.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | argparse>=1.2.1 2 | mysql-connector-python==8.0.5 3 | rdflib==4.2.1 4 | functools32==3.2.3-2 --------------------------------------------------------------------------------