Activity/Provenance
synapseclient.activity
¶
Provenance¶
The Activity object represents the source of a data set or the data processing steps used to produce it. Using W3C provenance ontology terms, a result is generated by a combination of data and code which are either used or executed.
Imports¶
from synapseclient import Activity
Creating an activity object¶
act = Activity(name='clustering',
description='whizzy clustering',
used=['syn1234','syn1235'],
executed='syn4567')
Here, syn1234 and syn1235 might be two types of measurements on a common set of samples. Some whizzy clustering code might be referred to by syn4567. The used and executed can reference entities in Synapse or URLs.
Alternatively, you can build an activity up piecemeal:
act = Activity(name='clustering', description='whizzy clustering')
act.used(['syn12345', 'syn12346'])
act.executed(
'https://raw.githubusercontent.com/Sage-Bionetworks/synapsePythonClient/develop/tests/unit/unit_test_client.py')
Storing entities with provenance¶
The activity can be passed in when storing an Entity to set the Entity's provenance:
clustered_samples = syn.store(clustered_samples, activity=act)
We've now recorded that clustered_samples
is the output of our whizzy clustering algorithm applied to the data stored
in syn1234 and syn1235.
Recording data source¶
The synapseclient.Synapse.store has shortcuts for specifying the used and executed lists directly. For example, when storing a data entity, it's a good idea to record its source:
excellent_data = syn.store(excellent_data,
activityName='data-r-us'
activityDescription='downloaded from data-r-us',
used='http://data-r-us.com/excellent/data.xyz')
Classes¶
Activity
¶
Bases: dict
Represents the provenance of a Synapse Entity.
PARAMETER | DESCRIPTION |
---|---|
name |
Name of the Activity
DEFAULT:
|
description |
A short text description of the Activity
DEFAULT:
|
used |
Either a list of:
DEFAULT:
|
executed |
A code resource that was executed to generate the Entity.
DEFAULT:
|
data |
A dictionary representation of an Activity, with fields 'name', 'description' and 'used' (a list of reference objects)
DEFAULT:
|
See also: The W3C's provenance ontology
Source code in synapseclient/activity.py
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 |
|
Functions¶
used(target=None, targetVersion=None, wasExecuted=None, url=None, name=None)
¶
Add a resource used by the activity.
This method tries to be as permissive as possible. It accepts a string which might be a synapse ID or a URL, a synapse entity, a UsedEntity or UsedURL dictionary or a list containing any combination of these.
In addition, named parameters can be used to specify the fields of either a UsedEntity or a UsedURL. If target and optionally targetVersion are specified, create a UsedEntity. If url and optionally name are specified, create a UsedURL.
It is an error to specify both target/targetVersion parameters and url/name parameters in the same call. To add multiple UsedEntities and UsedURLs, make a separate call for each or pass in a list.
In case of conflicting settings for wasExecuted both inside an object and with a parameter, the parameter wins. For example, this UsedURL will have wasExecuted set to False:
activity.used({'url':'http://google.com', 'name':'Goog', 'wasExecuted':True}, wasExecuted=False)
Entity examples:
activity.used('syn12345')
activity.used(entity)
activity.used(target=entity, targetVersion=2)
activity.used(codeEntity, wasExecuted=True)
activity.used({'reference':{'target':'syn12345', 'targetVersion':1}, 'wasExecuted':False})
URL examples:
activity.used('http://mydomain.com/my/awesome/data.RData')
activity.used(url='http://mydomain.com/my/awesome/data.RData', name='Awesome Data')
activity.used(url='https://github.com/joe_hacker/code_repo', name='Gnarly hacks', wasExecuted=True)
activity.used({'url':'https://github.com/joe_hacker/code_repo', 'name':'Gnarly hacks'}, wasExecuted=True)
List example:
activity.used(['syn12345', 'syn23456', entity, {'reference':{'target':'syn100009', 'targetVersion':2}, 'wasExecuted':True}, 'http://mydomain.com/my/awesome/data.RData'])
Source code in synapseclient/activity.py
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 |
|
executed(target=None, targetVersion=None, url=None, name=None)
¶
Add a code resource that was executed during the activity. See synapseclient.activity.Activity.used
Source code in synapseclient/activity.py
313 314 315 316 317 318 319 320 321 322 323 324 |
|
Functions¶
is_used_entity(x)
¶
RETURNS | DESCRIPTION |
---|---|
bool
|
True if the given object represents a UsedEntity. |
Source code in synapseclient/activity.py
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 |
|
is_used_url(x)
¶
RETURNS | DESCRIPTION |
---|---|
bool
|
True if the given object represents a UsedURL. |
Source code in synapseclient/activity.py
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
|