Learn R Programming

glyparse (version 0.5.5)

parse_wurcs: Parse WURCS Structures

Description

This function parses WURCS strings into a glyrepr::glycan_structure(). Currently, only WURCS 2.0 is supported. For more information about WURCS, see WURCS.

Usage

parse_wurcs(x)

Value

A glyrepr::glycan_structure() object.

Arguments

x

A character vector of WURCS strings. NA values are allowed and will be returned as NA structures.

Examples

Run this code
wurcs <- paste0(
  "WURCS=2.0/3,5,4/",
  "[a2122h-1b_1-5_2*NCC/3=O][a1122h-1b_1-5][a1122h-1a_1-5]/",
  "1-1-2-3-3/a4-b1_b4-c1_c3-d1_c6-e1"
)
parse_wurcs(wurcs)

Run the code above in your browser using DataLab