AMR 2.1.1.9138__py3-none-any.whl → 2.1.1.9140__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.
- AMR/__init__.py +1 -0
- AMR/functions.py +3 -0
- {AMR-2.1.1.9138.dist-info → AMR-2.1.1.9140.dist-info}/METADATA +1 -1
- AMR-2.1.1.9140.dist-info/RECORD +7 -0
- AMR-2.1.1.9138.dist-info/RECORD +0 -7
- {AMR-2.1.1.9138.dist-info → AMR-2.1.1.9140.dist-info}/WHEEL +0 -0
- {AMR-2.1.1.9138.dist-info → AMR-2.1.1.9140.dist-info}/top_level.txt +0 -0
AMR/__init__.py
CHANGED
@@ -27,6 +27,7 @@ from .functions import age
|
|
27
27
|
from .functions import age_groups
|
28
28
|
from .functions import antibiogram
|
29
29
|
from .functions import wisca
|
30
|
+
from .functions import retrieve_wisca_parameters
|
30
31
|
from .functions import amr_class
|
31
32
|
from .functions import amr_selector
|
32
33
|
from .functions import aminoglycosides
|
AMR/functions.py
CHANGED
@@ -111,6 +111,9 @@ def antibiogram(x, *args, **kwargs):
|
|
111
111
|
def wisca(x, *args, **kwargs):
|
112
112
|
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
113
113
|
return convert_to_python(amr_r.wisca(x, *args, **kwargs))
|
114
|
+
def retrieve_wisca_parameters(wisca_model, *args, **kwargs):
|
115
|
+
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
116
|
+
return convert_to_python(amr_r.retrieve_wisca_parameters(wisca_model, *args, **kwargs))
|
114
117
|
def amr_class(amr_class, *args, **kwargs):
|
115
118
|
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
116
119
|
return convert_to_python(amr_r.amr_class(amr_class, *args, **kwargs))
|
@@ -0,0 +1,7 @@
|
|
1
|
+
AMR/__init__.py,sha256=_fU8z59dcMEDeb3h-cv2joczMCLdxXyKeXPmBWC2CN0,7589
|
2
|
+
AMR/datasets.py,sha256=Jy39LLD1mP-MMPX59mjKQdmKeFz192kMQD3ty4tIFic,2609
|
3
|
+
AMR/functions.py,sha256=HhEPpQ6WRh_UB_y_4fIkNk5tOPboauu_aYw_uEXIS4E,45812
|
4
|
+
AMR-2.1.1.9140.dist-info/METADATA,sha256=ZBR6e4dHkxGrFZbC7Owe6j4WFoyXdE0oMaefpA2IZYA,9624
|
5
|
+
AMR-2.1.1.9140.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
6
|
+
AMR-2.1.1.9140.dist-info/top_level.txt,sha256=7K6Mq_X_OHdXOzQM5y06VUadXjYkze6yzufL1d7_6xc,4
|
7
|
+
AMR-2.1.1.9140.dist-info/RECORD,,
|
AMR-2.1.1.9138.dist-info/RECORD
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
AMR/__init__.py,sha256=-3zoWVuhybnYkXePzljDrtcxxaAQscPpCPP75EiqLfQ,7540
|
2
|
-
AMR/datasets.py,sha256=Jy39LLD1mP-MMPX59mjKQdmKeFz192kMQD3ty4tIFic,2609
|
3
|
-
AMR/functions.py,sha256=JSh-0_mfrAj7ajpazlv2KFyEtRAglj7oQV9Iiaux7eo,45557
|
4
|
-
AMR-2.1.1.9138.dist-info/METADATA,sha256=Ziq_-k87-lj32hCHjXibk7bXgX8bfHSaZ09DqzfnQwk,9624
|
5
|
-
AMR-2.1.1.9138.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
6
|
-
AMR-2.1.1.9138.dist-info/top_level.txt,sha256=7K6Mq_X_OHdXOzQM5y06VUadXjYkze6yzufL1d7_6xc,4
|
7
|
-
AMR-2.1.1.9138.dist-info/RECORD,,
|
File without changes
|
File without changes
|