Error with running star via snakemake on cluster
0
0
Entering edit mode
4.6 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}"

enter image description here

snakemake software error • 1.3k views
ADD COMMENT
1
Entering edit mode

It looks like your cluster command is wrong.

ADD REPLY
0
Entering edit mode

I've posted on the author's issue page

Please include a link then.

ADD REPLY

Login before adding your answer.

Traffic: 2417 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6