Entering edit mode
7.3 years ago
jammydodger123456
▴
40
I am trying to use the job script;
cuffdiff -p 10 -L Egg,Metacercaria PRJEBWB9PAULAnnotations.gff3 EggB1/tophat_out/accepted_hits.bam,EggB2/tophat_out/accepted_hits.bam MetB1/tophat_out/accepted_hits.bam,MetB2/tophat_out/accepted_hits.bam,MetB3/tophat_out/accepted_hits.bam
However, I get the error;
Error: cuffdiff requires at least 2 SAM files
And;
/EggB1/tophat_out/accepted_hits.bam,/EggB2/tophat_out/accepted_hits.bam: No such file or directory
I have checked the paths to these files and everything appears to be as it should for my script to work.
Any suggestions?
Thanks, Duncan
Why is cuffdiff looking for these under the
/
directory? Can you provide full paths for all the files?EggB1 is one directory within my working directory. Here's my script;
I tried to run this without the / before each rep, but the same error message comes back
I assume these directories are in
/mnt/scratch/users/40100371/Read_Files/Fhep
? Can you try to explicitly say/mnt/scratch/users/40100371/Read_Files/Fhep/EggB1/tophat_out/accepted_hits.bam
etc?That worked! Thank you