Infer the signaling activity of over 1000 secreted proteins from gene expression profiles.
Usage
SecAct.activity.inference(
inputProfile,
inputProfile_control = NULL,
is.differential = FALSE,
is.paired = FALSE,
is.singleSampleLevel = FALSE,
sigMatrix = "SecAct",
is.filter.sig = FALSE,
is.group.sig = TRUE,
is.group.cor = 0.9,
lambda = 5e+05,
nrand = 1000
)Arguments
- inputProfile
Gene expression matrix with gene symbol (row) x sample (column).
- inputProfile_control
Gene expression matrix with gene symbol (row) x sample (column).
- is.differential
A logical flag indicating whether inputProfile has been differential profiles against the control (Default: FALSE).
- is.paired
A logical flag indicating whether you want a paired operation of differential profiles between inputProfile and inputProfile_control if samples in inputProfile and inputProfile_control are paired (Default: FALSE).
- is.singleSampleLevel
A logical flag indicating whether to calculate activity change for each single sample between inputProfile and inputProfile_control (Default: FALSE). If FALSE, calculate the overall activity change between two phenotypes .
- sigMatrix
Secreted protein signature matrix. Default: SecAct.
- is.filter.sig
A logical flag indicating whether to filter the secreted protein signatures based on the genes from inputProfile (Default: FALSE). Because some sequencing platforms (e.g., CosMx) cover only a subset of secreted proteins, setting this option to TRUE restricts the activity inference on those proteins.
- is.group.sig
A logical flag indicating whether to group similar signatures (Default: TRUE). Many secreted proteins, such as cytokines with similar cell surface receptors and downstream pathways, have cellular effects that appear redundant within a cellular context. When enabled, this option clusters secreted proteins based on Pearson correlations among their composite signatures. The output still reports activity estimates for all secreted proteins prior to clustering. Secreted proteins assigned to the same non-redundant cluster share the same inferred activity.
- is.group.cor
A numeric value specifying the correlation cutoff used to define similar signatures (Default: 0.90). When r > 0.90, 1,170 secreted protein signatures are grouped into 657 non-redundant signature groups.
- lambda
Penalty factor in the ridge regression.
- nrand
Number of randomization in the permutation test, with a default value of 1000.