BiocParallel
BiocParallel copied to clipboard
Errors_Logs_And_Debugging Rnw to Rmd
- [x] the
.Rmd
file knits toHTML
- [ ]
R CMD build
runs without errors or timeouts - [ ] the tarball from
R CMD build
contains theHTML
(check with the following by substituting the package name and vignette nametar ztf package_name.tar.gz | grep 'doc/vignette_name'
) - [ ] the
.Rnw
file has been removed - In the
DESCRIPTION
file- [ ]
BiocStyle
andknitr
are listed inSuggests
- [ ] the line
VignetteBuilder: knitr
exists - [ ] any added lines use the same spacing and indents as the existing document
- [ ]
- If agreed with the Maintainer
- [ ] the contributor is in the author list in the
DESCRIPTION
file*. - [ ] the contributor is in the author list in the vignette's YAML*.
- [ ] the contributor is in the author list in the
- If this pull request involves converting from separate
Author
andMaintainer
lines to theAuthors@R
vector, please ensure that- [ ] the
Authors@R
vector includes the maintainer as specified withrole='cre'
. - [ ] the
Maintainer
line is completely removed.
- [ ] the
- [ ]
HTML
document is representative of thePDF
in content and in general the presentation - [ ] Where the contributor was not able to preserve the content and presentation
of the
PDF
is noted as a comment in the pull request - [ ] the R Markdown file is representative of the Sweave document and follows
best practices, such as replacing links to Bioconductor packages with calls
to BiocStyle's
Biocpkg()
- [ ] Only files necessary for the conversion are included in the pull request.
- [ ] Long lines have been broken up and reformatted, you can achieve this by
selecting the text in your script and then clicking on
Code > Reflow Comment
in R Studio. - [ ] Code blocks are surrounded by a blank line, and there are no blank lines before the start or after the end of the code within the code block.