nbline: Number & Brightness (Single Image)

Description Usage Arguments Details Value Author(s) See Also Examples

View source: R/nbline.R

Description

Performs the Number and Brightness Analysis (N&B) on an image

Usage

1
nbline(img, sigma0 = 0, offset = 0, S = 1, w = 0)

Arguments

img

The image to analyze.

sigma0

Variance of the optical system readout noise

offset

Constant number that depends on the optical system configuration. Signal values smaller that the offset should be considered zero.

S

Proportionality factor S. Indicates the ratio between the amount inicident photons in the detector and those converted to an electronic signal.

w

Time window at which the running average is calculated

Details

The Number and Brightness (N&B) method is a time-independent technique that provides an estimate of molecular concentration and aggregation state (or stoichiometry), based on the statistical moments of the fluorescence intensity fluctuations. In other words, this tool allows to distinguish between two or more homo-oligomeric states of a molecule present in a given region in the sample (Brightness) while also providing a direct indicator of the molecules relative abundance (Number). The intensity of the fluorescence signal is mostly due to the mere presence of fluorophores in the media, affected by the fluorophore quantum yield, the sensitivity of the detector and the photophysical characteristics of the optical instrumentation. The average particle number and brightness are calculated directly from the mean value <k> and variance (sigma^2) of the fluorescence intensity data (image) for a given pixel as follows: N = (<k>^2)/(sigma^2) and B = (sigma^2)/<k>

Value

A list containing two vectors, the Brightness and the Number of the image.

Author(s)

Raúl Pinto Cámara.

See Also

var, mean

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
### Load the FCSlib package

library(FCSlib)

# As an example, we will use a data set that corresponds
# to a population of Venus dimers and hexamers diffusing in HEK-293 cells.
# Use the readFileTiff() function to extract the information from the '.tiff' files.

nbv2 <- nbline(V2)
pixelSize = 0.05
r<- (1:dim(V2)[1])*pixelSize

FCSlib documentation built on Nov. 27, 2020, 5:09 p.m.

Related to nbline in FCSlib...