Hello,
I'm trying to run gene expression imputation analysis with CIBERSORTx docker. The university shell only support singularity. Therefore I need to run CIBEROSRTx Docker with Singularity.
Here is what I did:
# pull docker image into singularity
singularity pull docker://cibersortx/hires
# get "hires_latest.sif" image file.
# run singularity
singularity run -B /my_path/hires_input:/src/data -B /my_path/hires_output:/src/outdir \
hires_latest.sif --username email \
--token my_token \
--mixture /src/data/Fig4a-arrays-SimulatedMixtures.MAS5.txt \
--sigmatrix /src/data/Fig4a-LM4.txt \
--window 20 \
--QN TRUE
When I try to run the analysis with the data in tutorial, I get the error:
FATAL: stat /my_path/CIBERSORTxHiRes: no such file or directory
Does anyone know how to resolve this? Thanks for your time.
The commend for docker would be this:
docker run -v absolute/path/to/input/dir:/src/data -v absolute/path/to/output/dir:/src/outdir cibersortx/hires --username email_address_registered_on_CIBERSORTx_website --token token_obtained_from_CIBERSORTx_website --mixture Fig4a-arrays-SimulatedMixtures.MAS5.txt --sigmatrix Fig4a-LM4.txt --classes Fig4a-LM4-mergedclasses.txt --window 20 --QN TRUE
Did you change the bind paths while pasting the command here? The error message does not match your command.
I stored the "hires_latest.sif" image file in /xdisks/PI_name/my_name/cibersortx/
I sbatch the job to Slurm to run it, and the commend in my job script is this:
The slurm.out I got just contains "FATAL stat /xdisk/PI_name/my_name/cibersortx/CIBERSORTxHiRes: no such file or directory"
Which path should I change? I'm new for both containers.
Is that location accessible on nodes where this job is running?
Hello,
I'm getting the same error as you trying to run a fraction analysis.
My command is
The error
Could you help me?