Changes between Initial Version and Version 1 of se.lu.onk.ZTest


Ignore:
Timestamp:
May 29, 2007, 11:59:08 AM (17 years ago)
Author:
Jari Häkkinen
Comment:

Renaming onk.lu.se.ZTest

Legend:

Unmodified
Added
Removed
Modified
  • se.lu.onk.ZTest

    v1 v1  
     1= One class Z-Test =
     2Uses a z-test to rank genes based on probability for being differentially expressed (DE). Work on bioassays representing two-colour hybridizations equivalent to treated vs. control. Assumes that all the bioassays in the bioassayset are biological replicates.
     3
     4== Calculations ==
     5
     6Equation 1 – Z-score[[BR]]
     7[[Image(zscore.png)]][[BR]]
     8where:
     9 * x is the raw score[[BR]]
     10 * µ is the mean of the population[[BR]]
     11 * σ is the standard deviation of the population.[[BR]]
     12
     13In statistics, a Z-score is a dimensionless quantity derived by subtracting the population mean from an individual (raw) score and then dividing the difference by the population standard deviation. The z score reveals how many units a case is above or below the mean. The z score allows us to compare the results of different normal distributions, something done with frequent research.
     14
     15Equation 2 - Normsdist[[BR]]
     16[[Image(normsdist.png)]][[BR]]
     17
     18Normsdist returns the probability that the observed value of a standard normal random variable will be less than or equal to z. A standard normal random variable has mean 0 and standard deviation 1 (and also variance 1 because variance = standard deviation squared).
     19
     20Equation 3 - Probability[[BR]]
     21[[Image(probability.png)]][[BR]]
     22
     23A 2-sided z-test witch corresponds to the probability for a value x where the null hypothesis is that the value is non-differentially expressed (NDE), i.e. a value with low probability is less likely to be NDE.
     24
     25== Population ==
     26
     27The population for a specific reporter is represented by all the assays in the bioassayset with a valid M for that reporter. The standard deviation and mean for the population are pooled from the assays. The mean is an average of the means from the assays and the standard deviation is calculated using the equation below.
     28
     29Equation 4 – Pooled standard deviation[[BR]]
     30[[Image(poolSD.png)]][[BR]]
     31where:
     32 * σ is the pooled standard deviation
     33 * σ’ is the standard deviation from an assay
     34 * n is the number of assays
     35
     36== The plug-in ==
     37
     38The plug-in imports a matrix basefile merged on reporter containing reporter and M. For each reporter the plug-in shall calculate:
     39 * The probability, p, based on equation 3 and rank every reporter where rank 1 corresponds to smallest p.
     40 * The number or expected reporters, i.e. the probability * number of reporters.
     41 * The ratio between expected and observed number of reporters, i.e. number of reporters / rank
     42
     43=== Output ===
     44 * A table where each row is a reporter and with column; reporter, M, p, rank, number or expected reporters and ratio between expected and observed.
     45 * Create three plots: “Nmbr vs. Rank”, “nmbrE/Rank vs. Rank”, and a combination of the two.
     46   * Nmbr vs. Rank: A plot with X-values corresponding to Rank. The X-axis is on log scale. Two series of Y-values is plotted; one series with rank (Red line) and one series with number or expected reporters (Blue line).
     47   * nmbrE/Rank vs. Rank: A plot with X-values corresponding to Rank. The X-axis is on log scale. Y-values correspond to ratio between expected and observed.
     48   * A combination plot with two Y-axis containing all three series from plot a and b. Rank (Red line) and number or expected reporters (Blue line) are plotted on one Y-axis and ratio between expected and observed (Black line) is plotted on the other.
     49
     50----
     51
     52[[TicketQuery(component=se.lu.onk.ztest&group=status)]]