简体   繁体   English

Bioconductor和CRAN之间的通用软件包

[英]common packages between Bioconductor and CRAN

Is there any package which is submitted in both Bioconductor and CRAN repositories? 在Bioconductor和CRAN存储库中都提交了任何软件包吗? Can a package be submitted in both repositories? 软件包可以在两个存储库中提交吗? How can we realize that? 我们怎么能意识到这一点?

To answer your penultimate inquisition, it is generally (IMO) bad form to cross-submit since bioconductor has a very narrow focus & CRAN has a much larger focus and will pull from bioconductor if necessary. 为了回答您的倒数第二次问询,通常交叉提交(IMO)是错误的形式,因为生物导体的关注范围很窄,而CRAN的关注范围更大,并且在必要时会从生物导体中撤出。 Those more familiar with bioconductor should correct said opinion if it is errant, though (generally not a problem with SO R folks these days, civility component of said corrections notwithstanding). 但是,那些更熟悉生物导体的人应该纠正所说的观点(如果有误的话)(尽管这些纠正措施的文明程度,如今对SO R的人们来说通常不是问题)。

Answering your initial & final inquiries can be done with R itself, though: 不过,您可以使用R本身来回答您的初始和最终查询:

bioc <- as.data.frame(available.packages(contrib.url("http://www.bioconductor.org/packages/3.8/bioc")))
cran <- as.data.frame(available.packages())

intersect(bioc$Package, cran$Package)
## [1] mixOmics

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM