geoseeq 0.6.14.dev6__py3-none-any.whl → 0.6.14.dev7__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.
- geoseeq/cli/main.py +1 -1
- geoseeq/cli/upload/upload_advanced.py +2 -2
- geoseeq/cli/upload/upload_reads.py +7 -7
- geoseeq/constants.py +7 -1
- {geoseeq-0.6.14.dev6.dist-info → geoseeq-0.6.14.dev7.dist-info}/METADATA +1 -1
- {geoseeq-0.6.14.dev6.dist-info → geoseeq-0.6.14.dev7.dist-info}/RECORD +10 -10
- {geoseeq-0.6.14.dev6.dist-info → geoseeq-0.6.14.dev7.dist-info}/LICENSE +0 -0
- {geoseeq-0.6.14.dev6.dist-info → geoseeq-0.6.14.dev7.dist-info}/WHEEL +0 -0
- {geoseeq-0.6.14.dev6.dist-info → geoseeq-0.6.14.dev7.dist-info}/entry_points.txt +0 -0
- {geoseeq-0.6.14.dev6.dist-info → geoseeq-0.6.14.dev7.dist-info}/top_level.txt +0 -0
geoseeq/cli/main.py
CHANGED
@@ -55,7 +55,7 @@ def version():
|
|
55
55
|
Use of this tool implies acceptance of the GeoSeeq End User License Agreement.
|
56
56
|
Run `geoseeq eula show` to view the EULA.
|
57
57
|
"""
|
58
|
-
click.echo('0.6.
|
58
|
+
click.echo('0.6.14dev7') # remember to update pyproject.toml
|
59
59
|
|
60
60
|
|
61
61
|
@main.group('advanced')
|
@@ -6,7 +6,7 @@ from .upload_reads import (
|
|
6
6
|
_make_in_process_logger,
|
7
7
|
_get_regex,
|
8
8
|
_group_files,
|
9
|
-
|
9
|
+
flatten_list_of_fastxs,
|
10
10
|
)
|
11
11
|
|
12
12
|
from multiprocessing import Pool, current_process
|
@@ -84,7 +84,7 @@ def cli_find_urls_for_reads(state, cores, overwrite, yes, regex, private, module
|
|
84
84
|
"""
|
85
85
|
knex = state.get_knex()
|
86
86
|
proj = handle_project_id(knex, project_id, yes, private)
|
87
|
-
filepaths = {basename(line): line for line in
|
87
|
+
filepaths = {basename(line): line for line in flatten_list_of_fastxs(fastq_files)}
|
88
88
|
click.echo(f'Found {len(filepaths)} files to upload.', err=True)
|
89
89
|
regex = _get_regex(knex, filepaths, module_name, proj, regex)
|
90
90
|
groups = _group_files(knex, filepaths, module_name, regex, yes)
|
@@ -118,7 +118,7 @@ def _is_fastq(path, fq_exts=['.fastq', '.fq'], compression_exts=['.gz', '.bz2',
|
|
118
118
|
return False
|
119
119
|
|
120
120
|
|
121
|
-
def _is_fasta(path, fa_exts=['.fasta', '.fa'], compression_exts=['.gz', '.bz2', '']):
|
121
|
+
def _is_fasta(path, fa_exts=['.fasta', '.fa', '.fna', '.faa'], compression_exts=['.gz', '.bz2', '']):
|
122
122
|
for fa_ext in fa_exts:
|
123
123
|
for compression_ext in compression_exts:
|
124
124
|
if path.endswith(fa_ext + compression_ext):
|
@@ -289,9 +289,9 @@ def cli_upload_reads_wizard(state, cores, overwrite, yes, regex, private, link_t
|
|
289
289
|
[FILES...] can be paths to BAM files or a file containing a list of paths, or a mix of both.
|
290
290
|
Example: "path/to/bam/files
|
291
291
|
"""
|
292
|
-
knex = state.get_knex()
|
293
|
-
proj = handle_project_id(knex, project_id, yes, private)
|
294
|
-
filepaths = {basename(line): line for line in flatten_list_of_bams(files)}
|
295
|
-
click.echo(f'Found {len(filepaths)} files to upload.', err=True)
|
296
|
-
groups = _group_files(knex, filepaths, 'bam::bam', regex, yes)
|
297
|
-
_do_upload(groups, 'bam::bam', link_type, proj, filepaths, overwrite, no_new_versions, cores, state)
|
292
|
+
# knex = state.get_knex()
|
293
|
+
# proj = handle_project_id(knex, project_id, yes, private)
|
294
|
+
# filepaths = {basename(line): line for line in flatten_list_of_bams(files)}
|
295
|
+
# click.echo(f'Found {len(filepaths)} files to upload.', err=True)
|
296
|
+
# groups = _group_files(knex, filepaths, 'bam::bam', regex, yes)
|
297
|
+
# _do_upload(groups, 'bam::bam', link_type, proj, filepaths, overwrite, no_new_versions, cores, state)
|
geoseeq/constants.py
CHANGED
@@ -2,7 +2,13 @@ from os import environ
|
|
2
2
|
from os.path import join
|
3
3
|
|
4
4
|
FIVE_MB = 5 * (1024 ** 2)
|
5
|
-
FASTQ_MODULE_NAMES = [
|
5
|
+
FASTQ_MODULE_NAMES = [
|
6
|
+
'short_read::paired_end',
|
7
|
+
'short_read::single_end',
|
8
|
+
'long_read::nanopore',
|
9
|
+
'raw::raw_reads',
|
10
|
+
'genome::fasta',
|
11
|
+
]
|
6
12
|
DEFAULT_ENDPOINT = "https://backend.geoseeq.com"
|
7
13
|
|
8
14
|
CONFIG_FOLDER = environ.get("XDG_CONFIG_HOME", join(environ["HOME"], ".config"))
|
@@ -2,7 +2,7 @@ geoseeq/__init__.py,sha256=YqYqeHbqjgWI5OBIxkPXNvLISOjVWaNwVFy6AGJ7uwc,982
|
|
2
2
|
geoseeq/app.py,sha256=Y6d1UzxFLfE3RNccATbFCVi6kH3eFmzwoUbeR2Ry09A,2387
|
3
3
|
geoseeq/blob_constructors.py,sha256=AkWpDQY0EdGMxF1p6eRspyHKubcUdiW4it-_Q7S2QWk,188
|
4
4
|
geoseeq/bulk_creators.py,sha256=pdn-Dv7yv5SFv-PfDuQbuOnw2W4-BfIfRJVRAhM8U6s,2115
|
5
|
-
geoseeq/constants.py,sha256=
|
5
|
+
geoseeq/constants.py,sha256=g9YEczT2ssteTrdgFrRimXo5I0C8-MqftoG-hE3KAkg,489
|
6
6
|
geoseeq/file_system_cache.py,sha256=HzVZWtwLD2fjWWSo_UfWmGeBltm9He4lP_OqzKwNGWg,4138
|
7
7
|
geoseeq/knex.py,sha256=zcjafsmUn9SC3LlRnvvaXpr-pHYZ0IXk7LpzuUoE3MI,8312
|
8
8
|
geoseeq/organization.py,sha256=bJkYL8_D-k6IYAaii2ZbxjwYnXy6lvu6iLXscxKlA3w,2542
|
@@ -24,7 +24,7 @@ geoseeq/cli/download.py,sha256=cOLIVzAfxpOJnSd4WKWR-HCkOrKjPMbgYaNXDSd9i90,21305
|
|
24
24
|
geoseeq/cli/fastq_utils.py,sha256=-bmeQLaiMBm57zWOF0R5OlWTU0_3sh1JBC1RYw2BOFM,3083
|
25
25
|
geoseeq/cli/find_grn.py,sha256=oMDxkzGQBQb2_cCuvmwoeHOsFHqyO9RLeJzrB6bAe5M,439
|
26
26
|
geoseeq/cli/get_eula.py,sha256=79mbUwyiF7O1r0g6UTxG9kJGQEqKuH805E6eLkPC6Y4,997
|
27
|
-
geoseeq/cli/main.py,sha256=
|
27
|
+
geoseeq/cli/main.py,sha256=guwmM9RE-vVZcu7_rMyOLiet-Ua1Jw_VP0mk62cT4eQ,3987
|
28
28
|
geoseeq/cli/manage.py,sha256=wGXAcVaXqE5JQEU8Jh6OlHr02nB396bpS_SFcOZdrEo,5929
|
29
29
|
geoseeq/cli/progress_bar.py,sha256=p1Xl01nkYxSBZCB30ue2verIIi22W93m3ZAMAxipD0g,738
|
30
30
|
geoseeq/cli/project.py,sha256=V5SdXm2Hwo2lxrkpwRDedw-mAE4XnM2uwT-Gj1D90VQ,3030
|
@@ -42,8 +42,8 @@ geoseeq/cli/shared_params/obj_getters.py,sha256=ZSkt6LnDkVFlNVYKgLrjzg60-6BthZMr
|
|
42
42
|
geoseeq/cli/shared_params/opts_and_args.py,sha256=_DcJ-TqgrbBaeDd-kuHEx2gLZPQN6EHZYWh8Ag-d8Vg,2091
|
43
43
|
geoseeq/cli/upload/__init__.py,sha256=3C9_S9t7chmYU-2ot89NV03x-EtmsjibulErKaU9w1k,627
|
44
44
|
geoseeq/cli/upload/upload.py,sha256=JZkhe1q3KOp7-tKyzwi860TQhZoNDnZs4yB2PJhOjl0,10081
|
45
|
-
geoseeq/cli/upload/upload_advanced.py,sha256=
|
46
|
-
geoseeq/cli/upload/upload_reads.py,sha256=
|
45
|
+
geoseeq/cli/upload/upload_advanced.py,sha256=tXP7SWaLbLay5FVtqOoj-oToBM1ha2NWzywMnE0Foeo,3434
|
46
|
+
geoseeq/cli/upload/upload_reads.py,sha256=IlO-9b8dHbA-fx8FK_R0BwyoRgtqQUoowgXJcyx_O3k,11018
|
47
47
|
geoseeq/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
48
48
|
geoseeq/contrib/ncbi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
49
49
|
geoseeq/contrib/ncbi/api.py,sha256=WQeLoGA_-Zha-QeSO8_i7HpvXyD8UkV0qc5okm11KiA,1056
|
@@ -87,9 +87,9 @@ geoseeq/vc/vc_stub.py,sha256=IQr8dI0zsWKVAeY_5ybDD6n49_3othcgfHS3P0O9tuY,3110
|
|
87
87
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
88
88
|
tests/test_api_client.py,sha256=TS5njc5pcPP_Ycy-ljcfPVT1hQRBsFVdQ0lCqBmoesU,12810
|
89
89
|
tests/test_plotting.py,sha256=TcTu-2ARr8sxZJ7wPQxmbs3-gHw7uRvsgrhhhg0qKik,784
|
90
|
-
geoseeq-0.6.14.
|
91
|
-
geoseeq-0.6.14.
|
92
|
-
geoseeq-0.6.14.
|
93
|
-
geoseeq-0.6.14.
|
94
|
-
geoseeq-0.6.14.
|
95
|
-
geoseeq-0.6.14.
|
90
|
+
geoseeq-0.6.14.dev7.dist-info/LICENSE,sha256=IuhIl1XCxXLPLJT_coN1CNqQU4Khlq7x4IdW7ioOJD8,1067
|
91
|
+
geoseeq-0.6.14.dev7.dist-info/METADATA,sha256=q9ZgGURnAxFyUKqLaF6J5db1e9rrrqEcQbGhJ8MmFUc,4937
|
92
|
+
geoseeq-0.6.14.dev7.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
93
|
+
geoseeq-0.6.14.dev7.dist-info/entry_points.txt,sha256=yF-6KDM8zXib4Al0qn49TX-qM7PUkWUIcYtsgt36rjM,45
|
94
|
+
geoseeq-0.6.14.dev7.dist-info/top_level.txt,sha256=zZk7mmeaqAYqFJG8nq2DTgSQPbflRjJwkDIhNURPDEU,14
|
95
|
+
geoseeq-0.6.14.dev7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|