生物信息技术

  • Rstudio/Rstudio Server enable Copilot-Rstudio Server打开Copilot

    Rstudio Server 默认是关闭Copilot Copilot is turned off by default. Copilot is turned off with copilot-enabled=0 in /etc/rstud…

    R 06/05/2025
    104
  • R_Code: KEGG analysis

    library(clusterProfiler) library(org.Hs.eg.db) # 读取输入数据文件 file_path <- “C:/Users/Lamarck/Desktop/UP_genes_ENSEMBL_ENT…

    R 06/02/2025
    126
  • R_Code:GO and Functional GO

    GO analysis: library(AnnotationDbi) library(org.Hs.eg.db) #基因注释包 library(clusterProfiler) #富集包 # 读取CSV文件 file_path <-…

    R 06/02/2025
    127
  • R_Code:WGCNA and WGCNA_Get_Gene_Length

    library(WGCNA) library(DESeq2) # enableWGCNAThreads(nThreads = 10) # 在处理数据框(data.frame)时,不会自动给将String类型转换成factor类型 optio…

    R 06/02/2025
    130
  • R_Code:RNAseq_GSEA_analysis

    library(clusterProfiler) # GSEA 和富集分析主力包 library(org.Hs.eg.db) # 人类注释数据库(ENTREZID 与 SYMBOL 等 ID 转换) library(enrichplot) …

    R 06/02/2025
    130
  • R_Code:RNAseq_Gene_Type_Convert_ENSEMBL_to_ENTREZ

    1.Ensembl_to_Entrez: library(AnnotationDbi) library(org.Hs.eg.db) library(clusterProfiler) library(dplyr) diff <- rea…

    R 06/02/2025
    132
  • R_Code :RNAseq_DEGs

    library(DESeq2) library(dplyr) # 读取表达矩阵 mycounts <- read.csv(“Input File Format/mycounts.csv”,row.names = 1) # 查看读入的表…

    R 06/02/2025
    118
  • R:DESeq2_contrasts教程

    READ THIS BEFORE CONTINUING As I’ve come across more experimental designs, I have come to question the “universality” of…

    R 05/16/2025
    148
  • DEseq多组比较分析代码-multi_group_deseq_analysis

    # 加载必要的包library(DESeq2)library(ggplot2) # 自定义函数:多组样本差异分析multi_group_deseq_analysis

    R 05/16/2025
    153
  • R: tximport包使用注意事项

    Import transcript-level abundances and counts for transcript- and gene-level analysis packages Description tximport impo…

    R 04/28/2025
    204