# compGenomRData **Repository Path**: CHANyp/compGenomRData ## Basic Information - **Project Name**: compGenomRData - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-03-05 - **Last Updated**: 2022-03-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Data package for "Computational Genomics with R" book This repository contains the data for the book content and exercises for ["Computational Genomics with R" book](https://www.routledge.com/Computational-Genomics-with-R/Akalin/p/book/9781498781855) published by CRC press. ## How to install ``` devtools::install_github("compgenomr/compGenomRData") ``` if you get errors similar to this ``` Downloading GitHub repo compgenomr/compGenomRData@HEAD Error in utils::download.file(url, path, method = method, quiet = quiet, : download from 'https://api.github.com/repos/compgenomr/compGenomRData/tarball/HEAD' failed ``` Try increasing the timeout before running `devtools::install_github("compgenomr/compGenomRData")` ``` options(timeout=300) ``` If this doesn't work, download the tar.gz file from here https://github.com/compgenomr/compGenomRData/releases/tag/v1.0. then use the following line on the terminal to install the package from source. ``` R CMD INSTALL compGenomRData-1.0.tar.gz ```