上一页 1 ··· 164 165 166 167 168 169 170 171 172 ··· 367 下一页
摘要: 001、读取测试数据 dir() dat <- read.table("test.txt") dat 002、按照第一列进行升序排列 dat dat[order(dat[,1]),] 03、第一例按照降序进行排序 dat[order(-dat[,1]),] 004、第一列升序、第二列降序 dat[o 阅读全文
posted @ 2022-07-27 22:51 小鲨鱼2018 阅读(3482) 评论(0) 推荐(0) 编辑
摘要: 001、测试数据 library(dplyr) class1 <- tribble( ~'名次',~'姓名', '第一名','王某人', '第二名','张周人', '第三名','李某人' ) class2 <- tribble( ~'名次',~'姓名', '第一名','胡某人', '第二名','刘周 阅读全文
posted @ 2022-07-27 22:09 小鲨鱼2018 阅读(5039) 评论(0) 推荐(1) 编辑
摘要: 001、测试数据 root@PC1:/home/test3# ls test.gff root@PC1:/home/test3# cat test.gff ## 测试数据 a b c e j j a b c i j k a b c x y z i q m x y z i e i 002、unique 阅读全文
posted @ 2022-07-27 21:44 小鲨鱼2018 阅读(5764) 评论(0) 推荐(0) 编辑
摘要: 001、测试数据 root@PC1:/home/test3# ls test.gff root@PC1:/home/test3# cat test.gff ## 1 aa bb xx yy ## 2 jj kk uu ss ee 3 mm jj aa ww ff 4 ee ww qq kk ee 5 阅读全文
posted @ 2022-07-27 21:26 小鲨鱼2018 阅读(424) 评论(0) 推荐(0) 编辑
摘要: 001、测试数据 root@PC1:/home/test3# ls test.gff root@PC1:/home/test3# cat test.gff 1 aa bb xx yy 2 jj kk uu ss 3 mm jj aa ww 4 ee ww qq kk 5 xx ff ee jj di 阅读全文
posted @ 2022-07-27 21:16 小鲨鱼2018 阅读(1432) 评论(0) 推荐(0) 编辑
摘要: 001、测试数据 root@PC1:/home/test3# ls test.gff root@PC1:/home/test3# cat test.gff aa bb xx yy jj kk mm ee ww qq kk uu xx ff ee dir() dat1 <- read.table("t 阅读全文
posted @ 2022-07-27 21:09 小鲨鱼2018 阅读(364) 评论(0) 推荐(0) 编辑
摘要: 001、plink root@PC1:/home/test# ls gwas_test.map gwas_test.ped root@PC1:/home/test# plink --file gwas_test --pca 3 1> /dev/null root@PC1:/home/test# ls 阅读全文
posted @ 2022-07-27 11:22 小鲨鱼2018 阅读(392) 评论(0) 推荐(0) 编辑
摘要: 001、plink + R root@PC1:/home/test# ls gwas_test.map gwas_test.ped root@PC1:/home/test# plink --file gwas_test --recode A 1> /dev/null root@PC1:/home/t 阅读全文
posted @ 2022-07-27 11:02 小鲨鱼2018 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 001、plink root@PC1:/home/test# ls gwas_test.map gwas_test.ped root@PC1:/home/test# plink --file gwas_test --assoc 1> /dev/null root@PC1:/home/test# ls 阅读全文
posted @ 2022-07-27 00:59 小鲨鱼2018 阅读(837) 评论(0) 推荐(0) 编辑
摘要: 001、plink计算 root@PC1:/home/test# ls gwas_test.map gwas_test.ped root@PC1:/home/test# plink --file gwas_test --assoc 1> /dev/null root@PC1:/home/test# 阅读全文
posted @ 2022-07-27 00:33 小鲨鱼2018 阅读(447) 评论(0) 推荐(0) 编辑
上一页 1 ··· 164 165 166 167 168 169 170 171 172 ··· 367 下一页