
Get Basic Derived Traits
basic_traits.Rd
These derived traits are the most basic and commonly used derived traits. They describe global properties of a glycome including the type of glycans, fucosylation level, sialylation level, galactosylation level, and branching level.
Details
The explanations of the derived traits are as follows:
TM
: Proportion of highmannose glycansTH
: Proportion of hybrid glycansTC
: Proportion of complex glycansMM
: Average number of mannoses within highmannose glycansCA2
: Proportion of bi-antennary glycans within complex glycansCA3
: Proportion of tri-antennary glycans within complex glycansCA4
: Proportion of tetra-antennary glycans within complex glycansTF
: Proportion of fucosylated glycansTFc
: Proportion of core-fucosylated glycansTFa
: Proportion of arm-fucosylated glycansTB
: Proportion of glycans with bisecting GlcNAcSG
: Average degree of sialylation per galactoseGA
: Average degree of galactosylation per antennaTS
: Proportion of sialylated glycans
Examples
basic_traits()
#> $TM
#> prop(Tp == "highmannose", na_action = "keep")
#>
#> $TH
#> prop(Tp == "hybrid", na_action = "keep")
#>
#> $TC
#> prop(Tp == "complex", na_action = "keep")
#>
#> $MM
#> wmean(nM, within = (Tp == "highmannose"), na_action = "keep")
#>
#> $CA2
#> prop(nA == 2, within = (Tp == "complex"), na_action = "keep")
#>
#> $CA3
#> prop(nA == 3, within = (Tp == "complex"), na_action = "keep")
#>
#> $CA4
#> prop(nA == 4, within = (Tp == "complex"), na_action = "keep")
#>
#> $TF
#> prop(nF > 0, na_action = "keep")
#>
#> $TFc
#> prop(nFc > 0, na_action = "keep")
#>
#> $TFa
#> prop(nFa > 0, na_action = "keep")
#>
#> $TB
#> prop(B, na_action = "keep")
#>
#> $SG
#> wmean(nS/nG, na_action = "keep")
#>
#> $GA
#> wmean(nG/nA, na_action = "keep")
#>
#> $TS
#> prop(nS > 0, na_action = "keep")
#>