R/VLF.count.pos.R

Defines functions VLF.count.pos

Documented in VLF.count.pos

VLF.count.pos <-
function(freq, p,seqlength){
	count <- mat.or.vec(nr = 1, nc = seqlength)
	for(i in 1:seqlength){
		count[i] = length(which(freq[,i] < p))
	}
	return(count)
}

Try the VLF package in your browser

Any scripts or data that you put into this service are public.

VLF documentation built on Aug. 18, 2022, 5:06 p.m.