摘要: 001、下载镜像源 a、地址 清华镜像源:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ b、下载最新版本, 注意两点:1、最新的,可以参考后边的发布日期; 2、选择linux版本,架构选x86_64的 002、确认一下系统 [root@ 阅读全文
posted @ 2024-04-23 13:17 小鲨鱼2018 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 001、问题 Error: --recode does not support multipass recoding of very large files. (base) [root@pc1 test01]# plink --bfile f1 --sheep --recode tab --out 阅读全文
posted @ 2024-04-23 10:52 小鲨鱼2018 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 001、生成fst值得z分数 即:(观测值-平均值)/标准差 dat <- read.table("fst.fst", header = T) head(dat, 3) dat$z_score <- (dat$FST - mean(dat$FST))/sd(dat$FST) ## 在原来数据上新增一 阅读全文
posted @ 2024-04-22 18:19 小鲨鱼2018 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 001、问题 (base) [root@pc1 src]# treemix treemix: error while loading shared libraries: libgsl.so.27: cannot open shared object file: No such file or dir 阅读全文
posted @ 2024-04-21 18:14 小鲨鱼2018 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 001、 基础绘图 library(ggplot2) p <- ggplot(faithful, aes(x = eruptions, y = waiting)) + geom_point() p 002、调整标签刻度到绘图区域的间距 p + theme(axis.text.x = element_ 阅读全文
posted @ 2024-04-17 11:56 小鲨鱼2018 阅读(2) 评论(0) 推荐(0) 编辑
摘要: R语言中pch对照表: 。 阅读全文
posted @ 2024-04-10 20:49 小鲨鱼2018 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 001、 a <- sample(20:80,15) a b <- matrix(a,nrow=3) b par(mfrow = c(2, 1)) barplot(b,width=1,beside=T, space = c(0, 2), main = "xxx") barplot(b,width=1 阅读全文
posted @ 2024-04-10 20:32 小鲨鱼2018 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 001、 gffread x_variable_combine.gff -g goat_pangenome.fa -y x_variable_protein.fa ## 提取命令 。 阅读全文
posted @ 2024-04-07 11:08 小鲨鱼2018 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 001、问题, make编译报错如下: utilseq.h:92:30: error: ‘Iefp’ is not a class or namespace 002、感觉像是c++版本低造成的 测试一下,将gcc编译器有4.8 升级到 11, 问题解决。 升级方法:https://www.cnblo 阅读全文
posted @ 2024-04-06 23:04 小鲨鱼2018 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 001、 Project、sample、SRA、RUN、experiment accession 啥关系 阅读全文
posted @ 2024-04-05 12:34 小鲨鱼2018 阅读(1) 评论(0) 推荐(0) 编辑