AMR 2.1.1.9139__py3-none-any.whl → 2.1.1.9141__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 +3 -0
- AMR/functions.py +9 -0
- {AMR-2.1.1.9139.dist-info → AMR-2.1.1.9141.dist-info}/METADATA +1 -1
- AMR-2.1.1.9141.dist-info/RECORD +7 -0
- AMR-2.1.1.9139.dist-info/RECORD +0 -7
- {AMR-2.1.1.9139.dist-info → AMR-2.1.1.9141.dist-info}/WHEEL +0 -0
- {AMR-2.1.1.9139.dist-info → AMR-2.1.1.9141.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
|
@@ -44,9 +45,11 @@ from .functions import cephalosporins_4th
|
|
44
45
|
from .functions import cephalosporins_5th
|
45
46
|
from .functions import fluoroquinolones
|
46
47
|
from .functions import glycopeptides
|
48
|
+
from .functions import isoxazolylpenicillins
|
47
49
|
from .functions import lincosamides
|
48
50
|
from .functions import lipoglycopeptides
|
49
51
|
from .functions import macrolides
|
52
|
+
from .functions import monobactams
|
50
53
|
from .functions import nitrofurans
|
51
54
|
from .functions import oxazolidinones
|
52
55
|
from .functions import penicillins
|
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))
|
@@ -162,6 +165,9 @@ def fluoroquinolones(only_sir_columns = False, *args, **kwargs):
|
|
162
165
|
def glycopeptides(only_sir_columns = False, *args, **kwargs):
|
163
166
|
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
164
167
|
return convert_to_python(amr_r.glycopeptides(only_sir_columns = False, *args, **kwargs))
|
168
|
+
def isoxazolylpenicillins(only_sir_columns = False, *args, **kwargs):
|
169
|
+
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
170
|
+
return convert_to_python(amr_r.isoxazolylpenicillins(only_sir_columns = False, *args, **kwargs))
|
165
171
|
def lincosamides(only_sir_columns = False, *args, **kwargs):
|
166
172
|
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
167
173
|
return convert_to_python(amr_r.lincosamides(only_sir_columns = False, *args, **kwargs))
|
@@ -171,6 +177,9 @@ def lipoglycopeptides(only_sir_columns = False, *args, **kwargs):
|
|
171
177
|
def macrolides(only_sir_columns = False, *args, **kwargs):
|
172
178
|
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
173
179
|
return convert_to_python(amr_r.macrolides(only_sir_columns = False, *args, **kwargs))
|
180
|
+
def monobactams(only_sir_columns = False, *args, **kwargs):
|
181
|
+
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
182
|
+
return convert_to_python(amr_r.monobactams(only_sir_columns = False, *args, **kwargs))
|
174
183
|
def nitrofurans(only_sir_columns = False, *args, **kwargs):
|
175
184
|
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
176
185
|
return convert_to_python(amr_r.nitrofurans(only_sir_columns = False, *args, **kwargs))
|
@@ -0,0 +1,7 @@
|
|
1
|
+
AMR/__init__.py,sha256=K_ff87lDCosBLFPk9Jn5-YOhXnXPj-VwAki9v27cjzg,7669
|
2
|
+
AMR/datasets.py,sha256=Jy39LLD1mP-MMPX59mjKQdmKeFz192kMQD3ty4tIFic,2609
|
3
|
+
AMR/functions.py,sha256=wRqV_JW1TBkM_ILXeGUBSJ6R0fWTiMtH3XMp_tRZJUI,46338
|
4
|
+
AMR-2.1.1.9141.dist-info/METADATA,sha256=wa09ETSGdbemU1ban7_VXmc6jZXFgaTB5bui9_W_OKA,9624
|
5
|
+
AMR-2.1.1.9141.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
6
|
+
AMR-2.1.1.9141.dist-info/top_level.txt,sha256=7K6Mq_X_OHdXOzQM5y06VUadXjYkze6yzufL1d7_6xc,4
|
7
|
+
AMR-2.1.1.9141.dist-info/RECORD,,
|
AMR-2.1.1.9139.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.9139.dist-info/METADATA,sha256=LlCWALnLxpZd2gVGHBFh-7fxd-qOs4-Chrr0DMIRgr8,9624
|
5
|
-
AMR-2.1.1.9139.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
6
|
-
AMR-2.1.1.9139.dist-info/top_level.txt,sha256=7K6Mq_X_OHdXOzQM5y06VUadXjYkze6yzufL1d7_6xc,4
|
7
|
-
AMR-2.1.1.9139.dist-info/RECORD,,
|
File without changes
|
File without changes
|