Signac (version 0.2.4)

CreateMotifObject: CreateMotifObject

Description

Create an object of class Motif

Usage

CreateMotifObject(
  data = NULL,
  pwm = NULL,
  motif.names = 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 data. Can be of class PFMatrixList.

motif.names

A named list of motif names. List element names must match the names given in pwm. If NULL, use the names from the list of position weight or position frequency matrices. This can be used to set a alternative common name for the motif. If a PFMatrixList is passed to pwm, it will pull the motif name from the PFMatrixList.

meta.data

A data.frame containing metadata

Value

Returns a Motif object

Examples

Run this code
# NOT RUN {
motif.matrix <- matrix(data = sample(c(0,1), size = 100, replace = TRUE), ncol = 5)
motif <- CreateMotifObject(data = motif.matrix)
# }

Run the code above in your browser using DataLab