| getNormalisedAtlasExpression | R Documentation | 
This function downloads and returns normalised expression data for an Expression Atlas experiment, based on the ArrayExpress accession of the experiment.
    getNormalisedAtlasExpression( experimentAccession, normalisation )
| experimentAccession | ArrayExpress experiment accession e.g. "E-MTAB-4045" | 
| normalisation | Normalisation method type e.g. "tpm", "fpkm", "cpm" | 
A dataframe with expression values of the genes for each assay group. Entries are mean values of replicates.
    
    # Download the TPM Expression values for experiment E-MTAB-4045
    mtab4045_tpm <- getNormalisedAtlasExpression( "E-MTAB-4045", "tpm" )
    # See the entries available
    dim(mtab4045_tpm)
    # Prints out the following:
    # [1] 57147    45
    # Download the CPM Expression values for experiment E-MTAB-4045
    mtab4045_cpm <- getNormalisedAtlasExpression( "E-MTAB-4045", "cpm" )
    # See the entries available
    dim(mtab4045_cpm)
    # Prints out the following:
    # [1] 57147    275
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.