Created
June 8, 2020 07:39
-
-
Save mutolisp/8126f2246fd6970d9fefdbf6b4cd0d60 to your computer and use it in GitHub Desktop.
seqParser pre-installation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install required packages | |
requiredPkgs <- c("BiocManager", "seqinr", "data.table", "devtools") | |
for ( i in 1:length(requiredPkgs)){ | |
if (!requireNamespace(requiredPkgs[i], quietly = TRUE)) | |
install.packages(requiredPkgs[i]) | |
} | |
BiocManager::install("Biostrings") | |
devtools::install_github(repo = 'mutolisp/seqParser') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment