getProcedures: Method "getProcedures"

Description Usage Arguments Value Author(s) Examples

View source: R/PhenObjects.R

Description

Returns the list of procedures (IMPReSS IDs) that are run for a specified phenotyping center and pipeline.

Usage

1
    getProcedures(PhenCenterName=NULL,PipelineID=NULL)

Arguments

PhenCenterName

IMPC phenotyping center; mandatory argument

PipelineID

IMPC pipeline ID; mandatory argument

Value

Returns the list of IMPC procedures (IDS of procedures) that are run by specified phenotyping center and pipeline.

Author(s)

Natalja Kurbatova, Jeremy Mason

Examples

1
2
3
4
5
    listProcedures  <- getProcedures("WTSI","MGP_001")
    for (procedureIndex in 1:min(length(listProcedures), 5)) { # Print the name of 5 procedures
        print(paste(listProcedures[procedureIndex],"-",
                        getName("procedure_stable_id","procedure_name",listProcedures[procedureIndex])))
    }

IMPCdata documentation built on Nov. 8, 2020, 8:17 p.m.