R/zzz.R

Defines functions .onAttach

.onAttach <- function(libname, pkgname) {
    packageStartupMessage(paste(
        "\nThank you for using APackOfTheClones v",
        utils::packageVersion("APackOfTheClones"), "\n\n",

        "if you use this package in your paper/study, please cite with\n",
        "`citation('APackOfTheClones')`\n",
        sep = ""
    ))

    # new deprecation note for the release
    packageStartupMessage(paste(
        "*** DEPRECATION NOTICE TO RETURNING USERS OF VERSION 0.1.x *** \n",
        deprecation_docstring(), "\n",
        sep = ""
    ))
}

Try the APackOfTheClones package in your browser

Any scripts or data that you put into this service are public.

APackOfTheClones documentation built on May 29, 2024, 4:05 a.m.