Skip to contents

The goal of glyread is to read and process quantification results from common glycomics and glycoproteomics software, such as Byonic, StrucGP, or pGlyco, and convert them into a glyexp_experiment object (from the glyexp package) for further analysis.

Installation

You can install the development version of glyread from GitHub with:

# install.packages("pak")
pak::pak("glycoverse/glyread")

Example

Used pGlyco3 and pGlycoQuant for glycopeptide identification and quantification? Try read_pglyco3_pglycoquant()!

library(glyread)

exp <- read_pglyco3_pglycoquant(
  "path/to/pGlyco3-pGlycoQuant/result/Quant.spectra.list",
  sample_info = "path/to/sample_info.csv",
  quant_method = "label-free",
  glycan_type = "N"
)