mirror of
https://github.com/msberends/AMR.git
synced 2025-07-26 14:38:00 +02:00
(v2.1.1.9157) improved as.ab()
, fixed knit_print of antibiogram
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
Metadata-Version: 2.2
|
||||
Name: AMR
|
||||
Version: 2.1.1.9156
|
||||
Version: 2.1.1.9157
|
||||
Summary: A Python wrapper for the AMR R package
|
||||
Home-page: https://github.com/msberends/AMR
|
||||
Author: Matthijs Berends
|
||||
|
@ -66,6 +66,7 @@ from .functions import administrable_iv
|
||||
from .functions import not_intrinsic_resistant
|
||||
from .functions import as_ab
|
||||
from .functions import is_ab
|
||||
from .functions import ab_reset_session
|
||||
from .functions import as_av
|
||||
from .functions import is_av
|
||||
from .functions import as_disk
|
||||
|
@ -228,6 +228,9 @@ def as_ab(x, *args, **kwargs):
|
||||
def is_ab(x):
|
||||
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
||||
return convert_to_python(amr_r.is_ab(x))
|
||||
def ab_reset_session(*args, **kwargs):
|
||||
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
||||
return convert_to_python(amr_r.ab_reset_session(*args, **kwargs))
|
||||
def as_av(x, *args, **kwargs):
|
||||
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
||||
return convert_to_python(amr_r.as_av(x, *args, **kwargs))
|
||||
|
BIN
PythonPackage/AMR/dist/amr-2.1.1.9156.tar.gz
vendored
BIN
PythonPackage/AMR/dist/amr-2.1.1.9156.tar.gz
vendored
Binary file not shown.
Binary file not shown.
BIN
PythonPackage/AMR/dist/amr-2.1.1.9157.tar.gz
vendored
Normal file
BIN
PythonPackage/AMR/dist/amr-2.1.1.9157.tar.gz
vendored
Normal file
Binary file not shown.
@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name='AMR',
|
||||
version='2.1.1.9156',
|
||||
version='2.1.1.9157',
|
||||
packages=find_packages(),
|
||||
install_requires=[
|
||||
'rpy2',
|
||||
|
Reference in New Issue
Block a user