getParameters {IMPCdata} | R Documentation |
Returns the list of parameters (IMPReSS IDs) that are measured within specified procedure for a pipeline run by phenotyping center.
getParameters(PhenCenterName=NULL,PipelineID=NULL,ProcedureID=NULL)
PhenCenterName |
IMPC phenotyping center; mandatory argument |
PipelineID |
IMPC pipeline ID; mandatory argument |
ProcedureID |
IMPC procedure ID; mandatory argument |
Returns the list of IMPC parameters (IDS of parameters) that are measured within specified procedure in the pipeline run by phenotyping center.
Natalja Kurbatova, Jeremy Mason
listParameters <- getParameters("WTSI","MGP_001","IMPC_CBC_001") for (parameterIndex in 1:min(length(listParameters), 5)) { print(paste(listParameters[parameterIndex],"-", getName("parameter_stable_id","parameter_name",listParameters[parameterIndex]))) }