Hello everyone.
I'm now trying to install Cell Ranger following the tutorial described in 10x genomics website (https://www.10xgenomics.com/jp/support/software/cell-ranger/latest/tutorials/cr-tutorial-in), but facing the problem.
I installed the Cell ranger package (cellranger-8.0.0) and added a path to it as follows;
export PATH=/Users/******/desktop/cellranger_downloads/cellranger-8.0.0:$PATH
I suppose Cell Ranger was successfully added to the $PATH because output of "which cellranger" command seemed proper;
/Users/******/desktop/cellranger_downloads/cellranger-8.0.0/cellranger
However, when I runned "cellranger" command or tried testrun (cellranger testrun --id=tiny), the following error message appeared...
**zsh: exec format error: cellranger**
I'm conducting the experiment using Mac PC (Apple M1 Max).
If anyone knows of a solution, I would appreciate it if you could enlighten me.
Best regards,
You cannot run
cellranger
on a Mac: https://kb.10xgenomics.com/hc/en-us/articles/115003535986-Can-I-run-Cell-Ranger-on-my-Mac-or-Windows-machineIf you do not have access to a GNU/Linux system, the alternatives that I can think of is using
docker
directly or switching tonf-core/scrnaseq
(https://nf-co.re/scrnaseq/2.5.1) and making use of docker/singularity indirectly.Thank you all for all the advice. I was completely mistaken that the Cell Ranger could be operated in a terminal. I will try the analysis using Docker. If I have any problems, I might have to post question here. Thank you in advance.