kfold.MATCH: MATCH training process

Description Usage Arguments Value Author(s) References See Also Examples

View source: R/kfold.MATCH.R

Description

For a vector of Core cut values this function calculates returns a matrix of Similarities and labels indicating if a sequence position is a binding site or not. To calculate the Similartiy a leave-one-out cross training model is used. With the utput of this function a ROC curve can be calculated for each Core Similarity and the results can be compared.

Usage

1
kfold.MATCH(iicc, Seqin)

Arguments

iicc

List of options described in the MEET program

Seqin

DNA sequence

Value

For each num

Author(s)

Erola Pairo <epairo@ibecbarcelona.eu>

References

A.E. Kel , E. Gossling , I. Reuter , E. Cheremushkin , O.V. Kel-Margoulis , and E. Wingender MATCHTM: a tool for searching transcription factor binding sites in DNA sequences Nucl. Acids Res. 31: 3576.

See Also

Match, MEET

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
data(iicc)
data(TranscriptionFactor)
iicc$method<-"MATCH"

iicc$vector<-c(0.5, 0.8)
library(seqinr)
#writing sequences to model in fasta format
write.fasta <- get("write.fasta",pos="package:seqinr")
write.fasta(sequences=TranscriptionFactor,names=c(1:length(TranscriptionFactor)),file.out="Sq.fa",open="w") 
kfold.MATCH(iicc, "Sq.fa")

MEET documentation built on May 2, 2019, 5:52 p.m.