rconfig:在命令行管理 R 配置

Configuration management using files (JSON, YAML, separated text), JSON strings, and command line arguments. Command line arguments can be used to override configuration. Period-separated command line flags are parsed as hierarchical lists.
使用文件(JSON、YAML、分隔文本)、JSON 字符串和命令行参数进行配置管理。 命令行参数可用于覆盖配置。 句点分隔的命令行标志被解析为分层列表。
Version: 0.1.1
Imports: yaml, jsonlite
Published: 2022-02-21
Author: Peter Solymos [aut, cre] (), Analythium Solutions Inc. [cph]
Maintainer: Peter Solymos BugReports: https://github.com/analythium/rconfig/issues
License: MIT + file LICENSE
URL: https://github.com/analythium/rconfig
NeedsCompilation: no
Materials: NEWS
CRAN checks: rconfig results
Documentation:
Reference manual: rconfig.pdf
Downloads:
Package source: rconfig_0.1.1.tar.gz
Windows binaries: r-devel: rconfig_0.1.1.zip, r-release: rconfig_0.1.1.zip, r-oldrel: rconfig_0.1.1.zip
macOS binaries: r-release (arm64): rconfig_0.1.1.tgz, r-release (x86_64): rconfig_0.1.1.tgz, r-oldrel: rconfig_0.1.1.tgz
Linking:
Please use the canonical form https://CRAN.R-project.org/package=rconfig to link to this page.

本站原创,如若转载,请注明出处:https://www.ouq.net/1463.html

(0)
打赏 微信打赏,为服务器增加50M流量 微信打赏,为服务器增加50M流量 支付宝打赏,为服务器增加50M流量 支付宝打赏,为服务器增加50M流量
上一篇 03/21/2022 20:17
下一篇 04/02/2022 20:11

相关推荐

  • 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
    113
  • 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
    134
  • R_Code:GO and Functional GO

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

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

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

    R 06/02/2025
    139
  • R_Code:RNAseq_GSEA_analysis

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

    R 06/02/2025
    137