-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.Rmd
72 lines (51 loc) · 2.23 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
---
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%",
dpi = 300,
message = FALSE
)
```
# isoorbi <a href='https://isoorbi.isoverse.org/'> <img src="inst/www/logo.png" align="right" height="138" /> </a>
<!-- badges: start -->
[![Documentation](https://img.shields.io/badge/docs-online-green.svg)](https://isoorbi.isoverse.org/)
[![R-CMD-check](https://github.com/isoverse/isoorbi/workflows/R-CMD-check/badge.svg)](https://github.com/isoverse/isoorbi/actions)
[![codecov](https://codecov.io/gh/isoverse/isoorbi/branch/main/graph/badge.svg?token=SN0YDIJ6Y6)](https://app.codecov.io/gh/isoverse/isoorbi)
[![CRAN status](https://www.r-pkg.org/badges/version/isoorbi)](https://CRAN.R-project.org/package=isoorbi)
<!-- badges: end -->
## Overview
The goal of the isoorbi R package is to help you process isotopocule measurements from an **Orbitrap Isotope Solutions** mass spectrometer. It expects <code>.isox</code> files created by IsoX as input.
## Installation
You can install the current CRAN version of `isoorbi` with:
```{r, eval = FALSE}
install.packages("isoorbi")
```
To use the latest updates, you can install the development version of `isoorbi` from [GitHub](https://github.com/) with:
```{r, eval = FALSE}
if(!requireNamespace("devtools", quietly = TRUE)) install.packages("devtools")
devtools::install_github("isoverse/isoorbi")
```
## Show me some code
```{r "example"}
library(isoorbi)
system.file(package = "isoorbi", "extdata", "testfile_flow.isox") |>
orbi_read_isox() |>
orbi_flag_satellite_peaks() |>
orbi_define_basepeak(basepeak_def = "M0")|>
orbi_summarize_results(ratio_method = "sum") |>
orbi_export_data_to_excel(file = "data_summary.xlsx")
```
```{r, include = FALSE}
unlink("data_summary.xlsx")
```
## Package layout
![](man/figures/figure_flowchart.png){width=60%}
## Getting help
If you encounter a bug, please file an issue with a minimal reproducible example on [GitHub](https://github.com/isoverse/isoorbi/issues).
For questions and other discussion, please use the [isoorbi slack workspace](https://isoorbi.slack.com).