rmelting

R Interface to MELTING 5

https://github.com/aravind-j/rmelting

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

bioconductor bioinformatics melting-temperature r

Keywords from Contributors

bioconductor-package image-analysis gene proteomics ontology
Last synced: 6 months ago · JSON representation

Repository

R Interface to MELTING 5

Basic Info
Statistics
  • Stars: 2
  • Watchers: 1
  • Forks: 1
  • Open Issues: 2
  • Releases: 0
Topics
bioconductor bioinformatics melting-temperature r
Created almost 8 years ago · Last pushed almost 3 years ago
Metadata Files
Readme Changelog

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 logo

```{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

***

[![minimal R version](https://img.shields.io/badge/R>%3D-3.6-6666ff.svg)](https://cran.r-project.org/)
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](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("[![develVersion](https://shields.io/badge/devel%20version-", dver, "-orange?logo=github&style=flat)](https://github.com/aravind-j/rmelting)", sep = ""))
```
[![Github Code Size](https://img.shields.io/github/languages/code-size/aravind-j/rmelting.svg)](https://github.com/aravind-j/rmelting)
[![R-CMD-check-bioc](https://github.com/aravind-j/rmelting/actions/workflows/check-bioc.yml/badge.svg)](https://github.com/aravind-j/rmelting/actions/workflows/check-bioc.yml)
[![Project Status: WIP](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
[![lifecycle](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
[![Last-changedate](https://img.shields.io/badge/last%20change-`r gsub('-', '--', Sys.Date())`-yellowgreen.svg)](/commits/master)
[![Website - pkgdown](https://img.shields.io/website-up-down-green-red/https/aravind-j.github.io/rmelting.svg)](https://aravind-j.github.io/rmelting/)
[![.](https://pro-pulsar-193905.appspot.com/UA-116683292-1/welcome-page)](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$name, "](", badgedf1$svg, ")](", badgedf1$link, ")"), paste("[![", badgedf2$name, "](", badgedf2$svg, ")](", 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

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

All Time
  • Total Commits: 199
  • Total Committers: 4
  • Avg Commits per committer: 49.75
  • Development Distribution Score (DDS): 0.106
Past Year
  • Commits: 0
  • Committers: 0
  • Avg Commits per committer: 0.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email 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
todo (1)
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

  • Versions: 5
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 10,760 Total
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 23.4%
Downloads: 70.1%
Maintainers (1)
Last synced: 6 months ago