View source: R/getPackageNEWS.R
getPackageTitles | R Documentation |
These functions visit two Bioconductor releases branches, identifying differnt packages that are present in the ‘current’ repository from the ‘previous’ release. Utilizes the devel branch of bioconductor to retrieve description.
getPackageTitles(prevBranch="RELEASE_3_6",
currBranch="devel",
manifest=c("software.txt", "data-experiment.txt",
"workflows.txt", "data-annotation.txt", "books.txt"),
status = c("new", "removed"))
getPackageDescriptions(pkgs, outfile, output=c("md", "text"), relativeLink=FALSE)
prevBranch |
|
currBranch |
|
manifest |
|
status |
get new or removed package list comparing currBranch to prevBranch |
pkgs |
character() A list of packages to retrieve DESCRIPTION |
outfile |
|
output |
|
relativeLink |
Should links to packages be relative links on bioconductor.org website or include full url 'https//bioconductor.org'. default: FALSE is full url. |
A list of package titles.
Martin Morgan mtmorgan@fhcrc.org and Lori Shepherd
## Not run:
# At release time get a list of new or removed or deprecated packages
# get new packages in release 3.7 that are not in 3.6
newSoft = getPackageTitles()
# get removed packages from 3.6
rmSoft = getPackageTitles(currBranch="RELEASE_3_7", status="removed")
# get depreacted package for 3.7
deprecatedSoft = setdiff(getPackageTitles(status="removed"), rmSoft)
# repeated above for data-experiment packages
newData = getPackageTitles(manifest="data-experiment.txt")
rmData = getPackageTitles(currBranch="RELEASE_3_7", manifest="data-experiment.txt", status="removed")
deprecatedData = setdiff(getPackageTitles(manifest="data-experiment.txt", status="removed"), rmData)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.