-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
73 lines (54 loc) · 2.96 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# hrm
<!-- badges: start -->
[![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/)
<!-- badges: end -->
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()
```