生信星球培训第十期

《学习小组Day3笔记——普德》

2018-12-05  本文已影响10人  普德

安装压缩软件:bzip2

yum install -y bzip2

软件管理:Miniconda

Miniconda = conda + python + basepackages
  wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh  # 下载
  bash Miniconda3-latest-Linux-x86_64.sh # 安装
  conda #激活

添加国内镜像

conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/bioconda/
conda config --set show_channel_urls yes

使用Conda软件

  conda list
# conda search + softname
  conda searc fastqc
  conda install fastqc -y 
  conda install fastqc=0.11.7 -y  # 指定版本
  conda remove fastqc  # 不需要再指定版本
conda info --envs
conda create -n rna-seq python=3 fastqc trimmomatic -y
source activate rna-seq
conda remove -n rna-seq fastqc -y
conda remove  -n rna-seq --all
# 需要退出当前环境

一些心得体会

·

上一篇 下一篇

猜你喜欢

热点阅读