-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #112 from uclahs-cds/nwiltsie_apply_shellcheck
Apply shellcheck fixes
- Loading branch information
Showing
14 changed files
with
55 additions
and
55 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ do | |
while [ $submit_signal == "false" ] | ||
do | ||
sleep 30 | ||
jobs_running=$((`squeue -u psteinberg | wc -l` - 1)) | ||
jobs_running=$(($(squeue -u psteinberg | wc -l) - 1)) | ||
echo "jobs running: $jobs_running" | ||
if [ $jobs_running -lt 5 ] | ||
then | ||
|
@@ -29,9 +29,9 @@ do | |
done | ||
python3 /hot/software/package/tool-submit-nf/Python/release/2.2.0/submit_nextflow_pipeline.py \ | ||
--nextflow_script /hot/user/yashpatel/pipeline-call-SRC/pipeline-call-SRC/main.nf \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-mutect2-battenberg-pyclone-vi/input/config/seed_${seed}.config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/mutect2_battenberg_yamls/multi-region/${patient}.yaml \ | ||
--pipeline_run_name ${patient}_${seed}_Mutect2-Battenberg-PyClone-VI-mr \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-mutect2-battenberg-pyclone-vi/input/config/seed_"${seed}".config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/mutect2_battenberg_yamls/multi-region/"${patient}".yaml \ | ||
--pipeline_run_name "${patient}"_"${seed}"_Mutect2-Battenberg-PyClone-VI-mr \ | ||
--partition_type F32 \ | ||
--email [email protected] | ||
done | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ do | |
while [ $submit_signal == "false" ] | ||
do | ||
sleep 30 | ||
jobs_running=$((`squeue -u psteinberg | wc -l` - 1)) | ||
jobs_running=$(($(squeue -u psteinberg | wc -l) - 1)) | ||
echo "jobs running: $jobs_running" | ||
if [ $jobs_running -lt 5 ] | ||
then | ||
|
@@ -29,9 +29,9 @@ do | |
done | ||
python3 /hot/software/package/tool-submit-nf/Python/release/2.2.0/submit_nextflow_pipeline.py \ | ||
--nextflow_script /hot/user/yashpatel/pipeline-call-SRC/pipeline-call-SRC/main.nf \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-somaticsniper-battenberg-pyclone-vi/input/config/seed_${seed}.config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/somaticsniper_battenberg_yamls/multi-region/${patient}.yaml \ | ||
--pipeline_run_name ${patient}_${seed}_SomaticSniper-Battenberg-PyClone-VI-mr \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-somaticsniper-battenberg-pyclone-vi/input/config/seed_"${seed}".config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/somaticsniper_battenberg_yamls/multi-region/"${patient}".yaml \ | ||
--pipeline_run_name "${patient}"_"${seed}"_SomaticSniper-Battenberg-PyClone-VI-mr \ | ||
--partition_type F32 \ | ||
--email [email protected] | ||
done | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ do | |
while [ $submit_signal == "false" ] | ||
do | ||
sleep 60 | ||
jobs_running=$((`squeue -u psteinberg | wc -l` - 1)) | ||
jobs_running=$(($(squeue -u psteinberg | wc -l) - 1)) | ||
echo "jobs running: $jobs_running" | ||
if [ $jobs_running -lt 5 ] | ||
then | ||
|
@@ -29,9 +29,9 @@ do | |
done | ||
python3 /hot/software/package/tool-submit-nf/Python/release/2.2.0/submit_nextflow_pipeline.py \ | ||
--nextflow_script /hot/user/yashpatel/pipeline-call-SRC/pipeline-call-SRC/main.nf \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-strelka2-battenberg-pyclone-vi/input/config/seed_${seed}.config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/strelka2_battenberg_yamls/multi-region/${patient}.yaml \ | ||
--pipeline_run_name ${patient}_${seed}_Strelka2-Battenberg-PyClone-VI-mr \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-strelka2-battenberg-pyclone-vi/input/config/seed_"${seed}".config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/strelka2_battenberg_yamls/multi-region/"${patient}".yaml \ | ||
--pipeline_run_name "${patient}"_"${seed}"_Strelka2-Battenberg-PyClone-VI-mr \ | ||
--partition_type F32 \ | ||
--email [email protected] | ||
done | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ do | |
while [ $submit_signal == "false" ] | ||
do | ||
sleep 240 | ||
jobs_running=$((`squeue -u psteinberg | wc -l` - 1)) | ||
jobs_running=$(($(squeue -u psteinberg | wc -l) - 1)) | ||
echo "jobs running: $jobs_running" | ||
if [ $jobs_running -lt 5 ] | ||
then | ||
|
@@ -36,9 +36,9 @@ do | |
done | ||
python3 /hot/software/package/tool-submit-nf/Python/release/2.2.0/submit_nextflow_pipeline.py \ | ||
--nextflow_script /hot/user/yashpatel/pipeline-call-SRC/pipeline-call-SRC/main.nf \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-mutect2-battenberg-dpclust/input/config/seed_${seed}.config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/mutect2_battenberg_yamls/single-region/${patient}.yaml \ | ||
--pipeline_run_name ${patient}_${seed}_Mutect2-Battenberg-DPClust-sr \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-mutect2-battenberg-dpclust/input/config/seed_"${seed}".config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/mutect2_battenberg_yamls/single-region/"${patient}".yaml \ | ||
--pipeline_run_name "${patient}"_"${seed}"_Mutect2-Battenberg-DPClust-sr \ | ||
--partition_type F32 \ | ||
--email [email protected] | ||
done | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ do | |
while [ $submit_signal == "false" ] | ||
do | ||
sleep 30 | ||
jobs_running=$((`squeue -u psteinberg | wc -l` - 1)) | ||
jobs_running=$(($(squeue -u psteinberg | wc -l) - 1)) | ||
echo "jobs running: $jobs_running" | ||
if [ $jobs_running -lt 6 ] | ||
then | ||
|
@@ -36,9 +36,9 @@ do | |
done | ||
python3 /hot/software/package/tool-submit-nf/Python/release/2.2.0/submit_nextflow_pipeline.py \ | ||
--nextflow_script /hot/software/pipeline/pipeline-call-SRC/Nextflow/release/1.0.0-rc.1/main.nf \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-mutect2-battenberg-phylowgs/input/config/seed_${seed}.config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/mutect2_battenberg_yamls/single-region/${patient}.yaml \ | ||
--pipeline_run_name ${patient}_${seed}_Mutect2-Battenberg-PhyloWGS \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-mutect2-battenberg-phylowgs/input/config/seed_"${seed}".config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/mutect2_battenberg_yamls/single-region/"${patient}".yaml \ | ||
--pipeline_run_name "${patient}"_"${seed}"_Mutect2-Battenberg-PhyloWGS \ | ||
--partition_type F72 \ | ||
--email [email protected] | ||
done | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ do | |
while [ $submit_signal == "false" ] | ||
do | ||
sleep 30 | ||
jobs_running=$((`squeue -u psteinberg | wc -l` - 1)) | ||
jobs_running=$(($(squeue -u psteinberg | wc -l) - 1)) | ||
echo "jobs running: $jobs_running" | ||
if [ $jobs_running -lt 5 ] | ||
then | ||
|
@@ -36,9 +36,9 @@ do | |
done | ||
python3 /hot/software/package/tool-submit-nf/Python/release/2.2.0/submit_nextflow_pipeline.py \ | ||
--nextflow_script /hot/user/yashpatel/pipeline-call-SRC/pipeline-call-SRC/main.nf \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-mutect2-battenberg-pyclone-vi/input/config/seed_${seed}.config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/mutect2_battenberg_yamls/single-region/${patient}.yaml \ | ||
--pipeline_run_name ${patient}_${seed}_Mutect2-Battenberg-PyClone-VI \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-mutect2-battenberg-pyclone-vi/input/config/seed_"${seed}".config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/mutect2_battenberg_yamls/single-region/"${patient}".yaml \ | ||
--pipeline_run_name "${patient}"_"${seed}"_Mutect2-Battenberg-PyClone-VI \ | ||
--partition_type F32 \ | ||
--email [email protected] | ||
done | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ do | |
while [ $submit_signal == "false" ] | ||
do | ||
sleep 240 | ||
jobs_running=$((`squeue -u psteinberg | wc -l` - 1)) | ||
jobs_running=$(($(squeue -u psteinberg | wc -l) - 1)) | ||
echo "jobs running: $jobs_running" | ||
if [ $jobs_running -lt 5 ] | ||
then | ||
|
@@ -36,9 +36,9 @@ do | |
done | ||
python3 /hot/software/package/tool-submit-nf/Python/release/2.2.0/submit_nextflow_pipeline.py \ | ||
--nextflow_script /hot/user/yashpatel/pipeline-call-SRC/pipeline-call-SRC/main.nf \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-somaticsniper-battenberg-dpclust/input/config/seed_${seed}.config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/somaticsniper_battenberg_yamls/single-region/${patient}.yaml \ | ||
--pipeline_run_name ${patient}_${seed}_SomaticSniper-Battenberg-DPClust \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-somaticsniper-battenberg-dpclust/input/config/seed_"${seed}".config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/somaticsniper_battenberg_yamls/single-region/"${patient}".yaml \ | ||
--pipeline_run_name "${patient}"_"${seed}"_SomaticSniper-Battenberg-DPClust \ | ||
--partition_type F32 \ | ||
--email [email protected] | ||
done | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ do | |
while [ $submit_signal == "false" ] | ||
do | ||
sleep 60 | ||
jobs_running=$((`squeue -u psteinberg | wc -l` - 1)) | ||
jobs_running=$(($(squeue -u psteinberg | wc -l) - 1)) | ||
echo "jobs running: $jobs_running" | ||
if [ $jobs_running -lt 5 ] | ||
then | ||
|
@@ -36,9 +36,9 @@ do | |
done | ||
python3 /hot/software/package/tool-submit-nf/Python/release/2.2.0/submit_nextflow_pipeline.py \ | ||
--nextflow_script /hot/user/yashpatel/pipeline-call-SRC/pipeline-call-SRC/main.nf \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-somaticsniper-battenberg-phylowgs/input/config/seed_${seed}.config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/somaticsniper_battenberg_yamls/single-region/${patient}.yaml \ | ||
--pipeline_run_name ${patient}_${seed}_SomaticSniper-Battenberg-PhyloWGS-sr \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-somaticsniper-battenberg-phylowgs/input/config/seed_"${seed}".config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/somaticsniper_battenberg_yamls/single-region/"${patient}".yaml \ | ||
--pipeline_run_name "${patient}"_"${seed}"_SomaticSniper-Battenberg-PhyloWGS-sr \ | ||
--partition_type F72 \ | ||
--email [email protected] | ||
done | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ do | |
while [ $submit_signal == "false" ] | ||
do | ||
sleep 60 | ||
jobs_running=$((`squeue -u psteinberg | wc -l` - 1)) | ||
jobs_running=$(($(squeue -u psteinberg | wc -l) - 1)) | ||
echo "jobs running: $jobs_running" | ||
if [ $jobs_running -lt 5 ] | ||
then | ||
|
@@ -36,9 +36,9 @@ do | |
done | ||
python3 /hot/software/package/tool-submit-nf/Python/release/2.2.0/submit_nextflow_pipeline.py \ | ||
--nextflow_script /hot/user/yashpatel/pipeline-call-SRC/pipeline-call-SRC/main.nf \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-somaticsniper-battenberg-pyclone-vi/input/config/seed_${seed}.config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/somaticsniper_battenberg_yamls/single-region/${patient}.yaml \ | ||
--pipeline_run_name ${patient}_${seed}_SomaticSniper-Battenberg-PyClone-VI \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-somaticsniper-battenberg-pyclone-vi/input/config/seed_"${seed}".config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/somaticsniper_battenberg_yamls/single-region/"${patient}".yaml \ | ||
--pipeline_run_name "${patient}"_"${seed}"_SomaticSniper-Battenberg-PyClone-VI \ | ||
--partition_type F32 \ | ||
--email [email protected] | ||
done | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ do | |
while [ $submit_signal == "false" ] | ||
do | ||
sleep 240 | ||
jobs_running=$((`squeue -u psteinberg | wc -l` - 1)) | ||
jobs_running=$(($(squeue -u psteinberg | wc -l) - 1)) | ||
echo "jobs running: $jobs_running" | ||
if [ $jobs_running -lt 5 ] | ||
then | ||
|
@@ -36,9 +36,9 @@ do | |
done | ||
python3 /hot/software/package/tool-submit-nf/Python/release/2.2.0/submit_nextflow_pipeline.py \ | ||
--nextflow_script /hot/user/yashpatel/pipeline-call-SRC/pipeline-call-SRC/main.nf \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-strelka2-battenberg-dpclust/input/config/seed_${seed}.config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/strelka2_battenberg_yamls/single-region/${patient}.yaml \ | ||
--pipeline_run_name ${patient}_${seed}_Strelka2-Battenberg-DPClust \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-strelka2-battenberg-dpclust/input/config/seed_"${seed}".config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/strelka2_battenberg_yamls/single-region/"${patient}".yaml \ | ||
--pipeline_run_name "${patient}"_"${seed}"_Strelka2-Battenberg-DPClust \ | ||
--partition_type F32 \ | ||
--email [email protected] | ||
done | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ do | |
while [ $submit_signal == "false" ] | ||
do | ||
sleep 300 | ||
jobs_running=$((`squeue -u psteinberg | wc -l` - 1)) | ||
jobs_running=$(($(squeue -u psteinberg | wc -l) - 1)) | ||
echo "jobs running: $jobs_running" | ||
if [ $jobs_running -lt 6 ] | ||
then | ||
|
@@ -36,9 +36,9 @@ do | |
done | ||
python3 /hot/software/package/tool-submit-nf/Python/release/2.2.0/submit_nextflow_pipeline.py \ | ||
--nextflow_script /hot/software/pipeline/pipeline-call-SRC/Nextflow/release/1.0.0-rc.1/main.nf \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-strelka2-battenberg-phylowgs/input/config/seed_${seed}.config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/strelka2_battenberg_yamls/single-region/${patient}.yaml \ | ||
--pipeline_run_name ${patient}_${seed}_Strelka2-Battenberg-PhyloWGS \ | ||
--nextflow_config /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/run-strelka2-battenberg-phylowgs/input/config/seed_"${seed}".config \ | ||
--nextflow_yaml /hot/project/method/AlgorithmEvaluation/BNCH-000082-SRCRNDSeed/pipeline-call-src/strelka2_battenberg_yamls/single-region/"${patient}".yaml \ | ||
--pipeline_run_name "${patient}"_"${seed}"_Strelka2-Battenberg-PhyloWGS \ | ||
--partition_type F72 \ | ||
--email [email protected] | ||
done | ||
|
Oops, something went wrong.