Annotations
synapseclient.annotations
¶
Annotations¶
Annotations are arbitrary metadata attached to Synapse entities. They can be accessed like ordinary object properties or like dictionary keys:
entity.my_annotation = 'This is one way to do it'
entity['other_annotation'] = 'This is another'
Annotations can be given in the constructor for Synapse Entities:
entity = File('data.xyz', parent=my_project, rating=9.1234)
Annotate the entity with location data:
entity.lat_long = [47.627477, -122.332154]
Record when we collected the data. This will use the current timezone of the machine running the code.
from datetime import datetime as Datetime
entity.collection_date = Datetime.now()
Record when we collected the data in UTC:
from datetime import datetime as Datetime
entity.collection_date = Datetime.utcnow()
You may also use a Timezone aware datetime object like the following example. Using the pytz library is recommended for this purpose.:
from datetime import datetime as Datetime, timezone as Timezone, timedelta as Timedelta
date = Datetime(2023, 12, 20, 8, 10, 0, tzinfo=Timezone(Timedelta(hours=-5)))
See:
Annotating data sources¶
Data sources are best recorded using Synapse's Activity/Provenance tools.
Implementation details¶
In Synapse, entities have both properties and annotations. Properties are used by the system, whereas annotations are completely user defined. In the Python client, we try to present this situation as a normal object, with one set of properties.
See also:
Classes¶
Annotations
¶
Bases: dict
Represent Synapse Entity annotations as a flat dictionary with the system assigned properties id, etag as object attributes.
ATTRIBUTE | DESCRIPTION |
---|---|
id |
Synapse ID of the Entity
|
etag |
Synapse etag of the Entity
|
values |
(Optional) dictionary of values to be copied into annotations
|
**kwargs |
additional key-value pairs to be added as annotations
|
Creating a few instances
Creating and setting annotations
from synapseclient import Annotations
example1 = Annotations('syn123','40256475-6fb3-11ea-bb0a-9cb6d0d8d984', {'foo':'bar'})
example2 = Annotations('syn123','40256475-6fb3-11ea-bb0a-9cb6d0d8d984', foo='bar')
example3 = Annotations('syn123','40256475-6fb3-11ea-bb0a-9cb6d0d8d984')
example3['foo'] = 'bar'
Source code in synapseclient/annotations.py
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 |
|
Functions¶
is_synapse_annotations(annotations)
¶
Tests if the given object is a Synapse-style Annotations object.
PARAMETER | DESCRIPTION |
---|---|
annotations |
A key-value mapping that may or may not be a Synapse-style
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
bool
|
True if the given object is a Synapse-style Annotations object, False |
bool
|
otherwise. |
Source code in synapseclient/annotations.py
110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
|
is_submission_status_annotations(annotations)
¶
Tests if the given dictionary is in the form of annotations to submission status.
PARAMETER | DESCRIPTION |
---|---|
annotations |
A key-value mapping that may or may not be a submission status
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
bool
|
True if the given object is a submission status annotations object, False |
bool
|
otherwise. |
Source code in synapseclient/annotations.py
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |
|
to_submission_status_annotations(annotations, is_private=True)
¶
Converts a normal dictionary to the format used to annotate submission statuses, which is different from the format used to annotate entities.
PARAMETER | DESCRIPTION |
---|---|
annotations |
A normal Python dictionary whose values are strings, floats, ints or doubles.
|
is_private |
Set privacy on all annotations at once. These can be set individually using set_privacy.
DEFAULT:
|
Using this function
Adding and converting annotations
import synapseclient
from synapseclient.annotations import to_submission_status_annotations
from datetime import datetime as Datetime
## Initialize a Synapse object & authenticate
syn = synapseclient.Synapse()
syn.login()
## create a submission and get its status
submission = syn.submit(evaluation, 'syn11111111')
submission_status = syn.getSubmissionStatus(submission)
## add annotations
submission_status.annotations = {'foo':'bar', 'shoe_size':12, 'IQ':12, 'timestamp':Datetime.now()}
## convert annotations
submission_status.annotations = to_submission_status_annotations(submission_status.annotations)
submission_status = syn.store(submission_status)
Synapse categorizes these annotations by: stringAnnos, doubleAnnos, longAnnos.
Source code in synapseclient/annotations.py
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
|
from_submission_status_annotations(annotations)
¶
Convert back from submission status annotation format to a normal dictionary.
PARAMETER | DESCRIPTION |
---|---|
annotations |
A dictionary in the format used to annotate submission statuses.
|
RETURNS | DESCRIPTION |
---|---|
dict
|
A normal Python dictionary. |
Using this function
Converting from submission status annotations
from synapseclient.annotations import from_submission_status_annotations
submission_status.annotations = from_submission_status_annotations(submission_status.annotations)
Source code in synapseclient/annotations.py
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 |
|
set_privacy(annotations, key, is_private=True, value_types=['longAnnos', 'doubleAnnos', 'stringAnnos'])
¶
Set privacy of individual annotations, where annotations are in the format used by Synapse SubmissionStatus objects. See the Annotations documentation.
PARAMETER | DESCRIPTION |
---|---|
annotations |
Annotations that have already been converted to Synapse format using to_submission_status_annotations.
|
key |
The key of the annotation whose privacy we're setting.
|
is_private |
If False, the annotation will be visible to users with READ permission on the evaluation. If True, the it will be visible only to users with READ_PRIVATE_SUBMISSION on the evaluation.
DEFAULT:
|
value_types |
A list of the value types in which to search for the key.
DEFAULT:
|
Source code in synapseclient/annotations.py
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 |
|
to_synapse_annotations(annotations)
¶
Transforms a simple flat dictionary to a Synapse-style Annotation object. See the Synapse API documentation for more information on Synapse-style Annotation objects.
PARAMETER | DESCRIPTION |
---|---|
annotations |
A simple flat dictionary of annotations.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Dict[str, Any]
|
A Synapse-style Annotation dict. |
Source code in synapseclient/annotations.py
371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 |
|
from_synapse_annotations(raw_annotations)
¶
Transforms a Synapse-style Annotation object to a simple flat dictionary.
PARAMETER | DESCRIPTION |
---|---|
raw_annotations |
A Synapse-style Annotation dict.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Annotations
|
A simple flat dictionary of annotations. |
Source code in synapseclient/annotations.py
426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 |
|
convert_old_annotation_json(annotations)
¶
Transforms a parsed JSON dictionary of old style annotations into a new style consistent with the entity bundle v2 format.
This is intended to support some models that were saved as serialized entity bundle JSON (Submissions). we don't need to support newer types here e.g. BOOLEAN because they did not exist at the time that annotation JSON was saved in this form.
PARAMETER | DESCRIPTION |
---|---|
annotations |
A parsed JSON dictionary of old style annotations.
|
RETURNS | DESCRIPTION |
---|---|
A v2 Annotation-style dictionary. |
Source code in synapseclient/annotations.py
457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 |
|