Hi everyone, I am a newbie in RNA-Seq analysis. So I am going to use STAR and as you know there are some parameters when we are running it.
--runThreadN NumberOfThreads
--runMode genomeGenerate
--genomeDir /path/to/genomeDir
--genomeFastaFiles /path/to/genome/fasta1 /path/to/genome/fasta2 ...
--sjdbGTFfile /path/to/annotations.gtf
--sjdbOverhang ReadLength-1
Among those, what should be the number of threads for one fastq file and approximately how much time will it take (I am using a HPC) My organism is human btw Thanks in advance
So, for generating
genome index
, you're not going to use anyfastq
file, this will be only for alignment step.Regarding the number of threads, the best way is to check how many threads you have available. In my case, I like to use
Nthreads - 4
. But I have a local server available!Thanks for your help. So in HPC is 28 okay?