scRepertoire: TCR/BCR seq ๋ถ์ํ๋ R package
๐ Borcherding, Nicholas, Nicholas L. Bormann, and Gloria Kraus. โscRepertoire: An R-based toolkit for single-cell immune receptor analysis.โ F1000Research 9 (2020).
Installation
1
2
3
4
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("scRepertoire")
๐จ `ERROR: compilation failed for package โgslโ`
๊ทธ๋ฅ ๋ฐ๋ก R package ๊น๋ ค๊ณ ํ๋ฉด ์๊น๋ฆผ. C library๋ถํฐ ๊น์์ค์ผํจ.
GSL C library ์ค์น
1
2
3
4
5
6
7
8
wget https://gnu.mirror.constant.com/gsl/gsl-latest.tar.gz
tar -xvzf gsl-latest.tar.gz
cd gsl-2.7.1/
./configure --prefix=/source/gsl-2.7.1
make -j 10 & make install
echo -e "PATH=/source/gsl-2.7.1/bin:$PATH" >> ~/.bash_profile
echo -e "LD_LIBRARY_PATH=/source/gsl-2.7.1/lib:$LD_LIBRARY_PATH" >> ~/.bash_profile
source ~/.bash_profile
๋ค์ R๋ก ๋์๊ฐ์ gsl
์ค์น.
1
install.packages("gsl")
How to run scRepertoire
Reference
- https://xuranw.github.io/MuSiC/articles/pages/MuSiC2.html#sample-analysis
This post is licensed under CC BY 4.0 by the author.