pybioos 0.0.13__py3-none-any.whl → 0.0.15__py3-none-any.whl
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.
- bioos/__about__.py +1 -1
- bioos/bioos_workflow.py +6 -1
- bioos/bw_import.py +1 -1
- bioos/bw_import_status_check.py +91 -0
- bioos/bw_status_check.py +94 -0
- bioos/errors.py +6 -3
- bioos/get_submission_logs.py +119 -0
- bioos/resource/workflows.py +47 -5
- {pybioos-0.0.13.dist-info → pybioos-0.0.15.dist-info}/METADATA +1 -1
- {pybioos-0.0.13.dist-info → pybioos-0.0.15.dist-info}/RECORD +14 -11
- pybioos-0.0.15.dist-info/entry_points.txt +7 -0
- pybioos-0.0.13.dist-info/entry_points.txt +0 -4
- {pybioos-0.0.13.dist-info → pybioos-0.0.15.dist-info}/LICENSE +0 -0
- {pybioos-0.0.13.dist-info → pybioos-0.0.15.dist-info}/WHEEL +0 -0
- {pybioos-0.0.13.dist-info → pybioos-0.0.15.dist-info}/top_level.txt +0 -0
bioos/__about__.py
CHANGED
bioos/bioos_workflow.py
CHANGED
|
@@ -277,8 +277,13 @@ class Bioos_workflow:
|
|
|
277
277
|
self.logger.info("Download finish.")
|
|
278
278
|
|
|
279
279
|
def submit_workflow_bioosapi(self):
|
|
280
|
+
"""Submit workflow using Bio-OS API"""
|
|
280
281
|
self.runs = self.wf.submit(**self.params_submit)
|
|
281
|
-
self.
|
|
282
|
+
submission_id = self.runs[0].submission
|
|
283
|
+
run_id = self.runs[0].id
|
|
284
|
+
self.logger.info(
|
|
285
|
+
f"Submit workflow run successfully. Submission ID: {submission_id}, Run ID: {run_id}"
|
|
286
|
+
)
|
|
282
287
|
return self.runs
|
|
283
288
|
|
|
284
289
|
def monitor_workflow(self):
|
bioos/bw_import.py
CHANGED
|
@@ -145,7 +145,7 @@ def bioos_workflow_import():
|
|
|
145
145
|
else:
|
|
146
146
|
# 如果没有设置monitor参数,直接退出
|
|
147
147
|
logger.info(
|
|
148
|
-
f"Workflow {args.workflow_name}
|
|
148
|
+
f"Workflow {args.workflow_name} is still validating, {result}, please wait and check the status later."
|
|
149
149
|
)
|
|
150
150
|
sys.exit(0)
|
|
151
151
|
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# coding: utf-8
|
|
3
|
+
|
|
4
|
+
import argparse
|
|
5
|
+
import logging
|
|
6
|
+
import sys
|
|
7
|
+
|
|
8
|
+
from bioos import bioos
|
|
9
|
+
from bioos.config import Config
|
|
10
|
+
from bioos.resource.workflows import WorkflowResource
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
def get_logger():
|
|
14
|
+
"""Setup logger"""
|
|
15
|
+
logger = logging.getLogger('bw_import_status_check')
|
|
16
|
+
if not logger.handlers:
|
|
17
|
+
handler = logging.StreamHandler()
|
|
18
|
+
formatter = logging.Formatter(
|
|
19
|
+
'%(asctime)s - %(levelname)s - %(message)s')
|
|
20
|
+
handler.setFormatter(formatter)
|
|
21
|
+
logger.addHandler(handler)
|
|
22
|
+
logger.setLevel(logging.INFO)
|
|
23
|
+
return logger
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
def bioos_workflow_status_check():
|
|
27
|
+
"""Command line entry point for checking workflow validation status"""
|
|
28
|
+
parser = argparse.ArgumentParser(
|
|
29
|
+
description='Bio-OS Workflow Import Status Check Tool',
|
|
30
|
+
formatter_class=argparse.RawDescriptionHelpFormatter)
|
|
31
|
+
|
|
32
|
+
# 必需参数
|
|
33
|
+
parser.add_argument(
|
|
34
|
+
'--ak',
|
|
35
|
+
required=True,
|
|
36
|
+
help='Access key for your Bio-OS instance platform account')
|
|
37
|
+
parser.add_argument(
|
|
38
|
+
'--sk',
|
|
39
|
+
required=True,
|
|
40
|
+
help='Secret key for your Bio-OS instance platform account')
|
|
41
|
+
parser.add_argument('--workspace_name',
|
|
42
|
+
required=True,
|
|
43
|
+
help='Target workspace name')
|
|
44
|
+
parser.add_argument('--workflow_id',
|
|
45
|
+
required=True,
|
|
46
|
+
help='ID of the workflow to check')
|
|
47
|
+
|
|
48
|
+
args = parser.parse_args()
|
|
49
|
+
logger = get_logger()
|
|
50
|
+
|
|
51
|
+
try:
|
|
52
|
+
# 配置Bio-OS
|
|
53
|
+
Config.set_access_key(args.ak)
|
|
54
|
+
Config.set_secret_key(args.sk)
|
|
55
|
+
Config.set_endpoint("https://bio-top.miracle.ac.cn")
|
|
56
|
+
|
|
57
|
+
# 获取workspace ID
|
|
58
|
+
workspaces = bioos.list_workspaces()
|
|
59
|
+
workspace_info = workspaces.query(f"Name=='{args.workspace_name}'")
|
|
60
|
+
if workspace_info.empty:
|
|
61
|
+
logger.error(f"Workspace {args.workspace_name} not found")
|
|
62
|
+
sys.exit(1)
|
|
63
|
+
workspace_id = workspace_info["ID"].iloc[0]
|
|
64
|
+
|
|
65
|
+
# 创建WorkflowResource实例
|
|
66
|
+
workflow_resource = WorkflowResource(workspace_id)
|
|
67
|
+
|
|
68
|
+
# 获取工作流状态
|
|
69
|
+
df = workflow_resource.list()
|
|
70
|
+
workflow_info = df[df.ID == args.workflow_id]
|
|
71
|
+
|
|
72
|
+
if len(workflow_info) == 1:
|
|
73
|
+
status = workflow_info.iloc[0]["Status"]["Phase"]
|
|
74
|
+
message = workflow_info.iloc[0]["Status"].get("Message", "")
|
|
75
|
+
|
|
76
|
+
# 打印状态信息
|
|
77
|
+
print(f"Status: {status}")
|
|
78
|
+
if message:
|
|
79
|
+
print(f"Message: {message}")
|
|
80
|
+
|
|
81
|
+
else:
|
|
82
|
+
logger.error(f"Workflow with ID {args.workflow_id} not found")
|
|
83
|
+
sys.exit(1)
|
|
84
|
+
|
|
85
|
+
except Exception as e:
|
|
86
|
+
logger.error(f"Error: {str(e)}")
|
|
87
|
+
sys.exit(1)
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
if __name__ == '__main__':
|
|
91
|
+
bioos_workflow_status_check()
|
bioos/bw_status_check.py
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# coding: utf-8
|
|
3
|
+
|
|
4
|
+
import argparse
|
|
5
|
+
import logging
|
|
6
|
+
import sys
|
|
7
|
+
|
|
8
|
+
from bioos import bioos
|
|
9
|
+
from bioos.config import Config
|
|
10
|
+
from bioos.resource.workflows import WorkflowResource
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
def get_logger():
|
|
14
|
+
"""Setup logger"""
|
|
15
|
+
logger = logging.getLogger('bw_status_check')
|
|
16
|
+
if not logger.handlers:
|
|
17
|
+
handler = logging.StreamHandler()
|
|
18
|
+
formatter = logging.Formatter(
|
|
19
|
+
'%(asctime)s - %(levelname)s - %(message)s')
|
|
20
|
+
handler.setFormatter(formatter)
|
|
21
|
+
logger.addHandler(handler)
|
|
22
|
+
logger.setLevel(logging.INFO)
|
|
23
|
+
return logger
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
def bioos_workflow_status_check():
|
|
27
|
+
"""Command line entry point for checking workflow run status"""
|
|
28
|
+
parser = argparse.ArgumentParser(
|
|
29
|
+
description='Bio-OS Workflow Run Status Check Tool',
|
|
30
|
+
formatter_class=argparse.RawDescriptionHelpFormatter)
|
|
31
|
+
|
|
32
|
+
# 必需参数
|
|
33
|
+
parser.add_argument(
|
|
34
|
+
'--ak',
|
|
35
|
+
required=True,
|
|
36
|
+
help='Access key for your Bio-OS instance platform account')
|
|
37
|
+
parser.add_argument(
|
|
38
|
+
'--sk',
|
|
39
|
+
required=True,
|
|
40
|
+
help='Secret key for your Bio-OS instance platform account')
|
|
41
|
+
parser.add_argument('--workspace_name',
|
|
42
|
+
required=True,
|
|
43
|
+
help='Target workspace name')
|
|
44
|
+
parser.add_argument('--submission_id',
|
|
45
|
+
required=True,
|
|
46
|
+
help='ID of the submission to check')
|
|
47
|
+
|
|
48
|
+
args = parser.parse_args()
|
|
49
|
+
logger = get_logger()
|
|
50
|
+
|
|
51
|
+
try:
|
|
52
|
+
# 配置Bio-OS
|
|
53
|
+
Config.set_access_key(args.ak)
|
|
54
|
+
Config.set_secret_key(args.sk)
|
|
55
|
+
Config.set_endpoint("https://bio-top.miracle.ac.cn")
|
|
56
|
+
|
|
57
|
+
# 获取workspace ID
|
|
58
|
+
workspaces = bioos.list_workspaces()
|
|
59
|
+
workspace_info = workspaces.query(f"Name=='{args.workspace_name}'")
|
|
60
|
+
if workspace_info.empty:
|
|
61
|
+
logger.error(f"Workspace {args.workspace_name} not found")
|
|
62
|
+
sys.exit(1)
|
|
63
|
+
workspace_id = workspace_info["ID"].iloc[0]
|
|
64
|
+
|
|
65
|
+
# 获取提交的运行状态
|
|
66
|
+
resp = Config.service().list_runs({
|
|
67
|
+
"SubmissionID": args.submission_id,
|
|
68
|
+
"WorkspaceID": workspace_id
|
|
69
|
+
})
|
|
70
|
+
|
|
71
|
+
if not resp.get("Items"):
|
|
72
|
+
logger.error(f"No runs found for submission {args.submission_id}")
|
|
73
|
+
sys.exit(1)
|
|
74
|
+
|
|
75
|
+
# 打印所有运行的状态
|
|
76
|
+
print(f"\nSubmission ID: {args.submission_id}")
|
|
77
|
+
print("Runs Status:")
|
|
78
|
+
print("-" * 60)
|
|
79
|
+
print(f"{'Run ID':<40} {'Status':<10} {'Message'}")
|
|
80
|
+
print("-" * 60)
|
|
81
|
+
|
|
82
|
+
for run in resp.get("Items"):
|
|
83
|
+
run_id = run.get("ID", "N/A")
|
|
84
|
+
status = run.get("Status", "Unknown")
|
|
85
|
+
message = run.get("Message", "")
|
|
86
|
+
print(f"{run_id:<40} {status:<10} {message}")
|
|
87
|
+
|
|
88
|
+
except Exception as e:
|
|
89
|
+
logger.error(f"Error: {str(e)}")
|
|
90
|
+
sys.exit(1)
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
if __name__ == '__main__':
|
|
94
|
+
bioos_workflow_status_check()
|
bioos/errors.py
CHANGED
|
@@ -21,7 +21,7 @@ class EnvironmentConfigurationError(ConfigurationError):
|
|
|
21
21
|
|
|
22
22
|
def __init__(self, env: str):
|
|
23
23
|
"""Initialize the EnvironmentConfigurationError .
|
|
24
|
-
|
|
24
|
+
|
|
25
25
|
:param env: environment name of the configuration
|
|
26
26
|
:type env: str
|
|
27
27
|
"""
|
|
@@ -51,13 +51,16 @@ class ParameterError(Exception):
|
|
|
51
51
|
"""Exception indicating a required parameter not valid
|
|
52
52
|
"""
|
|
53
53
|
|
|
54
|
-
def __init__(self, name: str):
|
|
54
|
+
def __init__(self, name: str, msg: str = None):
|
|
55
55
|
"""Initialize the ParameterError .
|
|
56
56
|
|
|
57
57
|
:param name: name of the parameter
|
|
58
58
|
:type name: str
|
|
59
59
|
"""
|
|
60
|
-
self.
|
|
60
|
+
self.name = name
|
|
61
|
+
self.message = f"parameter '{name}' invalid / not found"
|
|
62
|
+
if msg:
|
|
63
|
+
self.message += f": {msg}"
|
|
61
64
|
super().__init__(self.message)
|
|
62
65
|
|
|
63
66
|
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# coding: utf-8
|
|
3
|
+
|
|
4
|
+
import argparse
|
|
5
|
+
import logging
|
|
6
|
+
import os
|
|
7
|
+
import sys
|
|
8
|
+
|
|
9
|
+
from bioos import bioos
|
|
10
|
+
from bioos.config import Config
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
def get_logger():
|
|
14
|
+
"""Setup logger"""
|
|
15
|
+
logger = logging.getLogger('get_submission_logs')
|
|
16
|
+
if not logger.handlers:
|
|
17
|
+
handler = logging.StreamHandler()
|
|
18
|
+
formatter = logging.Formatter(
|
|
19
|
+
'%(asctime)s - %(levelname)s - %(message)s')
|
|
20
|
+
handler.setFormatter(formatter)
|
|
21
|
+
logger.addHandler(handler)
|
|
22
|
+
logger.setLevel(logging.INFO)
|
|
23
|
+
return logger
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
def get_submission_logs():
|
|
27
|
+
"""Command line entry point for downloading workflow submission logs"""
|
|
28
|
+
parser = argparse.ArgumentParser(
|
|
29
|
+
description='Bio-OS Workflow Submission Logs Download Tool',
|
|
30
|
+
formatter_class=argparse.RawDescriptionHelpFormatter)
|
|
31
|
+
|
|
32
|
+
# 必需参数
|
|
33
|
+
parser.add_argument(
|
|
34
|
+
'--ak',
|
|
35
|
+
required=True,
|
|
36
|
+
help='Access key for your Bio-OS instance platform account')
|
|
37
|
+
parser.add_argument(
|
|
38
|
+
'--sk',
|
|
39
|
+
required=True,
|
|
40
|
+
help='Secret key for your Bio-OS instance platform account')
|
|
41
|
+
parser.add_argument('--workspace_name',
|
|
42
|
+
required=True,
|
|
43
|
+
help='Target workspace name')
|
|
44
|
+
parser.add_argument('--submission_id',
|
|
45
|
+
required=True,
|
|
46
|
+
help='ID of the submission to download logs')
|
|
47
|
+
parser.add_argument(
|
|
48
|
+
'--output_dir',
|
|
49
|
+
default='.',
|
|
50
|
+
help='Local directory to save the logs (default: current directory)')
|
|
51
|
+
|
|
52
|
+
args = parser.parse_args()
|
|
53
|
+
logger = get_logger()
|
|
54
|
+
|
|
55
|
+
try:
|
|
56
|
+
# 配置Bio-OS
|
|
57
|
+
Config.set_access_key(args.ak)
|
|
58
|
+
Config.set_secret_key(args.sk)
|
|
59
|
+
Config.set_endpoint("https://bio-top.miracle.ac.cn")
|
|
60
|
+
|
|
61
|
+
# 获取workspace ID
|
|
62
|
+
workspaces = bioos.list_workspaces()
|
|
63
|
+
workspace_info = workspaces.query(f"Name=='{args.workspace_name}'")
|
|
64
|
+
if workspace_info.empty:
|
|
65
|
+
logger.error(f"Workspace {args.workspace_name} not found")
|
|
66
|
+
sys.exit(1)
|
|
67
|
+
workspace_id = workspace_info["ID"].iloc[0]
|
|
68
|
+
|
|
69
|
+
# 获取workspace对象
|
|
70
|
+
ws = bioos.workspace(workspace_id)
|
|
71
|
+
|
|
72
|
+
# 列出所有文件
|
|
73
|
+
logger.info(f"Listing files for submission {args.submission_id}")
|
|
74
|
+
files_df = ws.files.list()
|
|
75
|
+
|
|
76
|
+
# 过滤出与submission相关的日志文件
|
|
77
|
+
log_files = []
|
|
78
|
+
for file in files_df.key:
|
|
79
|
+
if args.submission_id in file:
|
|
80
|
+
# 检查是否是日志文件
|
|
81
|
+
if (file.endswith('.log') or 'stderr' in file
|
|
82
|
+
or 'stdout' in file or '/log/' in file):
|
|
83
|
+
log_files.append(file)
|
|
84
|
+
|
|
85
|
+
if not log_files:
|
|
86
|
+
logger.error(
|
|
87
|
+
f"No log files found for submission {args.submission_id}")
|
|
88
|
+
sys.exit(1)
|
|
89
|
+
|
|
90
|
+
logger.info(f"Found {len(log_files)} log files")
|
|
91
|
+
|
|
92
|
+
# 创建输出目录
|
|
93
|
+
output_path = os.path.join(args.output_dir, args.submission_id)
|
|
94
|
+
os.makedirs(output_path, exist_ok=True)
|
|
95
|
+
|
|
96
|
+
# 下载文件
|
|
97
|
+
logger.info("Downloading log files...")
|
|
98
|
+
try:
|
|
99
|
+
ws.files.download(log_files, output_path, flatten=False)
|
|
100
|
+
logger.info(f"Successfully downloaded log files to {output_path}")
|
|
101
|
+
except Exception as e:
|
|
102
|
+
logger.error(f"Error downloading some files: {str(e)}")
|
|
103
|
+
logger.info("Continuing with successfully downloaded files...")
|
|
104
|
+
|
|
105
|
+
# 打印下载的文件列表
|
|
106
|
+
logger.info("\nDownloaded files:")
|
|
107
|
+
for root, _, files in os.walk(output_path):
|
|
108
|
+
for file in files:
|
|
109
|
+
rel_path = os.path.relpath(os.path.join(root, file),
|
|
110
|
+
output_path)
|
|
111
|
+
logger.info(f" {rel_path}")
|
|
112
|
+
|
|
113
|
+
except Exception as e:
|
|
114
|
+
logger.error(f"Error: {str(e)}")
|
|
115
|
+
sys.exit(1)
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
if __name__ == '__main__':
|
|
119
|
+
get_submission_logs()
|
bioos/resource/workflows.py
CHANGED
|
@@ -417,7 +417,7 @@ class WorkflowResource(metaclass=SingletonType):
|
|
|
417
417
|
raise ParameterError("name", name)
|
|
418
418
|
|
|
419
419
|
if language != "WDL":
|
|
420
|
-
raise ParameterError("language", language)
|
|
420
|
+
raise ParameterError("language", f"Unsupported language: '{language}'. Only 'WDL' is supported.")
|
|
421
421
|
|
|
422
422
|
if source.startswith("http://") or source.startswith("https://"):
|
|
423
423
|
params = {
|
|
@@ -432,7 +432,50 @@ class WorkflowResource(metaclass=SingletonType):
|
|
|
432
432
|
}
|
|
433
433
|
if token:
|
|
434
434
|
params["Token"] = token
|
|
435
|
-
|
|
435
|
+
return Config.service().create_workflow(params)
|
|
436
|
+
elif os.path.isdir(source):
|
|
437
|
+
# 扫描文件夹中的所有 WDL 文件,并构建相对路径
|
|
438
|
+
# 用 source 来检验上传的是否是文件夹
|
|
439
|
+
source_files = []
|
|
440
|
+
for root, _, files in os.walk(source):
|
|
441
|
+
for file in files:
|
|
442
|
+
if file.endswith('.wdl'):
|
|
443
|
+
full_path = os.path.join(root, file)
|
|
444
|
+
relative_path = os.path.relpath(full_path, source) # 获取文件相对于source的相对路径。
|
|
445
|
+
source_files.append({
|
|
446
|
+
"name": relative_path, # 使用相对路径
|
|
447
|
+
"originFile": open(full_path, "rb").read()
|
|
448
|
+
})
|
|
449
|
+
|
|
450
|
+
if not source_files:
|
|
451
|
+
raise ParameterError("source", "No WDL files found in the specified folder")
|
|
452
|
+
|
|
453
|
+
# 确保主工作流路径是相对路径
|
|
454
|
+
if main_workflow_path:
|
|
455
|
+
if not os.path.exists(main_workflow_path):
|
|
456
|
+
raise ParameterError("main_workflow_path", f"Main workflow file {main_workflow_path} not found")
|
|
457
|
+
main_relative = os.path.relpath(main_workflow_path, source)
|
|
458
|
+
else:
|
|
459
|
+
main_relative = None
|
|
460
|
+
|
|
461
|
+
zip_base64 = zip_files(source_files, "base64")
|
|
462
|
+
|
|
463
|
+
params = {
|
|
464
|
+
"WorkspaceID": self.workspace_id,
|
|
465
|
+
"Name": name,
|
|
466
|
+
"Description": description,
|
|
467
|
+
"Language": language,
|
|
468
|
+
"SourceType": "file",
|
|
469
|
+
"Content": zip_base64,
|
|
470
|
+
}
|
|
471
|
+
if main_relative:
|
|
472
|
+
params["MainWorkflowPath"] = os.path.basename(main_relative)
|
|
473
|
+
if token:
|
|
474
|
+
params["Token"] = token
|
|
475
|
+
|
|
476
|
+
return Config.service().create_workflow(params)
|
|
477
|
+
#单文件上传
|
|
478
|
+
elif os.path.isfile(source) and source.endswith('.wdl'):
|
|
436
479
|
source_files = [{
|
|
437
480
|
"name": os.path.basename(source),
|
|
438
481
|
"originFile": open(source, "rb").read()
|
|
@@ -450,10 +493,9 @@ class WorkflowResource(metaclass=SingletonType):
|
|
|
450
493
|
"Content": zip_base64,
|
|
451
494
|
"MainWorkflowPath": main_workflow_path,
|
|
452
495
|
}
|
|
496
|
+
return Config.service().create_workflow(params)
|
|
453
497
|
else:
|
|
454
|
-
raise ParameterError("source", source)
|
|
455
|
-
|
|
456
|
-
return Config.service().create_workflow(params)
|
|
498
|
+
raise ParameterError("source",f"Workflow source '{source}' does not exist.")
|
|
457
499
|
|
|
458
500
|
def list(self) -> DataFrame:
|
|
459
501
|
"""Lists all workflows' information .
|
|
@@ -1,10 +1,13 @@
|
|
|
1
|
-
bioos/__about__.py,sha256=
|
|
1
|
+
bioos/__about__.py,sha256=zsL_PukbnoBYjoIOAjFEp5bxiw0QpluTLypKg_3j1mw,57
|
|
2
2
|
bioos/__init__.py,sha256=4GZKi13lDTD25YBkGakhZyEQZWTER_OWQMNPoH_UM2c,22
|
|
3
3
|
bioos/bioos.py,sha256=fHzOb1l5wYxw6NVYYZDiFcgk4V28BAgWEc3ev12reWs,2409
|
|
4
|
-
bioos/bioos_workflow.py,sha256=
|
|
5
|
-
bioos/bw_import.py,sha256=
|
|
4
|
+
bioos/bioos_workflow.py,sha256=BzEPOyAjgdK7Wafbl2b1_qG_VTEdp8xDwKS68tBovjs,14327
|
|
5
|
+
bioos/bw_import.py,sha256=lQk_ch_tTz8l4bnWniOzWZ1IxI6ZvKlaASkNMsdDGfA,5697
|
|
6
|
+
bioos/bw_import_status_check.py,sha256=sJuso2SAfZWvPzypnGge25Ayv5PsSGRXqSNNwIhNu-E,2794
|
|
7
|
+
bioos/bw_status_check.py,sha256=FVilkawRA7GD1JXUBeaR28W1DfN9bAzYBIAjqi4JIno,2916
|
|
6
8
|
bioos/config.py,sha256=CvFabYqV1BkFWO8fnr5vBf6xNtNzA8hAEVeEIbvAOm8,4307
|
|
7
|
-
bioos/errors.py,sha256=
|
|
9
|
+
bioos/errors.py,sha256=p0fH6JSMYBjul88lMJ7PPwGNh4SYg62-7VMNuUXWl-E,2540
|
|
10
|
+
bioos/get_submission_logs.py,sha256=jUtT8Vic8h_VOcqrqJsTBSonve64RjbKNAyp0wUtIpg,3934
|
|
8
11
|
bioos/log.py,sha256=twiCvf5IgJB7uvzANwBluSlztJN8ZrxbGZUBGlZ0vps,3204
|
|
9
12
|
bioos/internal/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
10
13
|
bioos/internal/tos.py,sha256=0R6YN2lxjjZsuMfv0yLSkBmz_LqmzQGb8GagnUMc8EY,12264
|
|
@@ -14,7 +17,7 @@ bioos/resource/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
|
14
17
|
bioos/resource/data_models.py,sha256=enKp8yyQI8IbRqe--0Xtyg1XzOwQQPQzoQsx_hNuZ6E,5089
|
|
15
18
|
bioos/resource/files.py,sha256=1HY0IHvq8H843VM2XZIHDdCuXXNcMrlEFhSNqWXmFzE,8456
|
|
16
19
|
bioos/resource/utility.py,sha256=emY7qVLLLvGmQYlVj-_bLAxU7i1GfQOUybdRkfEDwVA,1300
|
|
17
|
-
bioos/resource/workflows.py,sha256=
|
|
20
|
+
bioos/resource/workflows.py,sha256=v2jTAEBhVjp4U-iLaIswYBMkHZ7uQ96dZUE0zvjnrWQ,23426
|
|
18
21
|
bioos/resource/workspaces.py,sha256=Gmr8y_sjK7TQbhMhQ_7rxqR1KFcwU72I95YYCFrrLBQ,3995
|
|
19
22
|
bioos/service/BioOsService.py,sha256=HuYUEwomHCLpA1MYgVqGyWAQWHM-_BHB-jmy9VsOlnQ,6724
|
|
20
23
|
bioos/service/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
@@ -31,9 +34,9 @@ bioos/tests/workspaces.py,sha256=LuuRrTs2XqfE5mGQyJNl9RBtuMb4NZHBJFoO8HMZVYQ,522
|
|
|
31
34
|
bioos/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
35
|
bioos/utils/common_tools.py,sha256=fgMoE_-qZjgfQtUj_pmCTyYDtbJasyfH4Gm3VQsbgBQ,1651
|
|
33
36
|
bioos/utils/workflows.py,sha256=zRbwTUigoM5V5LFOgzQPm3kwxt5Ogz95OFfefJc6Fjo,133
|
|
34
|
-
pybioos-0.0.
|
|
35
|
-
pybioos-0.0.
|
|
36
|
-
pybioos-0.0.
|
|
37
|
-
pybioos-0.0.
|
|
38
|
-
pybioos-0.0.
|
|
39
|
-
pybioos-0.0.
|
|
37
|
+
pybioos-0.0.15.dist-info/LICENSE,sha256=cPkGXsgfPgEhIns7Lt3Avxx0Uy-VbdsoP8jvNGuj3cE,1063
|
|
38
|
+
pybioos-0.0.15.dist-info/METADATA,sha256=mtaPib2vulNih35eFfmzWcpz8sdMHOWjZ-IYYwxqHDE,830
|
|
39
|
+
pybioos-0.0.15.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
40
|
+
pybioos-0.0.15.dist-info/entry_points.txt,sha256=Sc5H0_X7r03Mef4Qd70bebqgdIbVAxLU7nV7qP7cKD4,328
|
|
41
|
+
pybioos-0.0.15.dist-info/top_level.txt,sha256=llpzydkKVDSaWZgz3bsTUsQmhoQpc_JcRJg2-H-5a2U,6
|
|
42
|
+
pybioos-0.0.15.dist-info/RECORD,,
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[console_scripts]
|
|
2
|
+
bw = bioos.bioos_workflow:bioos_workflow
|
|
3
|
+
bw_import = bioos.bw_import:bioos_workflow_import
|
|
4
|
+
bw_import_status_check = bioos.bw_import_status_check:bioos_workflow_status_check
|
|
5
|
+
bw_status_check = bioos.bw_status_check:bioos_workflow_status_check
|
|
6
|
+
get_submission_logs = bioos.get_submission_logs:get_submission_logs
|
|
7
|
+
|
|
File without changes
|
|
File without changes
|
|
File without changes
|