1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-12 11:42:00 +02:00

(v2.1.1.9235) New website!

This commit is contained in:
2025-04-08 15:54:30 +01:00
parent a905303296
commit 36fd99e1f4
172 changed files with 2003 additions and 5522 deletions

View File

@ -26,7 +26,7 @@
# useful, but it comes WITHOUT ANY WARRANTY OR LIABILITY. #
# #
# Visit our website for the full manual and a complete tutorial about #
# how to conduct AMR data analysis: https://msberends.github.io/AMR/ #
# how to conduct AMR data analysis: https://amr-for-r.org/ #
# ==================================================================== #
# Clean up
@ -71,7 +71,7 @@ base._libPaths(r_lib_path)
# Check if the AMR package is installed in R
if not isinstalled('AMR', lib_loc=r_lib_path):
print(f"AMR: Installing latest AMR R package to {r_lib_path}...", flush=True)
utils.install_packages('AMR', repos='https://msberends.r-universe.dev', quiet=True)
utils.install_packages('AMR', repos='beta.amr-for-r.org', quiet=True)
# # Retrieve Python AMR version
# try:
@ -87,7 +87,7 @@ if not isinstalled('AMR', lib_loc=r_lib_path):
# if r_amr_version != python_amr_version:
# try:
# print(f"AMR: Updating AMR package in {r_lib_path}...", flush=True)
# utils.install_packages('AMR', repos='https://msberends.r-universe.dev', quiet=True)
# utils.install_packages('AMR', repos='beta.amr-for-r.org', quiet=True)
# except Exception as e:
# print(f"AMR: Could not update: {e}", flush=True)
@ -248,7 +248,7 @@ for rd_file in "$rd_dir"/*.Rd; do
# Write the Python function definition to the output file
print "def " func_name_py "(" func_args "):" >> "'"$functions_file"'"
print " \"\"\"See our website of the R package for the manual: https://msberends.github.io/AMR/index.html\"\"\"" >> "'"$functions_file"'"
print " \"\"\"See our website of the R package for the manual: https://amr-for-r.org/index.html\"\"\"" >> "'"$functions_file"'"
print " return convert_to_python(amr_r." func_name_py "(" func_args "))" >> "'"$functions_file"'"
print "from .functions import " func_name_py >> "'"$init_file"'"