Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
cpanse committed Nov 3, 2023
1 parent 116bfe8 commit dba8000
Showing 1 changed file with 32 additions and 10 deletions.
42 changes: 32 additions & 10 deletions bfabric/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,43 @@
name = "bfabricPy"
alias = "suds-py3"

msg = "\033[93m{} version {} (2023-10-11) -- \"{}\"\
msg = "\033[93m{} version {} (2023-11-03) -- \"{}\"\
\nCopyright (C) 2014-2023 Functional Genomics Center Zurich\033[0m\n\n"\
.format(name, __version__, alias)

endpoints = sorted(['access', 'annotation', 'application', 'attachement',
'barcodes', 'comment', 'container', 'dataset', 'executable',
'externaljob', 'groupingvar', 'importresource', 'mail',
'parameter', 'plate', 'project', 'resource', 'sample',
'workflow', 'workflowstep',
'storage', 'user', 'workunit', 'charge', 'order', 'instrument'])
endpoints = sorted([
'annotation',
'application',
'attachement',
'barcodes',
'charge',
'comment',
'container',
'dataset',
'executable',
'externaljob',
'groupingvar',
'importresource',
'instrument',
'instrumentevent',
'mail',
'order',
'parameter',
'plate',
'project',
'resource',
'sample',
'storage',
'user',
'workflow',
'workflowstep',
'workunit'
])

# for unit tests
project=403
container=project
application=217
project = 403
container = project
application = 217

from bfabric.bfabric import Bfabric
from bfabric.bfabric import BfabricWrapperCreator
Expand Down

0 comments on commit dba8000

Please sign in to comment.