R/diffHicUsersGuide.R

Defines functions diffHicUsersGuide

Documented in diffHicUsersGuide

diffHicUsersGuide <- function(view=TRUE)
# Find, and optionally show, the diffHic user's guide 
# 
# written by Aaron Lun, based on equivalent from edgeR by Gordon Smyth
# 7 November 2014.
{
	ugloc <- system.file("doc", "diffHicUsersGuide.pdf", package="diffHic")
	if (view) {
		if(.Platform$OS.type == "windows") {
			shell.exec(ugloc)
		} else {
			system(paste(Sys.getenv("R_PDFVIEWER"),ugloc,"&"))
		}
	}
	return(ugloc)
}

Try the diffHic package in your browser

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

diffHic documentation built on Nov. 8, 2020, 6:02 p.m.