GREP2
GREP2 copied to clipboard
if statement in run_fastqc.R
Hi. I think in the file run_fastqc.R this
if(!dir.exists("fastqc"))
should be
if(!dir.exists(paste0(destdir,"/fastqc")))
Hello @ivokwee You are right. Actually, it assumes the working directory is the 'destdir' from previous step. Although, resetting the working directory doesn't hurt and it's fixed now. Thanks.