R/readSeqJShen.R

Defines functions readSeqJShen

Documented in readSeqJShen

readSeqJShen <-
function(filename) {
	## We do not know if the two reads have chromosome match; one read missing
	seqMatch = read.table(filename, as.is=TRUE)
	seqChr = factor(seqMatch[,1])
	seqPos = seqMatch[,2]
	rm(seqMatch)
	return(list(seqF=seqPos, seqChr=seqChr))
}

Try the SeqCNVCBS package in your browser

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

SeqCNVCBS documentation built on May 2, 2019, 6:51 p.m.