getProcedures {IMPCdata} | R Documentation |
Returns the list of procedures (IMPReSS IDs) that are run for a specified phenotyping center and pipeline.
getProcedures(PhenCenterName=NULL,PipelineID=NULL)
PhenCenterName |
IMPC phenotyping center; mandatory argument |
PipelineID |
IMPC pipeline ID; mandatory argument |
Returns the list of IMPC procedures (IDS of procedures) that are run by specified phenotyping center and pipeline.
Natalja Kurbatova, Jeremy Mason
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]))) }