An open API service indexing awesome lists of open source software.

https://github.com/jasenfinch/hrm

Easily install, load and update R packages for high-resolution metabolomics analyses
https://github.com/jasenfinch/hrm

metabolomics-pipeline

Last synced: about 2 months ago
JSON representation

Easily install, load and update R packages for high-resolution metabolomics analyses

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```

# hrm

[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
[![R-CMD-check](https://github.com/jasenfinch/hrm/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/jasenfinch/hrm/actions/workflows/R-CMD-check.yaml)
[![Codecov test coverage](https://codecov.io/gh/jasenfinch/hrm/branch/master/graph/badge.svg)](https://app.codecov.io/gh/jasenfinch/hrm?branch=master)
[![GitHub release](https://img.shields.io/github/release/jasenfinch/hrm.svg)](https://GitHub.com/jasenfinch/hrm/releases/)

Easily install, load and update an R package ecosystem for performing analyses of high resolution metabolomics data.

`hrm` packages include:

* [metaboData](https://aberhrml.github.io/metaboData) - Example data sets for metabolomics analyses
* [grover](https://jasenfinch.github.io/grover) - Web API Framework for Mass Spectrometry Data Transfer
* [binneR](https://aberhrml.github.io/binneR) - Spectral Processing for High Resolution Flow Infusion Mass Spectrometry
* [metabolyseR](https://jasenfinch.github.io/metabolyseR) - A tool kit for pre-treatment, modelling, feature selection and correlation analyses of metabolomics data
* [profilePro](https://jasenfinch.github.io/profilePro) - Unified Input and Output for Processing of Metabolomic Profiling Experiments
* [mzAnnotation](https://aberhrml.github.io/mzAnnotation) - Tools for putative annotation of accurate m/z from electrospray ionisation mass spectrometry data
* [assignments](https://aberhrml.github.io/assignments) - Molecular formula assignment for high resolution ESI metabolomics
* [construction](https://jasenfinch.github.io/construction) - Consensus structural classifications for putative molecular formula assignments
* [riches](https://jasenfinch.github.io/riches) - Structural and functional enrichment for metabolomics data
* [metaboMisc](https://jasenfinch.github.io/metaboMisc) - A collection of miscellaneous helper and linker functions for metabolomics analyses
* [metaboWorkflows](https://jasenfinch.github.io/metaboWorkflows) - Workflow Project Templates for Metabolomics Analyses

## Installation

Install the `hrm` package from GitHub using:

```{r,eval=FALSE}
remotes::install_github('jasenfinch/hrm')
```

### Usage

Loading the `hrm` packages will load the included R packages.

```{r load}
library(hrm)
```

Alteratively, these packages can be loaded using the following, without loading the `hrm` package directly.

```{r load_alt,eval=FALSE}
hrm::hrmAttach()
```

A vector of the current `hrm` packages can be found by:

```{r packages}
hrmPackages()
```

`hrm` associated packages can be updated using:

```{r update,eval=FALSE}
hrmUpdate()
```