| CreateMotifObject {Signac} | R Documentation | 
Create motif object
Description
Create a Motif-class object.
Usage
CreateMotifObject(
  data = NULL,
  pwm = NULL,
  motif.names = NULL,
  positions = NULL,
  meta.data = NULL
)
Arguments
data | 
 A motif x region matrix  | 
pwm | 
 A named list of position weight matrices or position frequency
matrices matching the motif names in   | 
motif.names | 
 A named list of motif names. List element names
must match the names given in   | 
positions | 
 A   | 
meta.data | 
 A data.frame containing metadata  | 
Value
Returns a Motif object
Examples
motif.matrix <- matrix(
  data = sample(c(0,1),
    size = 100,
    replace = TRUE),
  ncol = 5
)
motif <- CreateMotifObject(data = motif.matrix)
[Package Signac version 1.13.0 Index]