AMR 2.1.1.9160__py3-none-any.whl → 2.1.1.9182__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 +2 -2
- AMR/functions.py +6 -6
- {amr-2.1.1.9160.dist-info → amr-2.1.1.9182.dist-info}/METADATA +1 -1
- amr-2.1.1.9182.dist-info/RECORD +7 -0
- {amr-2.1.1.9160.dist-info → amr-2.1.1.9182.dist-info}/WHEEL +1 -1
- amr-2.1.1.9160.dist-info/RECORD +0 -7
- {amr-2.1.1.9160.dist-info → amr-2.1.1.9182.dist-info}/top_level.txt +0 -0
AMR/__init__.py
CHANGED
@@ -28,8 +28,6 @@ from .functions import age_groups
|
|
28
28
|
from .functions import antibiogram
|
29
29
|
from .functions import wisca
|
30
30
|
from .functions import retrieve_wisca_parameters
|
31
|
-
from .functions import amr_class
|
32
|
-
from .functions import amr_selector
|
33
31
|
from .functions import aminoglycosides
|
34
32
|
from .functions import aminopenicillins
|
35
33
|
from .functions import antifungals
|
@@ -61,6 +59,8 @@ from .functions import streptogramins
|
|
61
59
|
from .functions import tetracyclines
|
62
60
|
from .functions import trimethoprims
|
63
61
|
from .functions import ureidopenicillins
|
62
|
+
from .functions import amr_class
|
63
|
+
from .functions import amr_selector
|
64
64
|
from .functions import administrable_per_os
|
65
65
|
from .functions import administrable_iv
|
66
66
|
from .functions import not_intrinsic_resistant
|
AMR/functions.py
CHANGED
@@ -114,12 +114,6 @@ def wisca(x, *args, **kwargs):
|
|
114
114
|
def retrieve_wisca_parameters(wisca_model, *args, **kwargs):
|
115
115
|
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
116
116
|
return convert_to_python(amr_r.retrieve_wisca_parameters(wisca_model, *args, **kwargs))
|
117
|
-
def amr_class(amr_class, *args, **kwargs):
|
118
|
-
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
119
|
-
return convert_to_python(amr_r.amr_class(amr_class, *args, **kwargs))
|
120
|
-
def amr_selector(filter, *args, **kwargs):
|
121
|
-
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
122
|
-
return convert_to_python(amr_r.amr_selector(filter, *args, **kwargs))
|
123
117
|
def aminoglycosides(only_sir_columns = False, *args, **kwargs):
|
124
118
|
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
125
119
|
return convert_to_python(amr_r.aminoglycosides(only_sir_columns = False, *args, **kwargs))
|
@@ -213,6 +207,12 @@ def trimethoprims(only_sir_columns = False, *args, **kwargs):
|
|
213
207
|
def ureidopenicillins(only_sir_columns = False, *args, **kwargs):
|
214
208
|
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
215
209
|
return convert_to_python(amr_r.ureidopenicillins(only_sir_columns = False, *args, **kwargs))
|
210
|
+
def amr_class(amr_class, *args, **kwargs):
|
211
|
+
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
212
|
+
return convert_to_python(amr_r.amr_class(amr_class, *args, **kwargs))
|
213
|
+
def amr_selector(filter, *args, **kwargs):
|
214
|
+
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
215
|
+
return convert_to_python(amr_r.amr_selector(filter, *args, **kwargs))
|
216
216
|
def administrable_per_os(only_sir_columns = False, *args, **kwargs):
|
217
217
|
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
218
218
|
return convert_to_python(amr_r.administrable_per_os(only_sir_columns = False, *args, **kwargs))
|
@@ -0,0 +1,7 @@
|
|
1
|
+
AMR/__init__.py,sha256=iZ0zF1KVCv4sxsZA6ghTiFMdAG3z03BcVosE9ROEDhg,7771
|
2
|
+
AMR/datasets.py,sha256=Jy39LLD1mP-MMPX59mjKQdmKeFz192kMQD3ty4tIFic,2609
|
3
|
+
AMR/functions.py,sha256=qFFkuQJhg6vfb2X-UYTgUWvAA3wnOzKvsdREM1V-_U8,46947
|
4
|
+
amr-2.1.1.9182.dist-info/METADATA,sha256=Zn0pVANPeZOyprOJ8q2tP_R6gaN2aVd1TRuIQ70iTCg,9624
|
5
|
+
amr-2.1.1.9182.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
6
|
+
amr-2.1.1.9182.dist-info/top_level.txt,sha256=7K6Mq_X_OHdXOzQM5y06VUadXjYkze6yzufL1d7_6xc,4
|
7
|
+
amr-2.1.1.9182.dist-info/RECORD,,
|
amr-2.1.1.9160.dist-info/RECORD
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
AMR/__init__.py,sha256=FAb5YyHWyZpoSDTPyERsyeb0DGEawvuxnajKYSDFsqU,7771
|
2
|
-
AMR/datasets.py,sha256=Jy39LLD1mP-MMPX59mjKQdmKeFz192kMQD3ty4tIFic,2609
|
3
|
-
AMR/functions.py,sha256=sW7BDJlBNqMibLcNvZ121uebLGAu1b65sSbaPQnsZmU,46947
|
4
|
-
amr-2.1.1.9160.dist-info/METADATA,sha256=aGTUd26Ta8mRnzOtUN1YfeyoXbaR9FT5ZCJNr2T1Wt0,9624
|
5
|
-
amr-2.1.1.9160.dist-info/WHEEL,sha256=nn6H5-ilmfVryoAQl3ZQ2l8SH5imPWFpm1A5FgEuFV4,91
|
6
|
-
amr-2.1.1.9160.dist-info/top_level.txt,sha256=7K6Mq_X_OHdXOzQM5y06VUadXjYkze6yzufL1d7_6xc,4
|
7
|
-
amr-2.1.1.9160.dist-info/RECORD,,
|
File without changes
|