文章发表题目:LiBis: An ultrasensitive alignment method for low input bisulfite sequencing
    Github地址:https://github.com/Dangertrip/LiBis
    文章地址:https://academic.oup.com/bib/advance-article/doi/10.1093/bib/bbaa332/6034045LiBis:用于低输入BS-seq的超灵敏比对方法 - 图1
    孙德强教授课题组贡献的软件,孙教授发表过不少的BS-seq相关的工具。
    libis的优点是可以显著提高低输入DNA亚硫酸氢盐测序定位读数比率的方法

    安装
    libis依赖于python3.6+

    使用conda安装(推荐)

    1. conda config --add channels defaults
    2. conda config --add channels bioconda
    3. conda config --add channels conda-forge
    4. conda install libis

    依赖软件:LiBis integrates FastQC, Bedtools, Trim-galore, moabs and samtools. These packages can be installed independently or by conda.
    ```

    1. conda install -c bioconda fastqc
    2. conda install -c bioconda bedtools
    3. conda install -c bioconda cutadapt
    4. conda install -c bioconda trim-galore
    5. conda install -c bioconda moabs
    6. conda install -c bioconda samtools=1.1

    使用 Docker 安装
    LiBis also supports the Docker installation.
    ```

    1. wget https://github.com/Dangertrip/LiBis/archive/master.zip
    2. unzip master.zip
    3. cd LiBis-master/
    4. docker build --tag=libis ./
    5. docker run libis LiBis --help

    跑一下测试数据集

    1. git clone https://github.com/Dangertrip/LiBis.git
    2. cd LiBis/Example/
    3. # Run LiBis from begining:
    4. LiBis -n sample1_mate1.fq.gz,sample1_mate2.fq.gz sample2_mate1.fq.gz,sample2_mate2.fq.gz -r /PATH_TO_FASTA_REFERENCE

    随便记录一下软件作者在BS-seq相关的小脚本:https://github.com/Dangertrip/Bioinformatics_scripts