美文网首页
cDNA_Cupcake-安装

cDNA_Cupcake-安装

作者: 郝永超M1racle | 来源:发表于2021-09-10 11:16 被阅读0次

Cupcake是一个三代测序后续分析软件的集合,其中包含的ToFu软件可进行转录本的修剪(collapse_isoforms_by_sam.py)以及融合基因(fusion_finder.py)的鉴定。

下载Cupcake

git clone https://github.com.cnpmjs.org/Magdoll/cDNA_Cupcake.git
cd cDNA_Cupcake/

Tofu软件不能直接使用,需要安装,需要python>=3.7

创建conda环境

conda create -n python37 python=3.7
conda activate python37
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
pip install pip -U
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

安装依赖包

pip install numpy
pip install Cython
python setup.py build
python setup.py install

整个安装过程大概十几分钟
最后测试一下

$collapse_isoforms_by_sam.py -h
usage: collapse_isoforms_by_sam.py [-h] [--input INPUT] [--fq] [-s SAM]
                                   [-b BAM] -o PREFIX [-c MIN_ALN_COVERAGE]
                                   [-i MIN_ALN_IDENTITY]
                                   [--max_fuzzy_junction MAX_FUZZY_JUNCTION]
                                   [--max_5_diff MAX_5_DIFF]
                                   [--max_3_diff MAX_3_DIFF]
                                   [--flnc_coverage FLNC_COVERAGE]
                                   [--gen_mol_count] [--dun-merge-5-shorter]
                                   [--cpus CPUS]
$fusion_finder.py 
usage: fusion_finder.py [-h] [--input INPUT] [--fq] -s SAM -o PREFIX
                        [--cluster_report_csv CLUSTER_REPORT_CSV] [--is_flnc]
                        [--dun-merge-5-shorter] [-c MIN_LOCUS_COVERAGE]
                        [--min_locus_coverage_bp MIN_LOCUS_COVERAGE_BP]
                        [-t MIN_TOTAL_COVERAGE] [-d MIN_DIST_BETWEEN_LOCI]
                        [-i MIN_IDENTITY]

更多用途需要探索,后续更新

相关文章

  • cDNA_Cupcake-安装

    Cupcake是一个三代测序后续分析软件的集合,其中包含的ToFu软件可进行转录本的修剪(collapse_iso...

  • ubuntu ppa PHP

    安装mysql 安装php 安装nginx 安装Chrome 安装dock 安装node 安装wine 官方源列表梯子

  • 从零开始在 Ubuntu  下部署 Django + uwsgi

    整体安装流程 安装 ubuntu ,安装 pip, 安装 uwsgi, 安装 django安装 nginx整个请求...

  • step one

    安装chrome 安装terminator 安装nodejs 安装apache2 安装php7 安装mysql 重...

  • centos安装lnmp,redis

    安装nginx 安装nginx源 安装nginx 启动nginx 安装MySQL5.7.* 安装mysql源 安装...

  • liunx实操(centOS 6.8)

    初始化 配置JDK 安装tomcat 安装maven 安装vsftpd 安装Nginx 安装mysql 安装git...

  • CentOS 7 下RabbitMQ 3.7 安装与配置

    首先安装Erlang20.2 安装准备 创建Yum源 Erlang安装 安装 验证 RabbitMQ安装 安装准备...

  • 在VirtualBox上使用Bosh部署Cloud Foundr

    安装Bosh 安装 VirtualBox 略 安装Bosh 安装完成后运行下面命令确认安装成功 安装依赖库 安装后...

  • ubuntu安装nginx

    安装依赖 安装gcc g++的依赖: 安装pcre库: 安装zlib库: 安装openssl: 安装nginx 首...

  • Linux下安装pip3

    安装pip3需安装setuptools, 而安装setuptools需要安装zlib. 安装zlib 进入安装目录...

网友评论

      本文标题:cDNA_Cupcake-安装

      本文链接:https://www.haomeiwen.com/subject/qdbgwltx.html