geoseeq 0.6.9__py3-none-any.whl → 0.6.11__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/sample.py +12 -12
- {geoseeq-0.6.9.dist-info → geoseeq-0.6.11.dist-info}/METADATA +3 -2
- {geoseeq-0.6.9.dist-info → geoseeq-0.6.11.dist-info}/RECORD +8 -8
- {geoseeq-0.6.9.dist-info → geoseeq-0.6.11.dist-info}/WHEEL +1 -1
- {geoseeq-0.6.9.dist-info → geoseeq-0.6.11.dist-info}/LICENSE +0 -0
- {geoseeq-0.6.9.dist-info → geoseeq-0.6.11.dist-info}/entry_points.txt +0 -0
- {geoseeq-0.6.9.dist-info → geoseeq-0.6.11.dist-info}/top_level.txt +0 -0
geoseeq/cli/main.py
CHANGED
@@ -54,7 +54,7 @@ def version():
|
|
54
54
|
Use of this tool implies acceptance of the GeoSeeq End User License Agreement.
|
55
55
|
Run `geoseeq eula show` to view the EULA.
|
56
56
|
"""
|
57
|
-
click.echo('0.6.
|
57
|
+
click.echo('0.6.11') # remember to update pyproject.toml
|
58
58
|
|
59
59
|
|
60
60
|
@main.group('advanced')
|
geoseeq/sample.py
CHANGED
@@ -200,23 +200,23 @@ class Sample(RemoteObject):
|
|
200
200
|
"""
|
201
201
|
url = f"data/samples/{self.uuid}/all-fastqs"
|
202
202
|
blob = self.knex.get(url)
|
203
|
+
print(blob)
|
203
204
|
files = {}
|
204
205
|
for read_type, folders in blob.items():
|
205
206
|
files[read_type] = {}
|
206
207
|
for folder_name, file_grns in folders.items():
|
207
208
|
files[read_type][folder_name] = []
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
[
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
)
|
209
|
+
if read_type in ["short_read::paired_end"]:
|
210
|
+
files[read_type][folder_name].append(
|
211
|
+
[
|
212
|
+
self._grn_to_file(file_grns[0][0]),
|
213
|
+
self._grn_to_file(file_grns[0][1]),
|
214
|
+
]
|
215
|
+
)
|
216
|
+
else:
|
217
|
+
files[read_type][folder_name].append(
|
218
|
+
self._grn_to_file(file_grns[0])
|
219
|
+
)
|
220
220
|
return files
|
221
221
|
|
222
222
|
def get_one_fasta(self):
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.2
|
2
2
|
Name: geoseeq
|
3
|
-
Version: 0.6.
|
3
|
+
Version: 0.6.11
|
4
4
|
Summary: GeoSeeq command line tools and python API
|
5
5
|
Author: David C. Danko
|
6
6
|
Author-email: "David C. Danko" <dcdanko@biotia.io>
|
@@ -17,6 +17,7 @@ Requires-Dist: click
|
|
17
17
|
Requires-Dist: pandas
|
18
18
|
Requires-Dist: biopython
|
19
19
|
Requires-Dist: tqdm
|
20
|
+
Dynamic: author
|
20
21
|
|
21
22
|
# Geoseeq API Client
|
22
23
|
|
@@ -9,7 +9,7 @@ geoseeq/organization.py,sha256=bJkYL8_D-k6IYAaii2ZbxjwYnXy6lvu6iLXscxKlA3w,2542
|
|
9
9
|
geoseeq/pipeline.py,sha256=89mhWaecsKnm6tyRkdkaVp4dmZh62_v42Ze0oXf8OTY,9873
|
10
10
|
geoseeq/project.py,sha256=kN6m1N4Tlud7saU03Sbir-oIBnXet_Cwi2OVVdaeag0,13929
|
11
11
|
geoseeq/remote_object.py,sha256=GYN6PKU7Zz3htIdpFjfZiFejzGqqJHbJyKlefM1Eixk,7151
|
12
|
-
geoseeq/sample.py,sha256=
|
12
|
+
geoseeq/sample.py,sha256=nlvmSy2WmiOMamkulNRloFPX7E9jVs34m1vO1PSOrHU,8336
|
13
13
|
geoseeq/search.py,sha256=gawad6Cx5FxJBPlYkXWb-UKAO-UC0_yhvyU9Ca1kaNI,3388
|
14
14
|
geoseeq/upload_download_manager.py,sha256=FMRqLLg77o1qFbWZc5Yc86a2pjeZrrn1rHJr1iaxKCU,8757
|
15
15
|
geoseeq/user.py,sha256=tol8i1UGLRrbMw5jeJDnna1ikRgrCDd50Jxz0a1lSgg,690
|
@@ -22,7 +22,7 @@ geoseeq/cli/detail.py,sha256=q8Suu-j2k18knfSVFG-SWWGNsKM-n8y9RMA3LcIIi9Y,4132
|
|
22
22
|
geoseeq/cli/download.py,sha256=W3OswqpHg1thzW6CJ7IcSS0Te2LA2WfgYISQMSl4GQg,18921
|
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=JceKuFnjouAPFnY4AKcfwg6MuSw5X2vVBQmbAJB0MDw,3918
|
26
26
|
geoseeq/cli/manage.py,sha256=wGXAcVaXqE5JQEU8Jh6OlHr02nB396bpS_SFcOZdrEo,5929
|
27
27
|
geoseeq/cli/progress_bar.py,sha256=p1Xl01nkYxSBZCB30ue2verIIi22W93m3ZAMAxipD0g,738
|
28
28
|
geoseeq/cli/project.py,sha256=V5SdXm2Hwo2lxrkpwRDedw-mAE4XnM2uwT-Gj1D90VQ,3030
|
@@ -85,9 +85,9 @@ geoseeq/vc/vc_stub.py,sha256=IQr8dI0zsWKVAeY_5ybDD6n49_3othcgfHS3P0O9tuY,3110
|
|
85
85
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
86
86
|
tests/test_api_client.py,sha256=TS5njc5pcPP_Ycy-ljcfPVT1hQRBsFVdQ0lCqBmoesU,12810
|
87
87
|
tests/test_plotting.py,sha256=TcTu-2ARr8sxZJ7wPQxmbs3-gHw7uRvsgrhhhg0qKik,784
|
88
|
-
geoseeq-0.6.
|
89
|
-
geoseeq-0.6.
|
90
|
-
geoseeq-0.6.
|
91
|
-
geoseeq-0.6.
|
92
|
-
geoseeq-0.6.
|
93
|
-
geoseeq-0.6.
|
88
|
+
geoseeq-0.6.11.dist-info/LICENSE,sha256=IuhIl1XCxXLPLJT_coN1CNqQU4Khlq7x4IdW7ioOJD8,1067
|
89
|
+
geoseeq-0.6.11.dist-info/METADATA,sha256=2KHgmI19d8X39YqPd5R_t8H3-hEWV5yTwesrsrxJ4CY,4932
|
90
|
+
geoseeq-0.6.11.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
91
|
+
geoseeq-0.6.11.dist-info/entry_points.txt,sha256=yF-6KDM8zXib4Al0qn49TX-qM7PUkWUIcYtsgt36rjM,45
|
92
|
+
geoseeq-0.6.11.dist-info/top_level.txt,sha256=zZk7mmeaqAYqFJG8nq2DTgSQPbflRjJwkDIhNURPDEU,14
|
93
|
+
geoseeq-0.6.11.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|