Originally posted by ganygan25
View Post
for i in *fq; do fastqc $i ; done
However, you can add the -t parameter to say how many files can be processed in parallel which will allow you to spread the load across multiple cores, which is probably the most efficient way to get through a large batch of files (and is what we do here).
Comment