Hello everyone! I am trying to run slurm using python in the environment, but the base is overwriting it and due to which the tool is not running.
#!/bin/bash
#SBATCH --ntasks-per-node=1
#SBATCH --mem-per-cpu=100G
#SBATCH --time=100:00:00
#SBATCH --job-name=celloracle
#SBATCH --output=celloracle-%J.log
# Load the same python as used for installation
#module load python3
module load R/4.1.2
source /home/user/env/lib/python3.7
#source activate evn_for_R
python celloracle_issue.py
however, it is still not working. Has anyone ever encountered same situation? Any help is highly appreciated.