Created
March 21, 2022 18:23
-
-
Save ajoydas/d8f06a503cb2ea7e11b624e0d22cfc25 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#SBATCH --job-name=search.job | |
#SBATCH --output=.out/search.out | |
#SBATCH --error=.out/search.err | |
#SBATCH --time=03:00:00 | |
#SBATCH --mem=12GB | |
##SBATCH --mail-type=ALL | |
##SBATCH [email protected] | |
export PATH=$PATH:/home/ajoy.das/miniconda3/bin | |
source activate bias_study # conda might not work, here bias_study is the conda environment | |
which python | |
# conda env list | |
echo starting python code | |
python search-job.py | |
echo ending python code |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment