上一页 1 ··· 87 88 89 90 91 92 93 94 95 ··· 367 下一页
摘要: 01、问题 02、ubuntu系统 root@DESKTOP-A31BQ38:/home/software# lsb_release -a 03、解决方法 root@DESKTOP-A31BQ38:/home/software# apt install bzip2 参考:https://blog.c 阅读全文
posted @ 2023-04-28 20:38 小鲨鱼2018 阅读(164) 评论(0) 推荐(0) 编辑
摘要: R语言中数据框除以向量,规则是数据框中的元素按照列依次递增,除数向量循环递增。 001、 a <- c(20, 10, 6, 8) b <- c(2, 4, 12, 8) c <- c(6, 8, 14, 14) dat <- data.frame(a, b, c) dat idx <- c(2, 阅读全文
posted @ 2023-04-27 16:47 小鲨鱼2018 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 001、 (py38) root@DESKTOP-IDT9S0E:/home/test# ls a.txt index.txt record.sh (py38) root@DESKTOP-IDT9S0E:/home/test# cat a.txt ## 测试数据 01 02 03 04 05 06 阅读全文
posted @ 2023-04-26 15:05 小鲨鱼2018 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 001、 (py38) root@DESKTOP-IDT9S0E:/home/test# ls a.txt index.txt record.sh (py38) root@DESKTOP-IDT9S0E:/home/test# cat a.txt ## 测试数据 01 02 03 04 05 06 阅读全文
posted @ 2023-04-26 14:54 小鲨鱼2018 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 001、 library(BiocManager) BiocManager::install("DESeq2") 阅读全文
posted @ 2023-04-26 11:43 小鲨鱼2018 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 001、 c1 <- c("a", "b", "a", "a", "b", "c") c2 <- c(3, 1, 4, 7, 8, 2) dat <- data.frame(c1, c2) ## 测试数据框 dat aggregate(dat$c2, by=list(dat$c1), sum) ## 阅读全文
posted @ 2023-04-26 10:21 小鲨鱼2018 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 001、 library(tidyverse) ## 加载包 a <- c(3, 5, 2, 1) b <- letters[1:4] c <- LETTERS[1:4] dat <- data.frame(a, b, c) dat column_to_rownames(dat, "a") ## 将 阅读全文
posted @ 2023-04-26 10:15 小鲨鱼2018 阅读(6976) 评论(0) 推荐(0) 编辑
摘要: 001、测试数据框 studentID <- seq(1, 20) gender <- rep(c("M", "M", "F", "F", "F"), 4) math <- rep(c(92, 86, 85, 74, 82), 4) english <- rep(c(76, 69, 82, 71, 阅读全文
posted @ 2023-04-26 09:49 小鲨鱼2018 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 01、下载 git clone https://github.com/billzt/readfq.git 02、编译 gcc -o kseq_fastq_base kseq_fastq_base.c -lz 03、统计fastq文件的reads数目和碱基数目 #!/bin/bash for i in 阅读全文
posted @ 2023-04-26 08:52 小鲨鱼2018 阅读(344) 评论(0) 推荐(0) 编辑
摘要: 01、ubuntu系统: (py38) root@DESKTOP-IDT9S0E:/home/software/readfq# lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubunt 阅读全文
posted @ 2023-04-26 08:51 小鲨鱼2018 阅读(26) 评论(0) 推荐(0) 编辑
上一页 1 ··· 87 88 89 90 91 92 93 94 95 ··· 367 下一页