githubURLParts {BiocPkgTools} | R Documentation |
Extract github user and repo name from github URL
githubURLParts(urls)
urls |
a |
a data.frame
with four columns:
urlThe original github URL
user_repoThe github "username/repo", combined
userThe github username
repoThe github repo name
# find github URL details for # Bioc packages bpkgl = biocPkgList() urldetails = githubURLParts(bpkgl$URL) urldetails = urldetails[!is.na(urldetails$url),] head(urldetails)