No vignettes found by browseVignettes where they actually are there

醉酒当歌 提交于 2019-11-30 13:04:32

From Writing R Extensions, section 1.4.2, your vignettes need to have a line

%\VignetteEngine{knitr::knitr}

in them; a common paradigm is to add the following to the yaml at the top of the vignette

vignette: >
  %\VignetteIndexEntry{Integrating TCGA Data}
  %\VignetteEngine{knitr::rmarkdown}

VignetteIndexEntry provides a convenient title for R's help system. Remember the BiocStyle package for creating vignettes with a consistent look.

I only could solve this, using:

devtools::build_vignettes()

Of course, then uploading the new files by git

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!