LucasFVoges / GRADA

simple GRep ADapter Analyser
MIT License
1 stars 0 forks source link

make parallel an optional thing #7

Closed LucasFVoges closed 3 years ago

LucasFVoges commented 3 years ago

At the moment GRADA will use always the mclapply() function. This can be easely set to lapply() without big changes.

Solution: if (numCores == 1){ use lapply() } else { use mclapply() }