Note: If you are using a Windows system, you can use Git Bash to complete git clone and other Git related operations. Git Bash is installed when Git is installed to your Windows system.
Note: You will not be able to push to the Bioconductor repo unless you have permission as a maintainer. For more information on getting permission and working with Bioconductor packages, see the Bioconductor .
Note: You may also want to create your own separate branch from devel if you are making substantial changes. This can be done with the command git checkout -b <new_branch_name>. See this article for more information on utilizing Git .
Also include and @source tag if you returned the data from an outside database or website.
Make sure to rerun devtools::document() to generate the man file for the example datasets and update the function documentation.
By changing code in one part of the package, you may break code in another part of the package. Make sure all of your unit tests pass before moving on to the next major steps, even if it is another part of the code that is breaking.
Note: Make sure this build/check does not return new warnings or errors on your local system before proceeding.
Note: When adding new code or functionality, make sure to update the appropriate articles that are separate from the vignettes. This often serves as another layer of checking to ensure your new code is robust.