어제부터 QIIME 분석만 하면 "QIIME is caching your current deployment for improved performance. This may take a few moments and should only happen once per deployment."이라고 오류가 뜬다. 오류의 전문은 아래와 같다. (qiime2-amplicon-2024.2) [ksy@localhost HMP]$ qiime feature-classifier classify-sklearn --i-classifier /data/Reference/16S/QIIME2/Greengenes/2022-10/gg_2022_10_backbone_full_length.nb.qza --i-reads ./representat..
Programming/Linux
setfacl -R -m g:그룹이름:rwx /home/특정디렉토리
Mamba가 뭔가?- 공식 홈페이지 : https://github.com/mamba-org/mamba- mamba = The Fast Cross-Platform Package Manager- conda package설치 시 빠르고 간편하게 설치 가능하게 만든 도구로 아래와 같은 장점이 있다parallel downloading of repository data and package files using multi-threadinglibsolv for much faster dependency solving, a state of the art library used in the RPM package manager of Red Hat, Fedora and OpenSUSEcore parts of mamba are..
아래 스크립트를 입력하고 서버 재접속 하면, base상태가 아닌 기본 상태로 접속한다 conda config --set auto_activate_base false https://stackoverflow.com/questions/54429210/how-do-i-prevent-conda-from-activating-the-base-environment-by-default How do I prevent Conda from activating the base environment by default? I recently installed anaconda2 on my Mac. By default Conda is configured to activate the base environment when I open ..
⬛ 설치 - 공식 문서 : https://docs.anaconda.com/anaconda/install/index.html 설치 전 필수 설치 - RedHat 계열 (CentOS) yum install libXcomposite libXcursor libXi libXtst libXrandr alsa-lib mesa-libEGL libXdamage mesa-libGL libXScrnSaver - Debian 계열 (Ubuntu) apt-get install libgl1-mesa-glx libegl1-mesa libxrandr2 libxrandr2 libxss1 libxcursor1 libxcomposite1 libasound2 libxi6 libxtst6 ANACONDA3 설치하기 | 설치파일 다운로드 ht..
- 참고 : https://github.com/r-lib/textshaping/issues/21 install.packages("devtools") # --------------------------- [ANTICONF] -------------------------------- # Configuration failed to find the harfbuzz freetype2 fribidi library. Try installing: # * deb: libharfbuzz-dev libfribidi-dev (Debian, Ubuntu, etc) # * rpm: harfbuzz-devel fribidi-devel (Fedora, EPEL) # * csw: libharfbuzz_dev libfribidi_dev..
약 800여 개의 fastq.gz파일은 4개의 카테고리로 구성되어 있다. 각 파일의 이름이 담긴 목록을 엑셀로 생성 후 이를 이용해 파일을 각 디렉터리에 옮기고자 한다. https://stackoverflow.com/questions/45111754/move-multiple-files-from-a-folder-to-list-of-directories-undo-a-move-command while read line; do fileName=$(basename $line) dirName=$(dirname $line) cp SourceDir/"$fileName" "$dirName" done < ListOfFile.txt 그러나 문제는 엑셀로 만든 파일이 뒤에 '\r'이 붙어서 이동이 되지 않았다. 또한 위 방법..