Hello Bioconductor,
I am developing my first package as a part of my PhD and I am having some difficulties with understanding the procedures involved in correctly maintaining my package to the standard which the bioconductor new package guidelines state.
One of my areas of confusion is the requirement to show how to install my package from bioconductor on a vignette. The following line is found in the Package guidelines https://www.bioconductor.org/developers/package-guidelines/#vignettes.
"2. Add an “Installation” section that show to users how to download and load the package from Bioconductor."
I have not yet uploaded my package onto bioconductor (atm it is on a private github) so how could I add an installation for my package from bioconductor?
Do I just ignore the fact that my package is not on bioconductor yet, and proceed as shown below?
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("Packagename")
Any help or guidance would be most appreciated, Krutik.
This makes sense, thank you.