This function adds variables to the product of combineTCR(),
or combineBCR() to be used in later visualizations.
For each element, the function will add a column (labeled by
variable.name) with the variable. The length of the
variables parameter needs to match the length of the
combined object.
Arguments
- input.data
The product of
combineTCR()orcombineBCR().- variable.name
A character string that defines the new variable to add.
- variables
A character vector defining the desired column value for each list element. Must match the length of the product of
combineTCR()orcombineBCR().
Examples
combined <- combineTCR(contig_list,
samples = c("P17B", "P17L", "P18B", "P18L",
"P19B","P19L", "P20B", "P20L"))
combined <- addVariable(combined,
variable.name = "Type",
variables = rep(c("B", "L"), 4))