R/readSeq.R

Defines functions readSeq

Documented in readSeq

readSeq <-
function(filename, formatName) {
	if(formatName=="ELANDPaired") {
		return(readSeqELANDPaired(filename))
	}
	else if(formatName=="Chiang") {
		return(readSeqChiang(filename))
	}
	else if(formatName=="MLove") {
		return(readSeqMLove(filename))
	}
	else if(formatName=="JShen") {
		return(readSeqJShen(filename))
	}
	else {
		print("Input Format Not Supported")
	}
}

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.