Skip to main content
Topic: printing diffreport to different folder (Read 4004 times) previous topic - next topic

printing diffreport to different folder

Hi All,

I would like to print my diffreport to a different folder than the one I'm currently in (i.e. print to a folder other than the one in which my mzxml files are located). Is there a way to do this, and if so, what is the command (my current command is reporttab<-diffreport(xset7, "KO", "WT", "outputfile", 1000)?

Thanks in advance,
Anna Mari

 

Re: printing diffreport to different folder

Reply #1
Anna,

It'll be something like this :
Code: [Select]
create.dir("NewDir")
diffreport(xset7, "KO", "WT", file="NewDir/outputfile", eicmax=1000)

If you want to go back up one level/the directory before then it's ../ So...
Code: [Select]
diffreport(xset7, "KO", "WT", file="../outputfile", eicmax=1000)
##or
create.dir("../diffreportsDIR")
diffreport(xset7, "KO", "WT", file="../diffreportsDIR/outputfile", eicmax=1000)
~~
H. Paul Benton
Scripps Research Institute
If you have an error with XCMS Online please send me the JOBID and submit an error via the XCMS Online contact page