viewMotifs: Print Identified Motifs

Description Usage Arguments Details Value Author(s) Examples

Description

This function return a list of the identified motifs contained in a motiv object.

Usage

1
2
	## S4 method for signature 'motiv'
viewMotifs(x,n=100)

Arguments

x

An object of class motiv (usualy provied by motifMatch).

n

The number of motifs shown.

Details

This function shows the number of identified motif.

Value

A list of motifs names.

Author(s)

Eloi Mercier <emercier@chibi.ubc.ca>

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#####Database and Scores#####
path <- system.file(package="MotIV")
jaspar <- readPWMfile(paste(path,"/extdata/jaspar2010.txt",sep=""))
jaspar.scores <- readDBScores(paste(path,"/extdata/jaspar2010_PCC_SWU.scores",sep=""))

#####Input#####
data(FOXA1_rGADEM)
motifs <- getPWM(gadem)
motifs.trimed <- lapply(motifs,trimPWMedge, threshold=1)

#####Analysis#####
foxa1.analysis.jaspar <- motifMatch(inputPWM=motifs,align="SWU",cc="PCC",database=jaspar,DBscores=jaspar.scores,top=5)
viewMotifs(foxa1.analysis.jaspar, 5)

alyst/MotIV documentation built on May 12, 2019, 2:33 a.m.