下载与安装
时长: 2 分钟
字数: 247 字
更新: 2026-02-26
阅读: 0 次
克隆
克隆仓库
bash
git clone https://github.com/seekgene/SeekSoulMethyl.git
cd SeekSoulMethyl创建并激活环境
国内用户:
bash
conda env create -n seeksoulmethyl -f conda_dependencies.zh.yml
conda activate seeksoulmethyl海外用户:
bash
conda env create -n seeksoulmethyl -f conda_dependencies.yml
conda activate seeksoulmethyl安装
安装方法
bash
cd dependence
pip install . \
simpleqc/target/wheels/simpleqc-0.1.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl \
search-pattern/target/wheels/search_pattern-0.1.0-py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl
cd ..我们将下载 Bismark 和 ALLCools 的修改版本进行分析。
shell
# 克隆并安装自定义 ALLCools
conda activate seeksoulmethyl
git clone https://github.com/seekgene/ALLCools.git && \
pip install ./ALLCools && \
rm -rf ./ALLCools
# 克隆并安装自定义 Bismark
git clone https://github.com/seekgene/Bismark.git && \
bin_path=$(dirname `which python`)
cp -r ./Bismark/* $bin_path/ && \
chmod +x $bin_path/bismark* && \
chmod +x $bin_path/deduplicate_bismark && \
rm -rf ./Bismark