Entering edit mode
5.3 years ago
lawrence.hsu
▴
10
I've posted on the author's issue page but I wanted to see if anyone else has encountered this problem. The pipeline runs fine locally but as soon as I push it to the cluster an error saying 'sbatch: error: Unable to open RNA Seq file'. I've also attached an image of the error.
rule STAR04:
input:
"02-trimmed/{sample}_trimmed.fq"
output:
sam="04-aligned-2pass/{sample}_ID/Aligned.out.sam",
sum="04-aligned-2pass/{sample}_ID/Log.final.out"
log:
"logs/star/{sample}.log"
shell:
"/data/p_magnuson_lab/bin/STAR-2.6.0c/bin/Linux_x86_64/STAR "
"--genomeDir /data/p_magnuson_lab/reference/mouse/STAR_index "
"--runThreadN 8 "
"--readFilesCommand zcat "
"--twopassMode Basic "
"--alignEndsType EndToEnd "
"--alignIntronMax 1 "
"--readFilesIn {input} "
"--outFileNamePrefix 04-aligned-2pass/{wildcards.sample}_ID/ "
" &> {log}"
It looks like your cluster command is wrong.
Please include a link then.