摘要: 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 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 001、 library(BiocManager) BiocManager::install("DESeq2") 阅读全文
posted @ 2023-04-26 11:43 小鲨鱼2018 阅读(247) 评论(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 阅读(261) 评论(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 阅读(7584) 评论(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 阅读(115) 评论(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 阅读(368) 评论(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 阅读(27) 评论(0) 推荐(0) 编辑