Science Score: 49.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 6 DOI reference(s) in README -
✓Academic publication links
Links to: zenodo.org -
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (11.7%) to scientific vocabulary
Keywords
Keywords from Contributors
Repository
R Interface to MELTING 5
Basic Info
- Host: GitHub
- Owner: aravind-j
- Language: R
- Default Branch: master
- Homepage: https://aravind-j.github.io/rmelting/
- Size: 7.14 MB
Statistics
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 2
- Releases: 0
Topics
Metadata Files
README.Rmd
---
output: rmarkdown::github_document
---
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "",
fig.path = "inst/extdata/"
)
```
## `rmelting`: R Interface to MELTING 5
```{r,echo = FALSE, message = FALSE}
devtools::load_all(".")
```
###### Version : [`r getNamespaceVersion("rmelting")`](https://aravind-j.github.io/rmelting/); License: [GPL-2|GPL-3](https://www.r-project.org/Licenses/)
##### *Aravind, J.^1^ and Krishna, G. K.^2^*
1. Division of Germplasm Conservation, ICAR-National Bureau of Plant Genetic Resources, New Delhi
2. Division of Crop Physiology, ICAR-Indian Agricultural Research Institute, New Delhi
***
[](https://cran.r-project.org/)
[](https://www.gnu.org/licenses/gpl-3.0)
```{r, results='asis', echo=FALSE}
dver <- ifelse(test = as.numeric(gsub("(.\\.)(\\d+)(\\..)", "\\2", getNamespaceVersion("rmelting"))) %% 2 != 0, yes = getNamespaceVersion("rmelting"), no = gsub("Version:\\s*", "", readLines(paste0("https://raw.githubusercontent.com/", "aravind-j/rmelting", "/master/DESCRIPTION"))[grep("Version:", readLines(paste0("https://raw.githubusercontent.com/", "aravind-j/rmelting", "/master/DESCRIPTION")))]))
cat(paste("[](https://github.com/aravind-j/rmelting)", sep = ""))
```
[](https://github.com/aravind-j/rmelting)
[](https://github.com/aravind-j/rmelting/actions/workflows/check-bioc.yml)
[](https://www.repostatus.org/#active)
[](https://lifecycle.r-lib.org/articles/stages.html#stable)
[)`-yellowgreen.svg)](/commits/master)
[](https://aravind-j.github.io/rmelting/)
[](https://github.com/aravind-j/google-analytics-beacon)
***
## Description
`r gsub("\\n", " ", packageDescription("rmelting", fields = "Description"))`
## Installation
The package can be installed from Bioconductor as follows.
```{r, eval=FALSE}
if (!"BiocManager" %in% rownames(installed.packages()))
install.packages("BiocManager")
BiocManager::install("rmelting")
```
The development version can be installed from github as follows.
```{r, eval=FALSE}
if (!require('devtools')) install.packages('devtools')
devtools::install_github("aravind-j/rmelting")
```
## Detailed tutorial
For a detailed tutorial on how to used this package type:
```{r, eval=FALSE}
browseVignettes(package = 'rmelting')
```
## What's new
To know whats new in this version type:
```{r, eval=FALSE}
news(package='rmelting')
```
## Links
[Bioconductor page](https://doi.org/doi:10.18129/B9.bioc.rmelting)
[Github page](https://github.com/aravind-j/rmelting)
[Documentation website](https://aravind-j.github.io/rmelting/)
## Bioconductor checks and metrics
```{r, results='asis', echo=FALSE, warning=FALSE}
pkg <- "rmelting"
pkgr <- "missing"
pkgd <- "missing"
page <- httr::GET("https://www.bioconductor.org/install/")
page <- httr::content(page, as = 'text', encoding = "UTF-8")
bcr <- sub('.*(The current release of Bioconductor is version\n.*?;).*', '\\1', page)
bcd <- sub('.*(
The development version of Bioconductor is version\n.*?;).*', '\\1', page)
bcr <- gsub(".*\n(.+);$", "\\1", bcr)
bcd <- gsub(".*\n(.+);$", "\\1", bcd)
rpr <- as.data.frame(available.packages(repos = paste("https://bioconductor.org/packages/",
bcr, "/bioc", sep = "")))
rpd <- as.data.frame(available.packages(repos = paste("https://bioconductor.org/packages/",
bcd, "/bioc", sep = "")))
pkgr <- rpr[rpr$Package == "rmelting", ]$Version
pkgd <- rpd[rpd$Package == "rmelting", ]$Version
colr <- ifelse(pkgr == "missing", "lightgrey", "brightgreen")
cold <- ifelse(pkgd == "missing", "lightgrey", "orange")
bcr_badge <- paste0("https://img.shields.io/badge/",
"Bioconductor%20release", "-", bcr, "-", colr, ".svg")
bcd_badge <- paste0("https://img.shields.io/badge/",
"Bioconductor%20devel", "-", bcd, "-", cold, ".svg")
pkgr_badge <- paste0("https://img.shields.io/badge/",
"BioC%20release", "-", pkgr, "-", colr, ".svg")
pkgd_badge <- paste0("https://img.shields.io/badge/",
"BioC%20devel", "-", pkgd, "-", cold, ".svg")
badgedf1 <- rbind(c(name = "Bioc release version",
svg = bcr_badge,
link = "https://bioconductor.org/install/"),
c(name = "Pkg Bioc release version",
svg = pkgr_badge,
link = "https://bioconductor.org/packages/release/bioc/html/rmelting.html"),
c(name = "in Bioc release",
svg = "https://bioconductor.org/shields/years-in-bioc/rmelting.svg",
link = "https://bioconductor.org/packages/release/bioc/html/rmelting.html#since"),
c(name = "Bioc release status",
svg = "https://bioconductor.org/shields/build/release/bioc/rmelting.svg",
link = "http://bioconductor.org/checkResults/release/bioc-LATEST/rmelting/"),
c(name = "Bioc Download rank",
svg = "https://bioconductor.org/shields/downloads/release/rmelting.svg",
link = "http://bioconductor.org/packages/stats/bioc/rmelting/"))
badgedf2 <- rbind(c(name = "Bioc devel version",
svg = bcd_badge,
link = "https://bioconductor.org/install/"),
c(name = "Pkg Bioc devel version",
svg = pkgd_badge,
link = "https://bioconductor.org/packages/devel/bioc/html/rmelting.html"),
c(name = "in Bioc devel",
svg = "https://bioconductor.org/shields/years-in-bioc/rmelting.svg",
link = "https://bioconductor.org/packages/devel/bioc/html/rmelting.html#since"),
c(name = "Bioc devel status",
svg = "https://bioconductor.org/shields/build/devel/bioc/rmelting.svg",
link = "http://bioconductor.org/checkResults/devel/bioc-LATEST/rmelting/"),
c(name = "Bioc Download rank",
svg = "https://bioconductor.org/shields/downloads/devel/rmelting.svg",
link = "http://bioconductor.org/packages/stats/bioc/rmelting/"))
badgedf1 <- as.data.frame(badgedf1)
badgedf2 <- as.data.frame(badgedf2)
badgedf <- rbind(paste("[](", badgedf1$link, ")"),
paste("[](", badgedf2$link, ")"))
knitr::kable(badgedf, col.names = NULL, format = "html")
```
## Citing `rmelting`
To cite the methods in the package use:
```{r, eval = FALSE}
citation("rmelting")
```
```{r, echo = FALSE}
detach("package:rmelting", unload=TRUE)
suppressPackageStartupMessages(library(rmelting))
cit <- citation("rmelting")
# yr <- format(Sys.Date(), "%Y")
# cit[1]$year <- yr
# oc <- class(cit)
#
# cit <- unclass(cit)
# attr(cit[[1]],"textVersion") <- gsub("\\(\\)",
# paste("\\(", yr, "\\)", sep = ""),
# attr(cit[[1]],"textVersion"))
# class(cit) <- oc
cit
```
Owner
- Name: J. Aravind
- Login: aravind-j
- Kind: user
- Location: New Delhi, India
- Website: https://aravind-j.github.io/R-packages-gallery/
- Repositories: 11
- Profile: https://github.com/aravind-j
Scientist, Division of Germplasm Conservation, ICAR-National Bureau of Plant Genetic Resources
GitHub Events
Total
- Fork event: 1
Last Year
- Fork event: 1
Committers
Last synced: 8 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| J. Aravind | a****i@g****m | 178 |
| Nitesh Turaga | n****a@g****m | 14 |
| GitHub Actions | a****s@g****m | 5 |
| Hervé Pagès | h****s@f****g | 2 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 3
- Total pull requests: 0
- Average time to close issues: about 1 month
- Average time to close pull requests: N/A
- Total issue authors: 3
- Total pull request authors: 0
- Average comments per issue: 1.67
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- francoiskroll (1)
- gwenncini (1)
- milamkk (1)
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- bioconductor 10,760 total
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 5
- Total maintainers: 1
bioconductor.org: rmelting
R Interface to MELTING 5
- Homepage: https://github.com/aravind-j/rmelting https://aravind-j.github.io/rmelting/
- Documentation: https://bioconductor.org/packages/release/bioc/vignettes/rmelting/inst/doc/rmelting.pdf
- License: GPL-2 | GPL-3
-
Latest release: 1.24.0
published 11 months ago