Entering edit mode
6.0 years ago
prabin.dm
▴
260
Hi all,
I am using STAR for aligment and gettting an error. I can't figure out why?
star 2.5.3a is located under /share/pkg/star/2.5.3a
/home/.lsbatch/1544131842.9569914.shell: line 22: --quantMode: command not found
Here is my code
module load star/2.5.3a
STAR -- genomeDir star_genome_mm10 \
--readFilesCommand zcat \
--readFilesIn L001_R1_001.fastq.gz \
--outSAMtype BAM SortedByCoordinate \
--outSAMunmapped Within \
--twopassMode Basic \
--outFilterMultimapNmax 1 \
--quantMode TranscriptomeSAM GeneCounts \
--runThreadN 6 \
--outFileNamePrefix /STAR_output/test
Another issue I am having is, the output files are not stored in the STAR_ouput directory. It is stored in the directory where the code is executed ?
Maybe change this
to
unless there's actually a dir named
STAR_output
with proper permissions in the root directory?