mirror of
https://github.com/msberends/AMR.git
synced 2025-07-11 15:01:53 +02:00
(v2.1.1.9121) support tidymodels
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
Metadata-Version: 2.1
|
||||
Name: AMR
|
||||
Version: 2.1.1.9120
|
||||
Version: 2.1.1.9121
|
||||
Summary: A Python wrapper for the AMR R package
|
||||
Home-page: https://github.com/msberends/AMR
|
||||
Author: Matthijs Berends
|
||||
|
@ -441,9 +441,9 @@ def mdr_tb(x = None, *args, **kwargs):
|
||||
def mdr_cmi2012(x = None, *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.mdr_cmi2012(x = None, *args, **kwargs))
|
||||
def eucast_exceptional_phenotypes(x = None, *args, **kwargs):
|
||||
def eucast_exceptional_phenotypes(*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.eucast_exceptional_phenotypes(x = None, *args, **kwargs))
|
||||
return convert_to_python(amr_r.eucast_exceptional_phenotypes(*args, **kwargs))
|
||||
def mean_amr_distance(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.mean_amr_distance(x, *args, **kwargs))
|
||||
|
Binary file not shown.
BIN
PythonPackage/AMR/dist/amr-2.1.1.9120.tar.gz
vendored
BIN
PythonPackage/AMR/dist/amr-2.1.1.9120.tar.gz
vendored
Binary file not shown.
BIN
PythonPackage/AMR/dist/amr-2.1.1.9121.tar.gz
vendored
Normal file
BIN
PythonPackage/AMR/dist/amr-2.1.1.9121.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.9120',
|
||||
version='2.1.1.9121',
|
||||
packages=find_packages(),
|
||||
install_requires=[
|
||||
'rpy2',
|
||||
|
Reference in New Issue
Block a user