geoseeq 0.5.6a14__py3-none-any.whl → 0.5.6a15__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- geoseeq/cli/main.py +1 -1
- geoseeq/cli/upload/upload.py +3 -1
- geoseeq/upload_download_manager.py +7 -3
- {geoseeq-0.5.6a14.dist-info → geoseeq-0.5.6a15.dist-info}/METADATA +1 -1
- {geoseeq-0.5.6a14.dist-info → geoseeq-0.5.6a15.dist-info}/RECORD +9 -9
- {geoseeq-0.5.6a14.dist-info → geoseeq-0.5.6a15.dist-info}/LICENSE +0 -0
- {geoseeq-0.5.6a14.dist-info → geoseeq-0.5.6a15.dist-info}/WHEEL +0 -0
- {geoseeq-0.5.6a14.dist-info → geoseeq-0.5.6a15.dist-info}/entry_points.txt +0 -0
- {geoseeq-0.5.6a14.dist-info → geoseeq-0.5.6a15.dist-info}/top_level.txt +0 -0
geoseeq/cli/main.py
CHANGED
@@ -53,7 +53,7 @@ def version():
|
|
53
53
|
Use of this tool implies acceptance of the GeoSeeq End User License Agreement.
|
54
54
|
Run `geoseeq eula show` to view the EULA.
|
55
55
|
"""
|
56
|
-
click.echo('0.5.
|
56
|
+
click.echo('0.5.6a15') # remember to update setup
|
57
57
|
|
58
58
|
|
59
59
|
@main.group('advanced')
|
geoseeq/cli/upload/upload.py
CHANGED
@@ -40,6 +40,7 @@ hidden_option = click.option('--hidden/--no-hidden', default=False, help='Upload
|
|
40
40
|
@click.option('--cores', default=1, help='Number of uploads to run in parallel', show_default=True)
|
41
41
|
@click.option('--threads-per-upload', default=4, help='Number of threads used to upload each file', show_default=True)
|
42
42
|
@click.option('--num-retries', default=3, help='Number of times to retry a failed upload', show_default=True)
|
43
|
+
@click.option('--chunk-size-mb', default=5, help='Size of chunks to upload in MB', show_default=True)
|
43
44
|
@ignore_errors_option
|
44
45
|
@yes_option
|
45
46
|
@private_option
|
@@ -52,7 +53,7 @@ hidden_option = click.option('--hidden/--no-hidden', default=False, help='Upload
|
|
52
53
|
show_default=True)
|
53
54
|
@folder_id_arg
|
54
55
|
@click.argument('file_paths', type=click.Path(exists=True), nargs=-1)
|
55
|
-
def cli_upload_file(state, cores, threads_per_upload, num_retries, ignore_errors, yes, private, link_type, recursive, hidden, no_new_versions, geoseeq_file_name, folder_id, file_paths):
|
56
|
+
def cli_upload_file(state, cores, threads_per_upload, num_retries, chunk_size_mb, ignore_errors, yes, private, link_type, recursive, hidden, no_new_versions, geoseeq_file_name, folder_id, file_paths):
|
56
57
|
"""Upload files to GeoSeeq.
|
57
58
|
|
58
59
|
This command uploads files to either a sample or project on GeoSeeq. It can be used to upload
|
@@ -122,6 +123,7 @@ def cli_upload_file(state, cores, threads_per_upload, num_retries, ignore_errors
|
|
122
123
|
num_retries=num_retries,
|
123
124
|
ignore_errors=ignore_errors,
|
124
125
|
session=knex.new_session(),
|
126
|
+
chunk_size_mb=chunk_size_mb,
|
125
127
|
)
|
126
128
|
for geoseeq_file_name, file_path in name_pairs:
|
127
129
|
if isfile(file_path):
|
@@ -22,7 +22,8 @@ def _upload_one_file(args):
|
|
22
22
|
(result_file, filepath, session, progress_tracker,
|
23
23
|
link_type, overwrite, log_level, parallel_uploads,
|
24
24
|
use_cache, no_new_versions, threads_per_upload,
|
25
|
-
num_retries, ignore_errors) = args
|
25
|
+
num_retries, ignore_errors, chunk_size_mb) = args
|
26
|
+
chunk_size = chunk_size_mb * 1024 * 1024
|
26
27
|
if parallel_uploads:
|
27
28
|
_make_in_process_logger(log_level)
|
28
29
|
try:
|
@@ -31,7 +32,7 @@ def _upload_one_file(args):
|
|
31
32
|
result_file.upload_file(
|
32
33
|
filepath,
|
33
34
|
session=session, overwrite=overwrite, progress_tracker=progress_tracker,
|
34
|
-
threads=threads_per_upload, use_cache=use_cache,
|
35
|
+
threads=threads_per_upload, use_cache=use_cache, chunk_size=chunk_size,
|
35
36
|
no_new_versions=no_new_versions, max_retries=num_retries,
|
36
37
|
)
|
37
38
|
else:
|
@@ -57,6 +58,7 @@ class GeoSeeqUploadManager:
|
|
57
58
|
no_new_versions=False,
|
58
59
|
num_retries=3,
|
59
60
|
ignore_errors=False,
|
61
|
+
chunk_size_mb=5,
|
60
62
|
use_cache=True):
|
61
63
|
self.session = session
|
62
64
|
self.n_parallel_uploads = n_parallel_uploads
|
@@ -70,6 +72,7 @@ class GeoSeeqUploadManager:
|
|
70
72
|
self.threads_per_upload = threads_per_upload
|
71
73
|
self.num_retries = num_retries
|
72
74
|
self.ignore_errors = ignore_errors
|
75
|
+
self.chunk_size_mb = chunk_size_mb
|
73
76
|
|
74
77
|
def add_result_file(self, result_file, local_path):
|
75
78
|
self._result_files.append((result_file, local_path))
|
@@ -95,7 +98,8 @@ class GeoSeeqUploadManager:
|
|
95
98
|
self.session, self.progress_tracker_factory(local_path),
|
96
99
|
self.link_type, self.overwrite, self.log_level,
|
97
100
|
self.n_parallel_uploads > 1, self.use_cache, self.no_new_versions,
|
98
|
-
self.threads_per_upload, self.num_retries, self.ignore_errors
|
101
|
+
self.threads_per_upload, self.num_retries, self.ignore_errors,
|
102
|
+
self.chunk_size_mb,
|
99
103
|
) for result_file, local_path in self._result_files
|
100
104
|
]
|
101
105
|
out = []
|
@@ -11,7 +11,7 @@ geoseeq/project.py,sha256=-9Y2ik0-BpT3iqh89v8VQBbdadhI58oaUP9oZK8oetc,13741
|
|
11
11
|
geoseeq/remote_object.py,sha256=Es-JlAz8iLRmCpAzh1MOwUh2MqtbuQM-p8wHIBAqNlQ,7131
|
12
12
|
geoseeq/sample.py,sha256=whgEVk6GnDJJLjn5uTOqFqRtVxZD3BgjTo7brAC5noU,7981
|
13
13
|
geoseeq/search.py,sha256=gawad6Cx5FxJBPlYkXWb-UKAO-UC0_yhvyU9Ca1kaNI,3388
|
14
|
-
geoseeq/upload_download_manager.py,sha256=
|
14
|
+
geoseeq/upload_download_manager.py,sha256=2WM1yvEseMxjrLsE_tNMvt0cCldMScAOuHxj2l0ICrc,8248
|
15
15
|
geoseeq/user.py,sha256=tol8i1UGLRrbMw5jeJDnna1ikRgrCDd50Jxz0a1lSgg,690
|
16
16
|
geoseeq/utils.py,sha256=PDRiEQIZYTcfEV9AYvloQVvfqs5JaebcFZodAa2SUW8,3577
|
17
17
|
geoseeq/work_orders.py,sha256=5uLVVfdKE8qh4gGaHkdBpXJGRTujuSg59knWCqEET4A,8071
|
@@ -22,7 +22,7 @@ geoseeq/cli/detail.py,sha256=q8Suu-j2k18knfSVFG-SWWGNsKM-n8y9RMA3LcIIi9Y,4132
|
|
22
22
|
geoseeq/cli/download.py,sha256=_upzZo08K0fAPbEsyi1uN0HGNUaY1pl6OoGPcWmvSUY,17765
|
23
23
|
geoseeq/cli/fastq_utils.py,sha256=-bmeQLaiMBm57zWOF0R5OlWTU0_3sh1JBC1RYw2BOFM,3083
|
24
24
|
geoseeq/cli/get_eula.py,sha256=79mbUwyiF7O1r0g6UTxG9kJGQEqKuH805E6eLkPC6Y4,997
|
25
|
-
geoseeq/cli/main.py,sha256=
|
25
|
+
geoseeq/cli/main.py,sha256=ExPXiBu0SIphQx1pjpmTVGyPPrkEVM7pHKwyi_U5Eao,3260
|
26
26
|
geoseeq/cli/manage.py,sha256=wGXAcVaXqE5JQEU8Jh6OlHr02nB396bpS_SFcOZdrEo,5929
|
27
27
|
geoseeq/cli/progress_bar.py,sha256=p1Xl01nkYxSBZCB30ue2verIIi22W93m3ZAMAxipD0g,738
|
28
28
|
geoseeq/cli/run.py,sha256=bx2AV6VIqOSTlxUda78xl0XxcZ8TXlQx02-e7iLQPwI,3838
|
@@ -37,7 +37,7 @@ geoseeq/cli/shared_params/id_handlers.py,sha256=501K9sCVkI0YGDQ62vXk_DM5lMMDrdB5
|
|
37
37
|
geoseeq/cli/shared_params/obj_getters.py,sha256=ZSkt6LnDkVFlNVYKgLrjzg60-6BthZMr3eeD3HNqzac,2741
|
38
38
|
geoseeq/cli/shared_params/opts_and_args.py,sha256=LrDkv9WtUryM4uUMXPRk04-EBcTQ7q5V6Yu-XRDUvvA,2083
|
39
39
|
geoseeq/cli/upload/__init__.py,sha256=3C9_S9t7chmYU-2ot89NV03x-EtmsjibulErKaU9w1k,627
|
40
|
-
geoseeq/cli/upload/upload.py,sha256=
|
40
|
+
geoseeq/cli/upload/upload.py,sha256=iZT_4M2I-muUo8cD5exLE49DrKjYuJA-xVKV69N0PB8,9978
|
41
41
|
geoseeq/cli/upload/upload_advanced.py,sha256=Jq5eGe-wOdrzxGWVwaFPg0BAJcW0YSx_eHEmYjJeKuA,3434
|
42
42
|
geoseeq/cli/upload/upload_reads.py,sha256=EMGqyZf11xwN4v2j8gNxMagTbE4kaOd-_hwupmg5I-8,10670
|
43
43
|
geoseeq/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -80,9 +80,9 @@ geoseeq/vc/vc_stub.py,sha256=IQr8dI0zsWKVAeY_5ybDD6n49_3othcgfHS3P0O9tuY,3110
|
|
80
80
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
81
81
|
tests/test_api_client.py,sha256=TS5njc5pcPP_Ycy-ljcfPVT1hQRBsFVdQ0lCqBmoesU,12810
|
82
82
|
tests/test_plotting.py,sha256=TcTu-2ARr8sxZJ7wPQxmbs3-gHw7uRvsgrhhhg0qKik,784
|
83
|
-
geoseeq-0.5.
|
84
|
-
geoseeq-0.5.
|
85
|
-
geoseeq-0.5.
|
86
|
-
geoseeq-0.5.
|
87
|
-
geoseeq-0.5.
|
88
|
-
geoseeq-0.5.
|
83
|
+
geoseeq-0.5.6a15.dist-info/LICENSE,sha256=IuhIl1XCxXLPLJT_coN1CNqQU4Khlq7x4IdW7ioOJD8,1067
|
84
|
+
geoseeq-0.5.6a15.dist-info/METADATA,sha256=REa9myn8L8WcbxLg0BXH1ucW-A6OtEclEHEb2Usr-0g,4806
|
85
|
+
geoseeq-0.5.6a15.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
86
|
+
geoseeq-0.5.6a15.dist-info/entry_points.txt,sha256=yF-6KDM8zXib4Al0qn49TX-qM7PUkWUIcYtsgt36rjM,45
|
87
|
+
geoseeq-0.5.6a15.dist-info/top_level.txt,sha256=zZk7mmeaqAYqFJG8nq2DTgSQPbflRjJwkDIhNURPDEU,14
|
88
|
+
geoseeq-0.5.6a15.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|