Originally posted by Bruins
View Post
The structure of the command needs to be:
java [options] [class] [files]
..and I suspect you're doing:
java [class] [options] [files]
So you need something like:
Code:
java -Xmx1024m -cp /usr/local/FastQC:$CLASSPATH -Dfastqc.output_dir=/output/dir uk.ac.bbsrc.babraham.FastQC.FastQCApplication file1.fastq file2.fastq
Comment