You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that when we want to execute a qmap script specifying the number of cores or the memory to use for a paarticular job it doesn't run it with them and it runs with the general parameters. Here, it's an example of a jobs file:
It generates the .env file for the specific job but it seems that it isn't running accordingly the parameters. Also, it generates the .bash file but it doesn't get the right .env. An exampe of a .bash file generated:
#!/bin/bash
#SBATCH --no-requeue
set -e
source "/home/dmartinezm/hartwig_biomarkers/fire_engine2_20220530/execution.env"
if [ -f "/home/dmartinezm/hartwig_biomarkers/fire_engine2_20220530/1.env" ]; then
source "/home/dmartinezm/hartwig_biomarkers/fire_engine2_20220530/1.env"
fi
. "/home/$USER/miniconda3/etc/profile.d/conda.sh"
conda activate biomarkers
python $PWD/launch_pad/engine2/get_hla-features.py
The text was updated successfully, but these errors were encountered:
It seems that when we want to execute a qmap script specifying the number of cores or the memory to use for a paarticular job it doesn't run it with them and it runs with the general parameters. Here, it's an example of a jobs file:
The code that it gets the parameters is this one:
qmap/qmap/manager.py
Lines 328 to 333 in c73c355
It generates the
.env
file for the specific job but it seems that it isn't running accordingly the parameters. Also, it generates the.bash
file but it doesn't get the right.env
. An exampe of a.bash
file generated:The text was updated successfully, but these errors were encountered: