genelastic 0.7.0__py3-none-any.whl → 0.8.0__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.
- genelastic/api/cli_start_api.py +18 -0
- genelastic/api/extends/example.yml +20 -0
- genelastic/api/server.py +27 -24
- genelastic/api/settings.py +5 -9
- genelastic/api/specification.yml +350 -0
- genelastic/common/__init__.py +6 -1
- genelastic/common/cli.py +52 -0
- genelastic/common/server.py +51 -0
- genelastic/import_data/cli_gen_data.py +52 -25
- genelastic/import_data/random_bundle.py +69 -46
- genelastic/ui/cli_start_ui.py +18 -0
- genelastic/ui/routes.py +86 -0
- genelastic/ui/server.py +9 -82
- genelastic/ui/settings.py +2 -6
- genelastic/ui/templates/analyses.html +11 -0
- genelastic/ui/templates/bi_processes.html +11 -0
- genelastic/ui/templates/home.html +4 -0
- genelastic/ui/templates/layout.html +34 -0
- genelastic/ui/templates/version.html +9 -0
- genelastic/ui/templates/wet_processes.html +11 -0
- {genelastic-0.7.0.dist-info → genelastic-0.8.0.dist-info}/METADATA +7 -3
- {genelastic-0.7.0.dist-info → genelastic-0.8.0.dist-info}/RECORD +25 -13
- {genelastic-0.7.0.dist-info → genelastic-0.8.0.dist-info}/WHEEL +1 -1
- {genelastic-0.7.0.dist-info → genelastic-0.8.0.dist-info}/entry_points.txt +2 -0
- {genelastic-0.7.0.dist-info → genelastic-0.8.0.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: genelastic
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.8.0
|
|
4
4
|
Summary: Generate and store genetic data into an Elasticsearch database.
|
|
5
5
|
Author: CNRGH
|
|
6
6
|
Author-email: Pierrick ROGER <pierrick.roger@cnrgh.fr>, Maxime BLANCHON <maxime.blanchon@cnrgh.fr>
|
|
@@ -16,7 +16,7 @@ Requires-Dist: elasticsearch
|
|
|
16
16
|
Requires-Dist: PyVCF3
|
|
17
17
|
Requires-Dist: schema
|
|
18
18
|
Requires-Dist: PyYAML
|
|
19
|
-
Requires-Dist: biophony
|
|
19
|
+
Requires-Dist: biophony<1.4,>=1.3.0
|
|
20
20
|
Requires-Dist: colorlog
|
|
21
21
|
Provides-Extra: tests
|
|
22
22
|
Requires-Dist: pytest; extra == "tests"
|
|
@@ -27,7 +27,7 @@ Requires-Dist: types-PyYAML; extra == "tests"
|
|
|
27
27
|
Requires-Dist: ruff<0.9,>=0.8.1; extra == "tests"
|
|
28
28
|
Requires-Dist: pre-commit<4.1,>=4.0.1; extra == "tests"
|
|
29
29
|
Requires-Dist: types-requests; extra == "tests"
|
|
30
|
-
Requires-Dist: ansible
|
|
30
|
+
Requires-Dist: ansible-core>=2.17.0; extra == "tests"
|
|
31
31
|
Requires-Dist: ansible-lint<25,>=24.12.2; extra == "tests"
|
|
32
32
|
Provides-Extra: docs
|
|
33
33
|
Requires-Dist: sphinx; extra == "docs"
|
|
@@ -38,10 +38,14 @@ Requires-Dist: flask; extra == "api"
|
|
|
38
38
|
Requires-Dist: elasticsearch; extra == "api"
|
|
39
39
|
Requires-Dist: environs; extra == "api"
|
|
40
40
|
Requires-Dist: connexion[flask,swagger-ui,uvicorn]; extra == "api"
|
|
41
|
+
Requires-Dist: gunicorn; extra == "api"
|
|
41
42
|
Provides-Extra: ui
|
|
42
43
|
Requires-Dist: flask; extra == "ui"
|
|
43
44
|
Requires-Dist: requests; extra == "ui"
|
|
44
45
|
Requires-Dist: environs; extra == "ui"
|
|
46
|
+
Requires-Dist: uvicorn; extra == "ui"
|
|
47
|
+
Requires-Dist: asgiref; extra == "ui"
|
|
48
|
+
Requires-Dist: gunicorn; extra == "ui"
|
|
45
49
|
|
|
46
50
|
# genelastic
|
|
47
51
|
|
|
@@ -1,21 +1,25 @@
|
|
|
1
1
|
genelastic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
genelastic/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
genelastic/api/cli_start_api.py,sha256=7sGgEDUC8qBSWxZsiNw3xirU7f8KP0e1guGsX0V8Fno,551
|
|
3
4
|
genelastic/api/routes.py,sha256=O_bZGhKex04tWauE1fYRXjNmR2smIA4JZShwcakbJJA,6938
|
|
4
|
-
genelastic/api/server.py,sha256=
|
|
5
|
-
genelastic/api/settings.py,sha256=
|
|
5
|
+
genelastic/api/server.py,sha256=VRMsI9BD0OY5H9dXx39f6M64qpBIptbkxMeATvII-AY,2360
|
|
6
|
+
genelastic/api/settings.py,sha256=dbKQib2QQisxvi4riwJ67iB9imu-x7ZXOcKjeXuO0rU,316
|
|
7
|
+
genelastic/api/specification.yml,sha256=ZbjPxk5aud76yeVyqBe410g4hQJDeZImqswa1EMtD00,10116
|
|
6
8
|
genelastic/api/extends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
9
|
genelastic/api/extends/example.py,sha256=5vOw2ToYWzOj-vYkOLbqoa1MCnXIvKuv7xW6qBQ-eHU,164
|
|
8
|
-
genelastic/
|
|
9
|
-
genelastic/common/
|
|
10
|
+
genelastic/api/extends/example.yml,sha256=oStFpgLIOAgs01PCJWZEG1sCunAKAxLa4gNoopUy0Ko,543
|
|
11
|
+
genelastic/common/__init__.py,sha256=Rg9BZj8UJh24cRU7xvL67Ju3vLSpCEdEnZTEMrOqsx4,1012
|
|
12
|
+
genelastic/common/cli.py,sha256=uXd2alWple3lLi6nyvtFUH86qhlqUljzY8ry8rvajVI,3253
|
|
10
13
|
genelastic/common/elastic.py,sha256=0XpECyNMC9RzQN1X7u-0IXmHp_KbSjkmGizArLjxTS0,7260
|
|
11
14
|
genelastic/common/exceptions.py,sha256=l4sQBW91OuzV2R7DhrVzEMDrfsyKM-iVYufp2Cv6rR8,159
|
|
15
|
+
genelastic/common/server.py,sha256=o1AbarQ7JKEeYB5ZcvdZUdInSquLsq5dpFL--Jo7P5k,1401
|
|
12
16
|
genelastic/common/types.py,sha256=JeQ6XzIemIF1QgvprGA0UxFHyJSKjEkgMaIumOvpbNg,1013
|
|
13
17
|
genelastic/import_data/__init__.py,sha256=Ir_fI0BrdC44JiiQaWm29_SyHbDe2CQsElKHgQxELCI,602
|
|
14
18
|
genelastic/import_data/analyses.py,sha256=yA4DKtXIUR7JTCp7PEndEjI6FOooW-6lR9vkqTZ0Izs,1861
|
|
15
19
|
genelastic/import_data/analysis.py,sha256=MuHYfIWFFwHfCp9tDkWTtVKkg5AasASwrdOUZ177EeM,7799
|
|
16
20
|
genelastic/import_data/bi_process.py,sha256=CBBGx6oO7KYzUypXzpaopGY4J_nAKcDi2UPJe7B63Bs,650
|
|
17
21
|
genelastic/import_data/bi_processes.py,sha256=Kv93NOntycEiB_BldoMxHNfM6sJvgHQvVqrUSSEb_VA,1365
|
|
18
|
-
genelastic/import_data/cli_gen_data.py,sha256=
|
|
22
|
+
genelastic/import_data/cli_gen_data.py,sha256=teK5G7mcx6Y5Yi0idOdRyrnBNe1emKKLQKRSBElQQbg,3979
|
|
19
23
|
genelastic/import_data/cli_import.py,sha256=Ej-EqaBUNoVHGCefzLsmFbKaXNTaOBs8xJsEdRhbbLo,11622
|
|
20
24
|
genelastic/import_data/cli_info.py,sha256=ue0Pf5cJvrmJ_bBZKG2CXkXDsQO3zQ6CIXhtUwpqXhU,7301
|
|
21
25
|
genelastic/import_data/cli_integrity.py,sha256=lOMA-I1iPXiJD4X80Xg91NKO-fa3Su0uSqBUtdMKU4Q,12282
|
|
@@ -26,15 +30,23 @@ genelastic/import_data/filename_pattern.py,sha256=3QXOF5ZG9vFA8KG7XXucpA7EIN3dqZ
|
|
|
26
30
|
genelastic/import_data/import_bundle.py,sha256=7W0hKwoxwGDtWEGV_NQvyesiNx1lCMpSaqKohpTLmtY,5030
|
|
27
31
|
genelastic/import_data/import_bundle_factory.py,sha256=COdMLTTrx_Y4svZAHVJ5Y0rHM4eQj027rFJiQ66u36M,9546
|
|
28
32
|
genelastic/import_data/logger.py,sha256=X12LBoNTmV6iR8vEPyYIMYSUeQ3LpTvDO69tQYDiOuA,1915
|
|
29
|
-
genelastic/import_data/random_bundle.py,sha256=
|
|
33
|
+
genelastic/import_data/random_bundle.py,sha256=IR3XoKwKEfWAow9ZH8lb-vmCKvtnU6M-35de4JPiIgg,14811
|
|
30
34
|
genelastic/import_data/tags.py,sha256=N6_dGYqQy2QTN6AEzoEXPxRFmtq3GgTfpId-RjBstJY,4195
|
|
31
35
|
genelastic/import_data/wet_process.py,sha256=2SgN1yZFQA8Hb4ZNNeHpUhmeWlJDApqdjc_oq6ZF0jA,694
|
|
32
36
|
genelastic/import_data/wet_processes.py,sha256=mVUfFG0QUboTEoD3c-Hd1Z2_Tvid_yrKJG_XdC4n6oA,1535
|
|
33
37
|
genelastic/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
-
genelastic/ui/
|
|
35
|
-
genelastic/ui/
|
|
36
|
-
genelastic
|
|
37
|
-
genelastic
|
|
38
|
-
genelastic
|
|
39
|
-
genelastic
|
|
40
|
-
genelastic
|
|
38
|
+
genelastic/ui/cli_start_ui.py,sha256=4on9dTtBJ5SeD78kOWdOaCcKC0YDe201d-t9tjocYzw,549
|
|
39
|
+
genelastic/ui/routes.py,sha256=OHwWv80aA75Gk0q8RwzSv-ayYZNEeI6QYXJ6CzzHuy0,2852
|
|
40
|
+
genelastic/ui/server.py,sha256=MY3Hzt5BleeeG7n72gFjIhu3lYytST7ZSROBAcrjlDw,347
|
|
41
|
+
genelastic/ui/settings.py,sha256=5Xc9bxm42bwkgcRSb_klD0bCqhP4DrfMs4La63fCf0Q,164
|
|
42
|
+
genelastic/ui/templates/analyses.html,sha256=dhdTGQeFuJPjQX0Qh31K0hp5wrU54F3D4hLWlgPLW-w,247
|
|
43
|
+
genelastic/ui/templates/bi_processes.html,sha256=Z6jgXymgKjn1cOL9GccCcKWJPlr-28AzNmlcmZ62lXc,265
|
|
44
|
+
genelastic/ui/templates/home.html,sha256=rNxZFpcY6bXANEDjfs7-lRghI0UfHzaBUHi3r91knns,99
|
|
45
|
+
genelastic/ui/templates/layout.html,sha256=B5a2wzvvPD0muTA4ooStT8kvi8IeCl1nZFV9WAyeqdc,1023
|
|
46
|
+
genelastic/ui/templates/version.html,sha256=v2XxGSPlwWERr-o1a-pdIstR5TllCmGROXy5h2ArafI,286
|
|
47
|
+
genelastic/ui/templates/wet_processes.html,sha256=jM0X08_zk-a8insJDx8bnHKBLu5Xqa6D2-SauYwqEcI,270
|
|
48
|
+
genelastic-0.8.0.dist-info/METADATA,sha256=kK2kz13jf_cWKCxn1wv8c1Ta_ZP8pZsocaIZ7BcDhMY,3286
|
|
49
|
+
genelastic-0.8.0.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
|
50
|
+
genelastic-0.8.0.dist-info/entry_points.txt,sha256=IxtkWdVpPE8PnjblebCvKrdw4FnTKmvcHzNJfchkQ-c,381
|
|
51
|
+
genelastic-0.8.0.dist-info/top_level.txt,sha256=ra4gCsuKH1d0sXygcnwD_u597ir6bYYxWTS7dkA6vdM,11
|
|
52
|
+
genelastic-0.8.0.dist-info/RECORD,,
|
|
@@ -3,4 +3,6 @@ gnl-data = genelastic.import_data.cli_gen_data:main
|
|
|
3
3
|
gnl-import = genelastic.import_data.cli_import:main
|
|
4
4
|
gnl-info = genelastic.import_data.cli_info:main
|
|
5
5
|
gnl-integrity = genelastic.import_data.cli_integrity:main
|
|
6
|
+
gnl-start-api = genelastic.api.cli_start_api:main
|
|
7
|
+
gnl-start-ui = genelastic.ui.cli_start_ui:main
|
|
6
8
|
gnl-validate = genelastic.import_data.cli_validate:main
|
|
File without changes
|