Learn R Programming

FlowRepositoryR (version 1.4.0)

impcCodeDescription: Get a human readable description of an IMPC code.

Description

This function returns a human readable description of an IMPC code based on https://www.mousephenotype.org/impress/protocol/174/7 as of November 6, 2015. This includes IMPC parameters as well as IMPC metadata.

Usage

impcCodeDescription(code)

Arguments

code
Either a single IMPC code, or a list of IMPC codes, or a vector of IMPC codes. The code (or codes) will be looked in an internal database of IMPC codes. The codes are not case sensitive.

Value

An object of class character containing a human readable description of the IMPC code. If a list (or vector) of multiple codes is submitted, then a vector of multiple human readable descriptions will be returned. The length of the output will match the length of the input.

Details

IMPC parameter and metadata codes are stored in an internal database (environment serving as a hash table), which is used to lookup the results of this function. The codes are not case sensitive. The function can handle a single code as well as a list (or vector) of codes.

References

Spidlen Josef. FlowRepository Resources for Developers. http://flowrepository.org/developers

See Also

impcResultsCopy

Examples

Run this code
    ## Checking IMPC dictionary
    ## codes are not case sensitive
    impcCodeDescription("impc_imm_010_001")
    impcCodeDescription("IMPC_IMM_013_001")
    impcCodeDescription("ImpC_iMm_019_001")
    impcCodeDescription(c("impc_imm_022_001", "IMPC_IMM_028_001"))

Run the code above in your browser using DataLab