Changes in version 0.6.0 (2026-04-29) New features - Add a on_failure parameter to all parser functions. When on_failure = "error", the parser will throw an error when it encounters an unparsable string. When on_failure = "na", the parser will return NA for unparsable strings. The default is "error", for backwards compatibility. Changes in version 0.5.7 (2026-03-14) Minor improvements and bug fixes - parse_iupac_extended() now accepts input with plain text equivalents ("alpha", "beta", "->"). (#10) Changes in version 0.5.6 (2026-02-24) Minor improvements and bug fixes - Parser functions are now significantly faster (10-30x) for large inputs. - Replaced deprecated dplyr::case_match() with dplyr::recode_values() in parsers to prevent warnings. Changes in version 0.5.5 (2026-02-04) Minor improvements and bug fixes - All parser functions now preserve names of input character vectors. - All parser functions now supports NA values in the input character vectors. Changes in version 0.5.4 (2026-01-27) Minor improvements and fixes - Adapt to glyrepr 0.10.0. Changes in version 0.5.3 (2025-11-04) Minor improvements and fixes - Prepare for release on CRAN. Changes in version 0.5.2 Minor improvements and fixes - glyaprse now depends on the CRAN version of glyrepr. Changes in version 0.5.1 Minor improvements and fixes - parse_iupac_extended() and parse_iupac_short() now support generic monosaccharides, e.g. "Hex", "HexNAc", "HexN". Changes in version 0.5.0 New features - Add parse_linear_code() to parse Linear Code strings. - auto_parse() now supports Linear Code strings. Minor improvements and fixes - Revise the documentations of all parsers to be more accurate about return value type. Changes in version 0.4.5 Minor improvements and fixes - Fix the bug that linkages like "1→3/4" cannot be parsed by parse_iupac_extended(). - Fix the bug that linkages like "b1-a3|a4" cannot be parsed by parse_wurcs(). - Fix the bug that linkages like "a3/4" cannot be parsed by parse_iupac_short(). - Fix the bug that linkages like "3:3o(3|6+1)4d" cannot be parsed by parse_glycoct(). Changes in version 0.4.4 Minor improvements and bug fixes - Update dependencies to depend on release versions of glycoverse packages. Changes in version 0.4.3 Minor improvements and fixes - Fix bugs introduced by the breaking changes in glyrepr v0.7.0. Changes in version 0.4.2 Minor improvements and fixes - Fix some incorrect structure strings in vignettes. Changes in version 0.4.1 Minor improvements and fixes - Fix some incorrect structure strings in tests and documentations. - Remove some legacy documentations. Changes in version 0.4.0 Breaking changes - parse_iupac_condensed() and parse_iupac_short() now require the reducing-end monosaccharide to have anomer information. For example, "Neu5Ac(a2-" and "Neu5Aca-" are valid, but "Neu5Ac" is not. Changes in version 0.3.1 Minor improvements and fixes - parse_pglyco_struc() now support "aH" and "pH" monosaccharides. Changes in version 0.3.0 New features - Add auto_parse() to automatically detect and parse different glycan structure string formats. Minor improvements and fixes - Better error messages. Before: > parse_iupac_condensed("bad_glycan") Error in `purrr::map()` at glyparse/R/struc-parser-wrapper.R:13:3: ℹ In index: 1. Caused by error in `value[[3L]]()`: ! Could not parse IUPAC-condensed string: {.val {x}} ℹ Invalid characters or format in IUPAC-condensed string Run `rlang::last_trace()` to see where the error occurred. Now: > parse_iupac_condensed("bad_glycan") Error in `parse_iupac_condensed()`: ! Can't parse: "bad_glycan" Run `rlang::last_trace()` to see where the error occurred. Changes in version 0.2.1 Minor improvements and fixes - Update README. - A "Get Started" vignette is added. Changes in version 0.2.0 Major improvements - Add parse_glycoct() to parse glycans in GlycoCT format. Changes in version 0.1.2 Minor improvements - parse_iupac_short(), parse_iupac_extended(), parse_iupac_condensed(), parse_wurcs() now support multiple substituents on the same monosaccharide, to align with the updates in glyrepr v0.5.0.