上一页 1 ··· 176 177 178 179 180 181 182 183 184 ··· 367 下一页
摘要: 1、系统信息 root@ubuntu2204test01:/home# lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 22.04 LTS Release: 22.04 C 阅读全文
posted @ 2022-06-14 10:37 小鲨鱼2018 阅读(505) 评论(0) 推荐(0) 编辑
摘要: 1、系统信息 root@ubuntu2204test01:~# lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 22.04 LTS Release: 22.04 Coden 阅读全文
posted @ 2022-06-14 10:29 小鲨鱼2018 阅读(20002) 评论(0) 推荐(0) 编辑
摘要: 001、问题 root@PC1:/home/software# gdebi rstudio-server-2022.02.3-492-amd64.deb Reading package lists... Done Building dependency tree... Done Reading st 阅读全文
posted @ 2022-06-13 15:31 小鲨鱼2018 阅读(1080) 评论(0) 推荐(0) 编辑
摘要: 1、 root@PC1:/home/test# ls a.txt root@PC1:/home/test# cat a.txt | tee xx.txt ## 输出屏幕的结果 保存至xx.txt dd ff ii xx jj ee xx vv mm root@PC1:/home/test# ls a 阅读全文
posted @ 2022-06-13 12:07 小鲨鱼2018 阅读(780) 评论(0) 推荐(0) 编辑
摘要: 1、基本用法 wget https://s3.amazonaws.com/plink1-assets/plink_linux_x86_64_20220402.zip 2、指定下载目录 wget -P /home/test2/ https://s3.amazonaws.com/plink1-asset 阅读全文
posted @ 2022-06-13 11:55 小鲨鱼2018 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 001、 a = NA ## NA表示这个位置的值为空 b = "" ## ""表示空字符串 c = NULL ## NULL表示变量为空 a b c class(a) ## 逻辑类型 class(b) ## 字符类型 class(c) ## NULL类型 length(a) ## 长度为1 len 阅读全文
posted @ 2022-06-08 12:31 小鲨鱼2018 阅读(1564) 评论(0) 推荐(0) 编辑
摘要: 001、 函数原型: %||%函数一共有两个参数: 当x为空时,返回y, x不为空时,返回x。 library(rlang) 1 %||% 2 NULL %||% 2 ## 这里的空值只识别 NULL。 "" %||% 2 NA %||% 2 阅读全文
posted @ 2022-06-08 12:10 小鲨鱼2018 阅读(552) 评论(0) 推荐(0) 编辑
摘要: 判断逻辑向量是否至少一个为真或者全部为真。 1、 any(c(FALSE, FALSE, FALSE)) ## 任何一个为真,则为真 any(c(FALSE, FALSE, TRUE)) any(c(TRUE, TRUE, TRUE)) all(c(TRUE, TRUE, TRUE)) ## 全部为 阅读全文
posted @ 2022-06-08 11:56 小鲨鱼2018 阅读(1601) 评论(0) 推荐(1) 编辑
摘要: 001、 switch ("a", ## 匹配a "a" = 1:5, "b" = 3:8, "c" = 100-110 ) switch ("b", ## 匹配b "a" = 1:5, "b" = 3:8, "c" = 100-110 ) switch ("c", ## 匹配c "a" = 1:5 阅读全文
posted @ 2022-06-08 11:27 小鲨鱼2018 阅读(1520) 评论(0) 推荐(0) 编辑
摘要: 1、测试数据下载:ftp://ftp.ensemblgenomes.org/pub/plants/release-44/gff3/arabidopsis_thaliana/Arabidopsis_thaliana.TAIR10.44.chromosome.1.gff3.gz 2、 [root@PC1 阅读全文
posted @ 2022-06-07 23:22 小鲨鱼2018 阅读(590) 评论(0) 推荐(0) 编辑
上一页 1 ··· 176 177 178 179 180 181 182 183 184 ··· 367 下一页