随笔分类 - 生信
摘要:1、 dat <- read.table("outcome.map") dat split(dat, dat$V1) ## 依据第一列(染色体)直接拆分数据
阅读全文
摘要:1、 测试数据读入R dat <- read.table("a.map") dat 2、 class(dat$V1) ## 查看第一列变量类型 chr <- as.factor(dat$V1) ## 转换为因子 chr result <- split(dat, chr) ## 按照因子进行拆分 re
阅读全文
摘要:001、 BiocManager::install("Biobase") BiocManager::install("GO.db") BiocManager::valid("GO.db")
阅读全文
摘要:1、不存在叫'EnsDb.Hsapiens.v86'这个名字的程辑包 2、 BiocManager::install("EnsDb.Hsapiens.v86") library(EnsDb.Hsapiens.v86)
阅读全文
摘要:1、 BiocManager::install("org.Mm.eg.db") library(org.Mm.eg.db)
阅读全文
摘要:来源:https://blog.csdn.net/qq_45322084/article/details/123901724 1.环境 安装1.先执行命令安装EPEL仓库 yum install epel-release 2.然后再执行 yum install R 有提示就按 y键即可 安装完成输入
阅读全文
摘要:1、查看系统 [root@centos7pc1 software]# lsb_release -a LSB Version: :core-4.1-amd64:core-4.1-noarch:cxx-4.1-amd64:cxx-4.1-noarch:desktop-4.1-amd64:desktop-
阅读全文
摘要:1、查看系统 root@liujiaxinpc1:/home/test# lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 20.04.4 LTS Release: 20.0
阅读全文
摘要:1、下载地址:http://hgdownload.soe.ucsc.edu/admin/exe/linux.x86_64/ 2、赋予权限 root@DESKTOP-1N42TVH:/home/software# ll -h total 34M drwxr-xr-x 4 root root 4.0K
阅读全文
摘要:1、当参考基因组 大于2G时(约20亿个核苷酸,20,0000,0000):bwa index -a bwtsw xxx.fa 小于2G时(约20亿个核苷酸,20,0000,0000):bwa index xxx.fa 2、统计参考基因组碱基数目 root@DESKTOP-1N42TVH:/home
阅读全文
摘要:1、 root@DESKTOP-1N42TVH:/home/test/test2# ls Arabidopsis_thaliana.TAIR10.dna.toplevel.fa root@DESKTOP-1N42TVH:/home/test/test2# samtools faidx Arabido
阅读全文
摘要:1、方式1 root@DESKTOP-1N42TVH:/home/test/test2# ls Arabidopsis_thaliana.TAIR10.dna.toplevel.fa root@DESKTOP-1N42TVH:/home/test/test2# java -jar /home/sof
阅读全文
摘要:1、问题 2、解决方法 root@DESKTOP-1N42TVH:/home/test2# vim /etc/profile ## 在配置文件末尾追加如下两句 export XDG_RUNTIME_DIR=/usr/lib/ export RUNLEVEL=3 source一下: root@DESK
阅读全文
摘要:1、方法1 root@DESKTOP-1N42TVH:/home/test# ls hg38.fa root@DESKTOP-1N42TVH:/home/test# grep -v "^>" hg38.fa | awk 'BEGIN{sum = 0} {sum += length($0)} END
阅读全文
摘要:1、R编译安装出现如下问题: configure: error: PCRE2 library and headers are required, or use --with-pcre1 and PCRE >= 8.32 with UTF-8 support 2、系统 [root@centos7 R-
阅读全文
摘要:1、问题samtools安装报错:configure: WARNING: S3 support not enabled: requires SSL development files 2、解决方法: [root@centos7pc1 samtools-1.15]# yum install gcc g
阅读全文
摘要:1、问题samtools安装报错:configure: WARNING: libcurl not enabled: library not found 2、解决方法 [root@centos7pc1 samtools-1.15]# yum install libcurl-devel -y
阅读全文
摘要:1、问题 samtools安装报错:configure: error: liblzma development files not found 2、解决方法 [root@centos7pc1 samtools-1.15]# yum install xz-devel -y
阅读全文
摘要:1、问题samtools安装报错 configure: error: libbzip2 development files not found 2、解决方法 [root@centos7pc1 samtools-1.15]# yum install bzip2-devel -y
阅读全文
摘要:1、问题 samtools安装报错:configure: error: zlib development files not found 2、解决方法 [root@centos7pc1 samtools-1.15]# yum install zlib zlib-devel
阅读全文

浙公网安备 33010602011771号