Hello, I am trying to calculate the FRiP score through dba.count()
method as following, and I've been continuously getting this warning:
> compareCount <- dba.count(compare, bParallel=FALSE)
Sample: trimmed_DKO_R1.fastq.gz.sam.sort.clean.bam125
Sample: trimmed_DKO_R2.fastq.gz.sam.sort.clean.bam125
Sample: trimmed_HCT116_R1.fastq.gz.sam.sort.clean.bam125
Warning message:
In dba.multicore.init(DBA$config) :
Parallel execution unavailable: executing serially.
Can someone answer why I am continuously getting this error even when I set the paramenter bParallel=FALSE?
samples <- read.csv("sample.csv", sep=",")
compare <- dba(sampleSheet=samples)
compareCount <- dba.count(compare, bParallel=FALSE)
Thank you for your help in advance.