pneuvial / c3co

Inferring cancer cell clonality from copy-number data
5 stars 1 forks source link

NOTATION: Rename slot 'S' and 'S0' of 'posFused' to 'Z' and 'Z0' #48

Closed HenrikBengtsson closed 5 years ago

HenrikBengtsson commented 5 years ago
setClass(
    Class = "posFused",
    representation = representation(
        Y  = "list",        ## original signal
        S  = "list",        ## subclones (aka Z)
        S0 = "list",        ## initial estimates of subclones (aka Z0)
        W  = "matrix",      ## weights
        mu = "numeric",     ## intercept
        E  = "list",        ## signal reconstruction (aka Yhat)
        params  = "numeric",
        failure = "logical"
    )
)