pybis 1.37.4rc2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. pybis-1.37.4rc2/CHANGELOG.md +620 -0
  2. pybis-1.37.4rc2/LICENSE +201 -0
  3. pybis-1.37.4rc2/MANIFEST.in +6 -0
  4. pybis-1.37.4rc2/PKG-INFO +2142 -0
  5. pybis-1.37.4rc2/README.md +2127 -0
  6. pybis-1.37.4rc2/README.rst +565 -0
  7. pybis-1.37.4rc2/pybis/__init__.py +22 -0
  8. pybis-1.37.4rc2/pybis/attachment.py +44 -0
  9. pybis-1.37.4rc2/pybis/attribute.py +1135 -0
  10. pybis-1.37.4rc2/pybis/data_set.py +357 -0
  11. pybis-1.37.4rc2/pybis/dataset.py +1645 -0
  12. pybis-1.37.4rc2/pybis/definitions.py +552 -0
  13. pybis-1.37.4rc2/pybis/entity_type.py +512 -0
  14. pybis-1.37.4rc2/pybis/experiment.py +178 -0
  15. pybis-1.37.4rc2/pybis/fast_download.py +478 -0
  16. pybis-1.37.4rc2/pybis/group.py +168 -0
  17. pybis-1.37.4rc2/pybis/material.py +85 -0
  18. pybis-1.37.4rc2/pybis/openbis_object.py +466 -0
  19. pybis-1.37.4rc2/pybis/person.py +184 -0
  20. pybis-1.37.4rc2/pybis/project.py +64 -0
  21. pybis-1.37.4rc2/pybis/property.py +242 -0
  22. pybis-1.37.4rc2/pybis/property_reformatter.py +114 -0
  23. pybis-1.37.4rc2/pybis/pybis.py +5591 -0
  24. pybis-1.37.4rc2/pybis/role_assignment.py +51 -0
  25. pybis-1.37.4rc2/pybis/sample.py +274 -0
  26. pybis-1.37.4rc2/pybis/semantic_annotation.py +199 -0
  27. pybis-1.37.4rc2/pybis/space.py +112 -0
  28. pybis-1.37.4rc2/pybis/spreadsheet.py +342 -0
  29. pybis-1.37.4rc2/pybis/tag.py +43 -0
  30. pybis-1.37.4rc2/pybis/things.py +255 -0
  31. pybis-1.37.4rc2/pybis/utils.py +368 -0
  32. pybis-1.37.4rc2/pybis/vocabulary.py +273 -0
  33. pybis-1.37.4rc2/pybis.egg-info/PKG-INFO +2142 -0
  34. pybis-1.37.4rc2/pybis.egg-info/SOURCES.txt +54 -0
  35. pybis-1.37.4rc2/pybis.egg-info/dependency_links.txt +1 -0
  36. pybis-1.37.4rc2/pybis.egg-info/requires.txt +7 -0
  37. pybis-1.37.4rc2/pybis.egg-info/top_level.txt +1 -0
  38. pybis-1.37.4rc2/pyproject.toml +4 -0
  39. pybis-1.37.4rc2/setup.cfg +4 -0
  40. pybis-1.37.4rc2/setup.py +53 -0
  41. pybis-1.37.4rc2/tests/test_dataset.py +417 -0
  42. pybis-1.37.4rc2/tests/test_experiment.py +151 -0
  43. pybis-1.37.4rc2/tests/test_fastdownload.py +410 -0
  44. pybis-1.37.4rc2/tests/test_group.py +78 -0
  45. pybis-1.37.4rc2/tests/test_imports.py +16 -0
  46. pybis-1.37.4rc2/tests/test_material.py +19 -0
  47. pybis-1.37.4rc2/tests/test_openbis.py +118 -0
  48. pybis-1.37.4rc2/tests/test_person.py +44 -0
  49. pybis-1.37.4rc2/tests/test_plugin.py +143 -0
  50. pybis-1.37.4rc2/tests/test_project.py +81 -0
  51. pybis-1.37.4rc2/tests/test_property.py +68 -0
  52. pybis-1.37.4rc2/tests/test_sample.py +646 -0
  53. pybis-1.37.4rc2/tests/test_space.py +35 -0
  54. pybis-1.37.4rc2/tests/test_spreadsheet.py +522 -0
  55. pybis-1.37.4rc2/tests/test_tag.py +72 -0
  56. pybis-1.37.4rc2/tests/test_vocabulary.py +208 -0
@@ -0,0 +1,620 @@
1
+ ## Changes with pybis-1.37.4
2
+
3
+ - Improvements to Spreadsheet API
4
+ - Handling UnicodeDecodeError in spreadsheet property
5
+ - Added revert_deletions method
6
+
7
+ ## Changes with pybis-1.37.3
8
+
9
+ - Fixes to get_children/get_parents methods
10
+
11
+ ## Changes with pybis-1.37.2
12
+
13
+ - Fixes to Fast Upload
14
+
15
+ ## Changes with pybis-1.37.1
16
+
17
+ - Implemented Fast download V2
18
+ - Fixed dataset with parents creation
19
+ - Fixed type checking for python <3.10
20
+ - Added basic ELN Spreadsheet support
21
+ - Added support for new OBJECT property creation with OBJECT type limitation
22
+ - Refactored AttributeHolder class to include fetchOptions
23
+ - Refactored get_children and get_parents methods to pull data in case of missing fetchOptions
24
+
25
+ ## Changes with pybis-1.37.0
26
+
27
+ - Changes to new_sample method to use v3api in all cases
28
+ - Refactored new_experiment documentation
29
+ - Fixed delete vocabulary term method
30
+ - Fixed v1 dataset upload
31
+ - Fixed PropertyAssignment data frame creation
32
+ - Improved property data type validation
33
+ - Improved get_project method
34
+ - Added missing description parameter to new sample type method
35
+ - Added missing DATE property type
36
+ - Improvement to user.get_roles() method to present proper project identification
37
+ - Improvements to property assignment display
38
+ - Fixed clearing of vocabulary properties
39
+ - Improved setup script
40
+ - Fixed transaction commit function
41
+ - Fixed mount() method to work with PAT
42
+ - Fixed plugin updates
43
+ - Fixed new term creation
44
+
45
+ ## Changes with pybis-1.36.3
46
+
47
+ - Refactored metaData and multiValue properties to be backwards-compatible.
48
+ - Refactored get_children/get_parents methods
49
+ - Refactored property formatting functionality
50
+
51
+
52
+ ## Changes with pybis-1.36.2
53
+
54
+ - Refactoring of the set_token method.
55
+ - Improvement to exception handling for dataset upload
56
+ - Improvement to PAT functionality
57
+
58
+ ## Changes with pybis-1.36.1
59
+
60
+ - Amended get_*_types() method to be backwards-compatible
61
+ - Amended dataset upload functionality to support big files
62
+ - Added multivalued properties support for objects, collections and datasets
63
+
64
+ ## Changes with pybis-1.36.0
65
+
66
+ - Reverted breaking changes to dataset upload functionality
67
+ - Performance improvements to get_sample and get_samples methods
68
+
69
+ ## Changes with pybis-1.35.11
70
+
71
+ - Improvements to dataset upload performance
72
+
73
+ ## Changes with pybis-1.35.10
74
+
75
+ - Fixed issue with changing properties for linked datasets
76
+
77
+ ## Changes with pybis-1.35.9
78
+
79
+ - Changed get_samples method to also include dataset ids depending on the params
80
+
81
+ ## Changes with pybis-1.35.8
82
+
83
+ - Fixed a typo in the set attribute method
84
+
85
+ ## Changes with pybis-1.35.7
86
+
87
+ - Improvements to fast download scheme
88
+
89
+ ## Changes with pybis-1.35.6
90
+
91
+ - Added metaData attribute handling for sample, sampleType, experiment, experimentType, dataset, datasetType
92
+ - Fixed property assignment to a newly created sample type.
93
+ - Updated docs.
94
+ - Fixed sample.del_children() method.
95
+ - Fixed metaData attribute assignment case.
96
+
97
+ ## Changes with pybis-1.35.5
98
+
99
+ - Implementation of array-type properties handling
100
+ - Fixed assignment of dynamic property plugins to property types
101
+
102
+
103
+ ## Changes with pybis-1.35.4
104
+
105
+ - Changes to internal implementation of data set download/upload to use OpenBIS V3 API
106
+ - Added TIMESTAMP property reformatting to fit formats supported by OpenBIS
107
+
108
+ ## Changes with pybis-1.35.3
109
+
110
+ - Modified set_token() method to accept PersonalAccessToken object
111
+ - Minor code refactoring
112
+
113
+ ## Changes with pybis-1.35.2
114
+
115
+ - Added rising an error when re-login fails
116
+
117
+ ## Changes with pybis-1.35.1
118
+
119
+ - fix overriding parents/children when performing update using results from get_samples call
120
+
121
+ ## Changes with pybis-1.35.0
122
+
123
+ - removal of deprecated 'cli'
124
+ - removal of 'click' dependency
125
+ - update of contact information
126
+
127
+ ## Changes with pybis-1.34.6
128
+
129
+ - new option 'permanently' in the delete method in openbis_object.py
130
+
131
+ ## Changes with pybis-1.34.2
132
+
133
+ - fix syslog error
134
+
135
+ ## Changes with pybis-1.34.1
136
+
137
+ - better handling of configuration
138
+
139
+ ## Changes with pybis-1.34.0
140
+
141
+ - better error handling when connecting to openBIS server
142
+ - add experimental support for datasets via cli
143
+
144
+ ## Changes with pybis-1.33.2
145
+
146
+ - fix openbis.support.email key error
147
+ - raise error if invalid token is passed to constructor
148
+ - show more attributes for spaces and projects
149
+
150
+ ## Changes with pybis-1.33.0
151
+
152
+ - add support for personal access tokens (PAT)
153
+ - fix default dataset kind (was PHYSICAL_DATA instead of PHYSICAL)
154
+ - refactor existing pyBIS code
155
+
156
+ ## Changes with pybis-1.32.1
157
+
158
+ - fixing the issue with incorrectly named reference to DataSetKind.PHYSICAL
159
+
160
+ ## Changes with pybis-1.32.0
161
+
162
+ - throw error when invalid token is assigned
163
+ - to not show an error message if stored token is invalid (just do not use it)
164
+ - fixed a bug which led to missing parents and children
165
+
166
+ ## Changes with pybis-1.31.6
167
+
168
+ - automatically setting the project if only experiment was set
169
+
170
+ ## Changes with pybis-1.31.5
171
+
172
+ - optimised error generation without assert
173
+
174
+ ## Changes with pybis-1.31.4
175
+
176
+ - fix another exception when saving a sample with custom code
177
+
178
+ ## Changes with pybis-1.31.3
179
+
180
+ - fix exception in sample.save
181
+
182
+ ## Changes with pybis-1.31.1
183
+
184
+ - fixed a file download problem when filename contained special characters (e.g. #)
185
+
186
+ ## Changes with pybis-1.31.0
187
+
188
+ - new entity-type methods: get_next_code() and get_next_sequence()
189
+ - allow to set code manually for samples of sampleType with autoGeneratedCode=True
190
+
191
+ ## Changes with pybis-1.30.4
192
+
193
+ - fixed and optimised (deprecated) download_attachments()
194
+
195
+ ## Changes with pybis-1.30.3
196
+
197
+ - Another code fix for create_data_frame() in pybis.py to make group ID and user ID separate
198
+
199
+ ## Changes with pybis-1.30.2
200
+
201
+ - Possible issue fixes with data frame in create_data_frame() in entity_type.py
202
+ - Code fix for create_data_frame() in pybis.py to make group ID and user ID separate
203
+
204
+ ## Changes with pybis-1.30.1
205
+
206
+ - fixed KeyError when creating an empty data frame
207
+
208
+ ## Changes with pybis-1.30.0
209
+
210
+ - session management reworked
211
+
212
+ ## Changes with pybis-1.20.5
213
+
214
+ - fixed same problems as 1.20.5
215
+ - wrong version published
216
+
217
+ ## Changes with pybis-1.20.4
218
+
219
+ - fixed parents/children problem when get_samples(), get_datasets()
220
+ - sorted imports
221
+
222
+ ## Changes with pybis-1.20.3
223
+
224
+ - deactivated debugging logs
225
+ - creation of property type accets vocabulary object
226
+
227
+ ## Changes with pybis-1.20.2
228
+
229
+ - fixed omitted function parameter which could cause issues
230
+
231
+ ## Changes with pybis-1.20.1
232
+
233
+ - improved search performance
234
+ - introduced lazy loading for Things.df and Things.objects, so all necessary, and potentially
235
+ costly, computation takes place only when the user requests those properties
236
+
237
+ ## Changes with pybis-1.20.0
238
+
239
+ - metadata for property_types can now be changed to:
240
+ - {'custom_widget' : 'Word Processor'}
241
+ - {'custom_widget' : 'Spreadsheet'}
242
+ - added documentation how to change the ELN settings
243
+ - removed deprecated update_sample()
244
+ - removed deprecated update_experiment()
245
+
246
+ ## Changes with pybis-1.19.1
247
+
248
+ - add set_token() method to set a token and also store it locally
249
+
250
+ ## Changes with pybis-1.19.0
251
+
252
+ - added caching for get_experiment
253
+ - included OR when providing codes/permIds for samples and datasets
254
+ - improved documentation
255
+ - fixed property assigning problem with newly created entity types
256
+
257
+ ## Changes with pybis-1.18.12
258
+
259
+ - fixed rel_file_links, prepended /
260
+
261
+ ## Changes with pybis-1.18.11
262
+
263
+ - added rel_file_links to datasets for embedding in ELN-LIMS
264
+
265
+ ## Changes with pybis-1.18.10
266
+
267
+ - added deprecation warnings for components/containers and attachments
268
+ - added download_path and file_links to datasets
269
+
270
+ ## Changes with pybis-1.18.9
271
+
272
+ - fixed problem when searching for experiments
273
+
274
+ ## Changes with pybis-1.18.8
275
+
276
+ - fixed problem with 20.10 releases where samples could not be found using the permId
277
+
278
+ ## Changes with pybis-1.18.7
279
+
280
+ - fixed entity_type caching problem
281
+
282
+ ## Changes with pybis-1.18.6
283
+
284
+ - fixed create samples bug
285
+ - fixed zip upload bug
286
+
287
+ ## Changes with pybis-1.18.5
288
+
289
+ - fixed deref bug for container
290
+ - added set and get methods for properties
291
+
292
+ ## Changes with pybis-1.18.4
293
+
294
+ - fixed bug in returning identifiers (thanks, Fabian!)
295
+
296
+ ## Changes with pybis-1.18.3
297
+
298
+ - prevent other users to read the saved token (chmod 600)
299
+ - fixed various pylint issues
300
+ - fixed «session no longer valid» message
301
+ - fixed search issues
302
+
303
+ ## Changes with pybis-1.18.2
304
+
305
+ - added deletion to transaction
306
+
307
+ ## Changes with pybis-1.18.1
308
+
309
+ - fixed del_parents() bug accidentally introduced in 1.18.0
310
+
311
+ ## Changes with pybis-1.18.0
312
+
313
+ - speed improvement when searching for samples and dataSets and then cycling through the results
314
+ - implemented search for number comparison, date comparison, string comparison (<, >, <=, >=)
315
+ - implemented search for parents identities and properties
316
+ - fixed minor bugs when connecting
317
+
318
+ ## Changes with pybis-1.17.4
319
+
320
+ - fixed another vocabularies update bug
321
+ - extended tests
322
+ - extended documentation
323
+
324
+ ## Changes with pybis-1.17.3
325
+
326
+ - fixed vocabularies bug
327
+ - fixed updating vocabularies
328
+
329
+ ## Changes with pybis-1.17.1
330
+
331
+ - fixed datastore bug
332
+
333
+ ## Changes with pybis-1.17.0
334
+
335
+ - added caching for often used but rarely updated openBIS objects.
336
+ - if you need to create a lot of Samples, this will improve your speed a lot
337
+ - by default, caching is enabled
338
+
339
+ ## Changes with pybis-1.16.2
340
+
341
+ - transaction.commit() now updates all added samples with their respective permIds
342
+
343
+ ## Changes with pybis-1.16.1
344
+
345
+ - new_dataset bugfix
346
+
347
+ ## Changes with pybis-1.16.0
348
+
349
+ - added support for batch creation of samples
350
+ - changed Python minimum requirement to Python 3.6
351
+ - new vocabulary and new property_type: internalNameSpace was removed
352
+ - this will cause possible incompatibilities with older versions of openBIS (< 20.10.x)
353
+
354
+ ## Changes with pybis-1.15.1
355
+
356
+ - added support for date-searching
357
+ - bugfix in property-searching
358
+
359
+ ## Changes with pybis-1.14.10
360
+
361
+ - bugfix when deleting dataSets
362
+ - some improvements with the documentation
363
+
364
+ ## Changes with pybis-1.14.9
365
+
366
+ - quick fix of parse_jackson error in special circumstances
367
+
368
+ ## Changes with pybis-1.14.7
369
+
370
+ - bugfix: no longer any error in get_samples(), get_datasets() and get_experiments() when
371
+ properties are provided but no data was found
372
+
373
+ ## Changes with pybis-1.14.6
374
+
375
+ - bugfix duplicate property-columns in get_samples() and get_datasets()
376
+
377
+ ## Changes with pybis-1.14.5
378
+
379
+ - no automagic detection of mountpoint, because of Windows incompatibilities
380
+
381
+ ## Changes with pybis-1.14.4
382
+
383
+ - added new convenience methods: get_experiments, get_projects etc.
384
+
385
+ ## Changes with pybis-1.14.3
386
+
387
+ - small bugfix: prevent error
388
+
389
+ ## Changes with pybis-1.14.2
390
+
391
+ - properties can be provided with either upper or lowercase
392
+ - bugfix of duplicate property columns
393
+
394
+ ## Changes with pybis-1.14.1
395
+
396
+ - small bugfix
397
+
398
+ ## Changes with pybis-1.14.0
399
+
400
+ - use props="\*" to get all properties of all samples or datasets
401
+
402
+ ## Changes with pybis-1.13.0
403
+
404
+ - added symlink() method for datasets to automatically create symlinks
405
+ - added `is_symlink()` and `is_physical()` methods for dataSets
406
+ - new `o.download_prefix` attribute for `download()` and `symlink()`
407
+ - `download_prefix` defaults to `data/openbis-hostname`
408
+
409
+ ## Changes with pybis-1.12.4
410
+
411
+ - fixed a bug which occured on some opeBIS instances when retrieving samples
412
+
413
+ ## Changes with pybis-1.12.3
414
+
415
+ - datasets, samples and experiments now successfully return project and space attributes
416
+
417
+ ## Changes with pybis-1.12.0
418
+
419
+ - added possibility to get any additional attributes in the get_samples() method
420
+ - added possibility to get any additional attributes in the get_dataSets() method
421
+
422
+ ## Changes with pybis-1.11.1
423
+
424
+ - added automatically accepting host key, otherwise mount() will hang the first time
425
+
426
+ ## Changes with pybis-1.11.0
427
+
428
+ - implemented mount() and unmount() methods to mount openBIS dataStore server via SSHFS and FUSE
429
+ - implemented is_mounted() and get_mountpoint() methods
430
+ - added instructions how to install FUSE/SSHFS on Unix systems
431
+
432
+ ## Changes with pybis-1.10.8
433
+
434
+ - dataSets of kind CONTAINER now also allow download of files
435
+
436
+ ## Changes with pybis-1.10.7
437
+
438
+ - made download work, even downloadUrl attribute is missing in dataSets
439
+
440
+ ## Changes with pybis-1.10.6
441
+
442
+ - added possibility to download files without /original/DEFAULT folders
443
+
444
+ ## Changes with pybis-1.10.5
445
+
446
+ - bugfix: creating projects
447
+
448
+ ## Changes with pybis-1.10.4
449
+
450
+ - better error messages when downloading files from datastore server
451
+
452
+ ## Changes with pybis-1.10.3
453
+
454
+ - print warning message when downloaded file-size does not match with promised file-size. Do not
455
+ die.
456
+
457
+ ## Changes with pybis-1.10.2
458
+
459
+ - typo bugfix
460
+
461
+ ## Changes with pybis-1.10.1
462
+
463
+ - fixed a nasty threading bug: open threads are now closed when downloading or uploading datasets
464
+ - this bugfix avoids this RuntimeError: cannot start new thread
465
+
466
+ ## Changes with pybis-1.10.0
467
+
468
+ - dataSet upload now supports zipfiles
469
+ - dataSet upload now supports files and folders
470
+ - different behaviour when providing a folder: files are no longer flattened out, structure is kept
471
+ intact
472
+
473
+ ## Changes with pybis-1.9.8
474
+
475
+ - new: create and update Dateset Types
476
+ - new: create and update Experiment Types
477
+ - new: create and update Material Types
478
+ - many bugfixes
479
+ - extended documentation about creating these entity types
480
+
481
+ ## Changes with pybis-1.9.7
482
+
483
+ - bugfix for creating propertyTypes of type controlled vocabulary and material
484
+
485
+ ## Changes with pybis-1.9.6
486
+
487
+ - bugfix when vocabulary attribute was not identical to the code of the aassigned property type
488
+
489
+ ## Changes with pybis-1.9.5
490
+
491
+ - bugfixes: get_property_assignments() method fixed for dataSet-, experiment- and materialTypes
492
+
493
+ ## Changes with pybis-1.9.4
494
+
495
+ - bugfix when searching for experiments or datasets of a given type
496
+
497
+ ## Changes with pybis-1.9.3
498
+
499
+ - fixed documentation: add_members (not add_persons)
500
+ - bugfix role assignments of groups
501
+
502
+ ## Changes with pybis-1.9.2
503
+
504
+ - searches for datasets and samples are highly improved
505
+ - search parameters can accept a code, an identifier or an openbis entity
506
+ - searching for all datasets in a project now works
507
+ - bugfixes
508
+
509
+ ## Changes with pybis-1.9.1
510
+
511
+ - bugfix: controlled vocabulary
512
+
513
+ ## Changes with pybis-1.9.0
514
+
515
+ - new: search, create, update and delete Property Types
516
+ - new: search, create, update and delete Plugins
517
+ - new: create and update Sample Types
518
+ - freeze entities to prevent changes
519
+ - added more tests
520
+
521
+ ## Changes with pybis-1.8.5
522
+
523
+ - changed to v3 API when fetching datastores
524
+ - gen_permId to generate unique permIds used for dataSets
525
+ - support ELN-LIMS style identifiers: /SPACE/PROJECT/COLLECTION/OBJECT_CODE
526
+ - terms now can be moved either to the top or after another term
527
+
528
+ ## Changes with pybis-1.8.4
529
+
530
+ - totalCount attribute added in every Things object
531
+ - totalCount will return the total number of elements matching a search
532
+ - bugfix in get_semantic_annotation method
533
+
534
+ ## Changes with pybis-1.8.3
535
+
536
+ - new method for attributes: .attrs.all() will return a dict, much like .props.all()
537
+ - attributes like registrator and modifier are now returned by default
538
+
539
+ ## Changes with pybis-1.8.2
540
+
541
+ - added key-lookup and setting for properties that contain either dots or dashes
542
+ - sample.props['some-weird.property-name'] = "some value"
543
+ - check for mandatory properties in samples (objects), datasets and experiments (collections)
544
+
545
+ ## Changes with pybis-1.8.1
546
+
547
+ - revised documentation
548
+ - improved DataSet creation
549
+ - added missing delete function for DataSets
550
+ - wrong entity attributes will now immediately throw an error
551
+ - more DataSet creation tests
552
+ - paging tests added
553
+ - `collection` is now alias for `experiment`
554
+ - `object` is alias for `sample`
555
+
556
+ ## Changes with pybis-1.8.0
557
+
558
+ - better support for fetching entity-types (dataSetTypes, sampleTypes)
559
+ - separation of propertyAssignments from entity-types
560
+ - added .get_propertyAssignments() method to all entity-types
561
+
562
+ ## Changes with pybis-1.7.6
563
+
564
+ - bugfix dataset upload for relative files (e.g. ../../file or /User/username/file)
565
+ - always only the filename is added to the dataset, not the folder containing it
566
+ - corrected License file
567
+
568
+ ## Changes with pybis-1.7.5
569
+
570
+ - added paging support for all search functions by providing start_with and count arguments
571
+ - make search more robust: allow get_sample('SPACE/CODE') instead of get_sample('/SPACE/CODE')
572
+ - make search more robust: allow get_sample(' 20160706001644827-208 ')
573
+ - make interface more robust (allow sample.permid instead of sample.permId)
574
+ - make properties more robust: allow get_samples(props='name') instead of get_samples(
575
+ props=['name'])
576
+ - fixed bug when parent/children of more than one element was searched: o.get_experiments()
577
+ .get_samples().get_parents()
578
+
579
+ ## Changes with pybis-1.7.4
580
+
581
+ - pyBIS now allows to create dataset-containers that contain no data themselves
582
+ - datasets now show a «kind» attribute, which can be either PHYSICAL, LINK or CONTAINER
583
+ - PropertyAssignments and other internal data are now finally nicely presented in Jupyter
584
+ - various bugfixes
585
+ - README.md is now correctly displayed
586
+ - setup.py is fixed, installation should no longer fail because of some utf-8 problems on certain
587
+ machines
588
+
589
+ ## Changes with pybis-1.7.3
590
+
591
+ - improved packaging information
592
+ - LICENSE included (Apache License v.2)
593
+
594
+ ## Changes with pybis-1.7.2
595
+
596
+ - added server_information to openBIS connection
597
+ - bugfix: project samples are only fetched when instance supports them
598
+
599
+ ## Changes with pybis-1.7.1
600
+
601
+ - fixed bug in controlled vocabulary when property name did not match the vocabulary name
602
+ - added `xxx_contained()` methods to Samples and DataSets
603
+ - updated documentation
604
+
605
+ ## Changes with pybis-1.7.0
606
+
607
+ - added components and containers functionality to both datasets and samples
608
+ - `set_attributes()` no longer automatically saves the object
609
+ - tags now have to be created (and saved) before they can be assigned
610
+ - `get_tag()` now can search for more than one tag at once and supports both code and permId
611
+ - `get_tags()` now available for almost all objects, returns a dataframe
612
+ - improved and enhanced documentation
613
+
614
+ ## Changes with pybis-1.6.8
615
+
616
+ - fixed bugs with parents and children of both samples and datasets
617
+ - new samples can be defined with parents / children
618
+ - `get_parents()` and `get_children()` methods now also work on new, not yet saved objects
619
+ - `get_sample()` and `get_dataset()` now also accept arrays of permIds / identifiers
620
+ - pybis now has a CHANGELOG!