上一页 1 ··· 110 111 112 113 114 115 116 117 118 ··· 403 下一页
摘要: 001、删除a、d列 a <- 1:6 b <- 11:16 c <- letters[1:6] d <- LETTERS[1:6] dat <- data.frame(a, b, c, d) dat dat[,!names(dat) %in% c("a","d")] ## 删除a、d列 002、 阅读全文
posted @ 2023-06-19 13:14 小鲨鱼2018 阅读(431) 评论(0) 推荐(0)
摘要: 001、问题 002、解决方法 [root@PC1 test4]# which samtools /root/anaconda3/bin/samtools [root@PC1 test4]# cd /root/anaconda3/lib [root@PC1 lib]# [root@PC1 lib]# 阅读全文
posted @ 2023-06-19 00:14 小鲨鱼2018 阅读(323) 评论(0) 推荐(0)
摘要: 001、 002、 003、 004、再次打开浏览器 阅读全文
posted @ 2023-06-17 22:23 小鲨鱼2018 阅读(755) 评论(0) 推荐(0)
摘要: 001、面向过程,如c、shell; 性能高, 代码可读性差。 002、面向对象:c++、java; 003、函数式编程。 面向过程编程: 以过程为中心,按照一定的顺序执行程序。 强调程序的执行顺序和控制流程。 程序的重点在于算法和数据的处理,使用全局变量和函数进行操作。 编写简单,可读性高,性能较 阅读全文
posted @ 2023-06-16 23:47 小鲨鱼2018 阅读(160) 评论(0) 推荐(0)
摘要: EPEL (Extra Packages for Enterprise Linux) 是一个由 Fedora 社区志愿者维护的软件包仓库,为 Red Hat Enterprise Linux (RHEL)、CentOS 和 Scientific Linux 等企业级Linux发行版提供额外的软件包。 阅读全文
posted @ 2023-06-16 22:18 小鲨鱼2018 阅读(1561) 评论(0) 推荐(0)
摘要: 001、git clone报错 002、解决方法 进入github官网,搜索该项目 003、上传至linux、解压 [root@PC1 test2]# unzip CNVcaller-master.zip 阅读全文
posted @ 2023-06-15 22:02 小鲨鱼2018 阅读(43) 评论(0) 推荐(0)
摘要: 001、在linux终端生成公钥 [root@PC1 test2]# ssh-keygen -t rsa ## 一直回车 002、查看公钥 [root@PC1 test2]# cat ~/.ssh/id_rsa.pub ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCv 阅读全文
posted @ 2023-06-15 21:51 小鲨鱼2018 阅读(202) 评论(0) 推荐(0)
摘要: 001、查看防火墙状态 [root@PC1 test05]# systemctl status firewalld.service 002、关闭防火墙 [root@PC1 test05]# systemctl stop firewalld.service ## 关闭防火墙 [root@PC1 tes 阅读全文
posted @ 2023-06-15 21:11 小鲨鱼2018 阅读(556) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test2]# cat record.sh #!/bin/bash while : do du -sh ./ sleep 2 ## 每隔2秒输出指定目录的大小 done 阅读全文
posted @ 2023-06-15 00:38 小鲨鱼2018 阅读(22) 评论(0) 推荐(0)
摘要: 001、当变量为空时,为变量赋值 [root@PC1 test2]# var bash: var: command not found... [root@PC1 test2]# echo $var [root@PC1 test2]# var=${var:-123456} ## 变量为空时,将变量的值 阅读全文
posted @ 2023-06-15 00:21 小鲨鱼2018 阅读(154) 评论(0) 推荐(0)
上一页 1 ··· 110 111 112 113 114 115 116 117 118 ··· 403 下一页