plotCoexpression       package:GeneRegionScan       R Documentation

_P_l_o_t _C_o_e_x_p_r_e_s_s_i_o_n _o_f _p_r_o_b_e_s _i_n _a _P_r_o_b_e_L_e_v_e_l_S_e_t

_D_e_s_c_r_i_p_t_i_o_n:

     Function that will investigate all possible pairings in a set of
     probes, calculate the Pearson correlation coefficient and plot
     them in a meaningful way

_U_s_a_g_e:

         plotCoexpression(object, gene, probeData=NULL, verbose=TRUE, directions="all", correlationCutoff=0.5,
         probeLevelInfo=c("probeid"))

_A_r_g_u_m_e_n_t_s:

  object: A ProbeLevelSet object or a regular ExpressionSet object (in
          which case a probeData argument is required). See
          getLocalProbeIntensities and related functions on how to
          create a ProbeLevelSet.

    gene: A number of gene sequences as DNAstring, vectors of
          DNAStrings, character-vectors or readFASTA outputs.

probeData: Optional if a ProbeLevelSet is submitted as object argument.
          Otherwise it must be a data frame with rownames corresponding
          to the featureNames of the ExpressionSet and a column named
          "sequence" with the probe sequences as character strings

 verbose: TRUE or FALSE

directions: A character vector of the matching-directions that should
          be scanned (which combinations of complementary and reverse).
          Defaults to "all" which is shorthand for all possible
          directions, but can take anything from:
          c("matchForwardSense", "matchForwardAntisense",
          "matchReverseSense", "matchReverseAntisense")

correlationCutoff: A number between 0 and 1. The limit at which Pearson
          correlation (in absolute values) should not be plotted below.
          Defaults to 0.5

probeLevelInfo: The information about each probe to include in the
          plot. Should be a vector of one or more of the following
          elements: probeid, probesetid, sequence. Default is only
          probeid.

_D_e_t_a_i_l_s:

     This function takes a ProbeLevelSet or an ExpressionSet +
     probeData and the sequence of a gene. It then calculates pairwise
     Pearson correlation coefficients between all possible combinations
     of probes. Then it assigns each probe to a location  along the
     length of the gene and plots a relational graph showing which
     probes has high correlation coefficients. The correlation
     coefficients are sorted by absolute values meaning that it will
     also include the negative correlations.

_V_a_l_u_e:

     No value, but plots a hapmap style plot of correlation values
     between all probes

_A_u_t_h_o_r(_s):

     Lasse Folkersen

_S_e_e _A_l_s_o:

     'geneRegionScan', 'plotOnGene'

_E_x_a_m_p_l_e_s:

             
             data(exampleProbeLevelSet)
         plotCoexpression(exampleProbeLevelSet, mrna, correlationCutoff=0.7, probeLevelInfo=c("probeid","sequence"))

