centos7中安装delly软件
001、系统
[root@localhost home]# cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core)
方法1 conda安装
01、创建python环境
[root@localhost home]# conda create -n py38 python=3.8
02、进入创建的python环境
[root@localhost home]# conda activate py38
03、conda安装delly0.7.6(其他版本会报错)
(py38) [root@localhost home]# conda install -c bioconda delly=0.7.6
04、调用delly测试
(py38) [root@localhost home]# delly ********************************************************************** Program: Delly This is free software, and you are welcome to redistribute it under certain conditions (GPL); for license details use '-l'. This program comes with ABSOLUTELY NO WARRANTY; for details use '-w'. Delly (Version: 0.7.6) Contact: Tobias Rausch (rausch@embl.de) ********************************************************************** Usage: delly <command> <arguments> Commands: call discover and genotype structural variants merge merge structural variants across VCF/BCF files and within a single VCF/BCF file filter filter somatic or germline structural variants
方法:2 直接下载可执行程序
01、
下载地址:https://github.com/dellytools/delly/releases/download/v1.1.5/delly_v1.1.5_linux_x86_64bit
[root@localhost delly]# wget https://github.com/dellytools/delly/releases/download/v1.1.5/delly_v1.1.5_linux_x86_64bit
02、赋予可执行权限
[root@localhost delly]# ls delly_v1.1.5_linux_x86_64bit [root@localhost delly]# chmod 755 delly_v1.1.5_linux_x86_64bit [root@localhost delly]# ls delly_v1.1.5_linux_x86_64bit
03、调用测试
[root@localhost delly]# ./delly_v1.1.5_linux_x86_64bit
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 单元测试从入门到精通
· 上周热点回顾(3.3-3.9)
· winform 绘制太阳,地球,月球 运作规律
2020-10-03 linux系统统计某一字符出现的次数
2020-10-03 linux系统统计某一行出现特定字符的次数
2020-10-03 linux系统下如何将当前目录下的文件从小到大排列
2020-10-03 R语言strsplit函数用法
2020-10-03 linux系统删除指定的行(sed命令)
2020-10-03 R语言subset函数的用法