Skip to content

Commit

Permalink
chore: set time limit to 600 for GATK
Browse files Browse the repository at this point in the history
  • Loading branch information
boasvdp committed Sep 6, 2024
1 parent 9c89b0f commit df0d68f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions run_pipeline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,16 @@ fi
export SINGULARITY_TMPDIR="$(pwd)"

#without exclusion file
# set time limit to 600 minutes in case large files are present. GATK is slow.
if [ "${EXCLUSION_FILE}" == "" ]
then
python juno_mapping.py \
--queue "${QUEUE}" \
-i "${input_dir}" \
-o "${output_dir}" \
-s "${SPECIES}" \
--prefix "/mnt/db/juno/sing_containers"
--prefix "/mnt/db/juno/sing_containers" \
-tl 600

result=$?
else
Expand All @@ -109,7 +111,8 @@ else
-o "${output_dir}" \
-s "${SPECIES}" \
--prefix "/mnt/db/juno/sing_containers" \
-ex "${EXCLUSION_FILE}"
-ex "${EXCLUSION_FILE}" \
-tl 600

result=$?
fi
Expand Down

0 comments on commit df0d68f

Please sign in to comment.