1
0
mirror of https://github.com/msberends/AMR.git synced 2025-02-22 19:10:03 +01:00

(v2.1.1.9150) unit tests

This commit is contained in:
dr. M.S. (Matthijs) Berends 2025-02-15 13:40:51 +01:00
parent 883fbe7cfe
commit 9650545d6e
No known key found for this signature in database
11 changed files with 14 additions and 10 deletions

View File

@ -1,5 +1,5 @@
Package: AMR Package: AMR
Version: 2.1.1.9149 Version: 2.1.1.9150
Date: 2025-02-15 Date: 2025-02-15
Title: Antimicrobial Resistance Data Analysis Title: Antimicrobial Resistance Data Analysis
Description: Functions to simplify and standardise antimicrobial resistance (AMR) Description: Functions to simplify and standardise antimicrobial resistance (AMR)

View File

@ -1,4 +1,4 @@
# AMR 2.1.1.9149 # AMR 2.1.1.9150
*(this beta version will eventually become v3.0. We're happy to reach a new major milestone soon, which will be all about the new One Health support! Install this beta using [the instructions here](https://msberends.github.io/AMR/#latest-development-version).)* *(this beta version will eventually become v3.0. We're happy to reach a new major milestone soon, which will be all about the new One Health support! Install this beta using [the instructions here](https://msberends.github.io/AMR/#latest-development-version).)*

View File

@ -1,6 +1,6 @@
Metadata-Version: 2.2 Metadata-Version: 2.2
Name: AMR Name: AMR
Version: 2.1.1.9149 Version: 2.1.1.9150
Summary: A Python wrapper for the AMR R package Summary: A Python wrapper for the AMR R package
Home-page: https://github.com/msberends/AMR Home-page: https://github.com/msberends/AMR
Author: Matthijs Berends Author: Matthijs Berends

Binary file not shown.

Binary file not shown.

View File

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup( setup(
name='AMR', name='AMR',
version='2.1.1.9149', version='2.1.1.9150',
packages=find_packages(), packages=find_packages(),
install_requires=[ install_requires=[
'rpy2', 'rpy2',

View File

@ -364,7 +364,7 @@
#' #'
#' ureido <- antibiogram(example_isolates, #' ureido <- antibiogram(example_isolates,
#' antibiotics = ureidopenicillins(), #' antibiotics = ureidopenicillins(),
#' syndromic_group = "name", #' syndromic_group = "ward",
#' wisca = TRUE) #' wisca = TRUE)
#' #'
#' # in an Rmd file, you would just need to return `ureido` in a chunk, #' # in an Rmd file, you would just need to return `ureido` in a chunk,

View File

@ -1,6 +1,6 @@
This knowledge base contains all context you must know about the AMR package for R. You are a GPT trained to be an assistant for the AMR package in R. You are an incredible R specialist, especially trained in this package and in the tidyverse. This knowledge base contains all context you must know about the AMR package for R. You are a GPT trained to be an assistant for the AMR package in R. You are an incredible R specialist, especially trained in this package and in the tidyverse.
First and foremost, you are trained on version 2.1.1.9149. Remember this whenever someone asks which AMR package version youre at. First and foremost, you are trained on version 2.1.1.9150. Remember this whenever someone asks which AMR package version youre at.
Below are the contents of the file, the file, and all the files (documentation) in the package. Every file content is split using 100 hypens. Below are the contents of the file, the file, and all the files (documentation) in the package. Every file content is split using 100 hypens.
---------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------
@ -2031,7 +2031,7 @@ antibiogram(example_isolates,
ureido <- antibiogram(example_isolates, ureido <- antibiogram(example_isolates,
antibiotics = ureidopenicillins(), antibiotics = ureidopenicillins(),
syndromic_group = "name", syndromic_group = "ward",
wisca = TRUE) wisca = TRUE)
# in an Rmd file, you would just need to return `ureido` in a chunk, # in an Rmd file, you would just need to return `ureido` in a chunk,

View File

@ -400,7 +400,7 @@ antibiogram(example_isolates,
ureido <- antibiogram(example_isolates, ureido <- antibiogram(example_isolates,
antibiotics = ureidopenicillins(), antibiotics = ureidopenicillins(),
syndromic_group = "name", syndromic_group = "ward",
wisca = TRUE) wisca = TRUE)
# in an Rmd file, you would just need to return `ureido` in a chunk, # in an Rmd file, you would just need to return `ureido` in a chunk,

View File

@ -128,7 +128,9 @@ expect_silent(plot(ab5))
expect_silent(plot(ab6)) expect_silent(plot(ab6))
expect_silent(plot(ab7)) expect_silent(plot(ab7))
expect_silent(plot(ab8)) expect_silent(plot(ab8))
expect_silent(plot(ab9)) if (AMR:::pkg_is_available("dplyr", min_version = "1.0.0", also_load = TRUE)) {
expect_silent(plot(ab9))
}
if (AMR:::pkg_is_available("ggplot2")) { if (AMR:::pkg_is_available("ggplot2")) {
expect_inherits(ggplot2::autoplot(ab1), "gg") expect_inherits(ggplot2::autoplot(ab1), "gg")
@ -139,5 +141,7 @@ if (AMR:::pkg_is_available("ggplot2")) {
expect_inherits(ggplot2::autoplot(ab6), "gg") expect_inherits(ggplot2::autoplot(ab6), "gg")
expect_inherits(ggplot2::autoplot(ab7), "gg") expect_inherits(ggplot2::autoplot(ab7), "gg")
expect_inherits(ggplot2::autoplot(ab8), "gg") expect_inherits(ggplot2::autoplot(ab8), "gg")
expect_inherits(ggplot2::autoplot(ab9), "gg") if (AMR:::pkg_is_available("dplyr", min_version = "1.0.0", also_load = TRUE)) {
expect_inherits(ggplot2::autoplot(ab9), "gg")
}
} }