diagnosticPlots: Diagnostic plots to explore seqVsInsitu results

Description Usage Arguments Value Examples

View source: R/diagnosticPlots.R

Description

Accepts the result of seqVsInsitu and iterating_seqVsInsitu and produces diagnostic plots. If the sequencing data fits to one or more terms or combinations of terms, then the scatterplot will cluster into foci. As the number of combined terms is increased the foci merge into fewer groups. A diagonal in the scatterplot is a sign of error.

Usage

1
diagnosticPlots(seqVsInsitu_results)

Arguments

seqVsInsitu_results

Value of seqVsInsitu or iterating_seqVsInsitu.

Value

None.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
fpath <- system.file("extdata", "vncMedianCoverage.tsv", package="cellOrigins")
vncExpression <- read.delim(file = fpath, header=FALSE, as.is=TRUE)

expression <- vncExpression$V2
names(expression) <- vncExpression$V1

result <- seqVsInsitu(expression, depth=1)
diagnosticPlots(result)

## Not run: 
oracleResponse <- iterating_seqVsInsitu(expression, 3)
diagnosticPlots(oracleResponse)

## End(Not run)

cellOrigins documentation built on July 1, 2020, 8:44 p.m.