Partek Flow Documentation

Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Absolute value
    TXsf = | Xsf | 
  • Add
    TXsf = Xsf + C  
    a constant value C needs to be specified 
  • Antilog
    TXsf = bxsf
    A log base value b needs to be specified from the drop-down list; any positive number can be specified when Custom value is chosen 
  • Divided by
    When mean, median, Q1, Q3, std dev, or sum is selected, the corresponding statistics will be calculated based on the transform on sample or features option
    Example: If transform on Samples is selected, Divide by mean is calculated as:
    TXsf = Xsf/Ms
    where Ms is the mean of the sample.
    Example: If transform on Features is selected, Divide by mean is calculated as:
    TXsf = Xsf/Mf
    where Mf is the mean of the feature. 
  • Log
    TXsf = logbXsf
    A log base value b needs to be specified from the drop-down list; any positive number can be specified when Custom value is chosen

  • Logit
    TXsf=logb(Xsf/(1-Xsf))
    A log base value b needs to be specified from the drop-down list; any positive number can be specified when Custom value is chosen 
  • Lower bound
    A constant value C needs to be specified,
    if Xsf is smaller than C, then TXsf= C; otherwise, TXsf = Xsf 
  • Multiply by
    TXsf = Xsf x C
    A constant value C needs to be specified

  • Quantile normalization, a rank based normalization method.
    For instance, if transformation is performed on samples, it first ranks all the features in each sample.  Say vector Vs is the sorted feature values of sample S in ascending order, it calculates a vector that is the average of the sorted vectors across all samples --- Vm, then the values in Vs is replaced by the value in Vm in the same rank. Detailed information can be found in [1].

  • RPKM (Reads per kilobase of transcript per million mapped reads [2])
    TXsf = (109 * Xsf)/(TMRs*Lf)
    Where Xsf is the raw read of sample S on feature F,
    TMRs is the total mapped reads of sample S,
    Lf is the length of the feature F,

    If quantification is performed on an aligned reads data node, total mapped reads is the aligned reads. If quantification is generated from imported read count text file, the total mapped reads is the sum of all feature reads in the sample.
    If the feature is a transcript, transcript length Lf is the sum of the lengths of all the exons. If the feature is a gene, gene length is the distance between the start position of the most downstream exon and the stop position of the most upstream exon. See Bullard et al. for additional comparisons with other normalization packages [3]

    For paired reads, the Normalization option will show up as FPKM (Fragments per kilobase per million mapped reads).
  • Subtract
    When mean, median, Q1, Q3, std dev or sum is selected, the corresponding statistics will be calculated based on the transform on sample or features option
    Example: If transform on Samples is selected, Subtract mean is calculated as:
    TXsf = Xsf - Ms
    where Ms is the mean of the sample
    Example: If transform on Features is selected, Subtract mean is calculated as:
    TXsf = Xsf - Mf
    where  Mf is the mean of the feature 
  • TMM (Trimmed mean of M-values)
    The scaling factors is produced according to the algorithm described in Robinson et al [4]. The paper by Dillies et al. [5] contains evidence that TMM has an edge over other normalization methods.

  • TPM (Transcripts per million as described in Wagner et al [6])
    The following steps are performed:

...