### Install PharmacoGx from Bioc Release Source: https://github.com/bhklab/pharmacogx/blob/devel/README.md Installs the stable release of the PharmacoGx package using BiocManager. Ensure BiocManager is installed first. ```R if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager") BiocManager::install("PharmacoGx") ``` -------------------------------- ### Interactive Program Start-up Notice Source: https://github.com/bhklab/pharmacogx/blob/devel/LICENSE.md A short notice to display when a program starts in interactive mode, informing users about its copyright, warranty, and redistribution terms. ```text Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free software, and you are welcome to redistribute it under certain conditions; type 'show c' for details. ``` -------------------------------- ### Install PharmacoGx Development Version Source: https://github.com/bhklab/pharmacogx/blob/devel/README.md Installs the latest development version of the PharmacoGx package using the 'pak' package manager. Ensure 'pak' is installed first. ```R if (!requireNamespace("pak", quietly = TRUE)) install.packages("pak") pak::pkg_install("bhklab/PharmacoGx") ``` -------------------------------- ### Standard Program Copyright Notice Source: https://github.com/bhklab/pharmacogx/blob/devel/LICENSE.md This is the standard notice to attach to the beginning of each source file for a free software program under the GNU GPL. ```text Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.