-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.Rmd
49 lines (35 loc) · 1.63 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
---
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%"
)
```
# analyzeGC
<!-- badges: start -->
<!-- badges: end -->
This package was built for educational and research purposes in the field of chemical ecology.
The objective was to provide a tool set for using R to analyze GC, and in particular GC-MS (GC coupled with Mass-spectrometry) data, to establish a standardized and reproducible workflow.
As I mainly work with cuticular hydrocarbons (CHCs) the workflow implied within the package was designed considering that specific type of data.
However, the workflow it suggests and most of the functions can be used for analyzing other types of chemical ecology GC data.
The package relies on the [GCalignR](https://github.com/mottensmann/GCalignR) package for the alignment of GC peaks data across samples, based on the retention time of the peaks.
A wrapper around the `GCalignR::align_chromatograms` is defined within the package for this purpose.
The rest of the functions of the package are oriented to aid the further correction of the peaks alignment, and preparation of the data for its statistical analysis within R.
## Installation
You can install the development version of analyzeGC from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("dsrodriguezl/analyzeGC"
, dependencies = TRUE
, build_vignettes = TRUE)
```
## Get started
To get started read the vignettes:
```r
browseVignettes("analyzeGC")
```