#This examples extracts expression data from two sample array scanner files which are found in the folder "scanner" within the agilp package extdata folder
#and places them in the folder output.
inputdir<-file.path(system.file(package="agilp"),"extdata","scanner","", fsep = .Platform$file.sep)
outputdir<-file.path(system.file(package="agilp"),"output", "", fsep = .Platform$file.sep)
AAProcess(input = inputdir, output = outputdir, s = 9)
## Not run:
# #to remove these files again and empty the output directory use
# unlink(paste(file.path(system.file(package="agilp"),"output",""),"*.*",sep=""), recursive=FALSE)
#
# #The number of lines header to be skipped from scanner array files can be changed from the default value of 9 by setting variable s.
# AAProcess(input = inputdir, output = outputdir, s = 12)
# ## End(Not run)
Run the code above in your browser using DataLab