Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
2b08f7af
Commit
2b08f7af
authored
6 years ago
by
Swen Vermeul
Browse files
Options
Downloads
Patches
Plain Diff
check attributes for new DataSets
parent
4b7680a8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pybis/src/python/pybis/dataset.py
+7
-0
7 additions, 0 deletions
pybis/src/python/pybis/dataset.py
with
7 additions
and
0 deletions
pybis/src/python/pybis/dataset.py
+
7
−
0
View file @
2b08f7af
...
@@ -3,6 +3,7 @@ from threading import Thread
...
@@ -3,6 +3,7 @@ from threading import Thread
from
tabulate
import
tabulate
from
tabulate
import
tabulate
from
queue
import
Queue
from
queue
import
Queue
from
.openbis_object
import
OpenBisObject
from
.openbis_object
import
OpenBisObject
from
.definitions
import
openbis_definitions
from
.utils
import
VERBOSE
from
.utils
import
VERBOSE
import
requests
import
requests
import
json
import
json
...
@@ -11,6 +12,7 @@ from pandas import DataFrame
...
@@ -11,6 +12,7 @@ from pandas import DataFrame
import
urllib.parse
import
urllib.parse
# for Data upload
# for Data upload
PYBIS_PLUGIN
=
"
dataset-uploader-api
"
PYBIS_PLUGIN
=
"
dataset-uploader-api
"
dataset_definitions
=
openbis_definitions
(
'
DataSet
'
)
class
DataSet
(
OpenBisObject
):
class
DataSet
(
OpenBisObject
):
...
@@ -21,6 +23,10 @@ class DataSet(OpenBisObject):
...
@@ -21,6 +23,10 @@ class DataSet(OpenBisObject):
if
kwargs
is
None
:
if
kwargs
is
None
:
kwargs
=
{}
kwargs
=
{}
else
:
for
key
in
kwargs
:
if
key
not
in
dataset_definitions
[
'
attrs_new
'
]:
raise
ValueError
(
"
{} is not a valid attribute for a DataSet
"
.
format
(
key
))
if
kwargs
.
get
(
'
code
'
):
if
kwargs
.
get
(
'
code
'
):
kwargs
[
"
autoGeneratedCode
"
]
=
False
kwargs
[
"
autoGeneratedCode
"
]
=
False
...
@@ -106,6 +112,7 @@ class DataSet(OpenBisObject):
...
@@ -106,6 +112,7 @@ class DataSet(OpenBisObject):
'
set_parents()
'
,
'
set_children()
'
,
'
set_components()
'
,
'
set_contained()
'
,
'
set_containers()
'
,
'
set_parents()
'
,
'
set_children()
'
,
'
set_components()
'
,
'
set_contained()
'
,
'
set_containers()
'
,
'
sample
'
,
'
sample
'
,
'
experiment
'
,
'
experiment
'
,
'
collection
'
,
'
dataStore
'
,
'
dataStore
'
,
'
physicalData
'
,
'
physicalData
'
,
'
linkedData
'
,
'
linkedData
'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment