conda環(huán)境創(chuàng)建
conda create -n py3 python=3.8
conda create -n py2 python=2.7
數(shù)據(jù)預處理軟件
conda activate py3 # 激活py3環(huán)境
conda search fastqc # 查詢fastqc依賴的python版本
conda install fastqc # 安裝fastqc
conda search multiqc # 查詢multiqc依賴的python版本
conda install multiqc # 安裝multiqc
conda search fastp # 查詢cutadpter依賴的python版本
conda install fastp # 安裝fastpHisat-
數(shù)據(jù)處理軟件
Tophat-Cufflink-Cuffdiff
conda search tophat # 查詢tophat依賴的python版本
conda install tophat # 安裝 tophat
conda search cufflinks # 查詢cufflinks依賴的python版本
conda install cufflinks # 安裝 cufflinks
conda deactivate
HISAT-StringTie-Ballgown
conda activate py2
conda search hisat2
conda install hisat2
conda search stringtie
conda install stringtie
conda deactivate
sudo R
options(BioC_mirror="https://mirrors.tuna.tsinghua.edu.cn/bioconductor")
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("ballgown")
Subread-featurCount-DEseq2
conda activate py3
conda search subread
conda install subread
conda deactivate
sudo R
options(BioC_mirror="https://mirrors.tuna.tsinghua.edu.cn/bioconductor")
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("DESeq2")