Skip to content

Commit

Permalink
Merge pull request #436 from ASLeonard/passing_poa
Browse files Browse the repository at this point in the history
Correctly pass POA params to smoothxg
  • Loading branch information
AndreaGuarracino authored Dec 29, 2024
2 parents 75f7a50 + f84ee36 commit 0f3e318
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pggb
Original file line number Diff line number Diff line change
Expand Up @@ -425,18 +425,18 @@ fi
# between asm10 and asm20 ~ 1,7,11,2,33,1
poa_params_cmd=""
if [[ $poa_params == false ]]; then
poa_params_cmd="-P 1,19,39,3,81,1"
poa_params_cmd="-p 1,19,39,3,81,1"
else
if [[ $poa_params == "asm5" ]]; then
poa_params_cmd="-P 1,19,39,3,81,1"
poa_params_cmd="-p 1,19,39,3,81,1"
elif [[ $poa_params == "asm10" ]]; then
poa_params_cmd="-P 1,9,16,2,41,1"
poa_params_cmd="-p 1,9,16,2,41,1"
elif [[ $poa_params == "asm15" ]]; then
poa_params_cmd="-P 1,7,11,2,33,1"
poa_params_cmd="-p 1,7,11,2,33,1"
elif [[ $poa_params == "asm20" ]]; then
poa_params_cmd="-P 1,4,6,2,26,1"
poa_params_cmd="-p 1,4,6,2,26,1"
else
poa_params_cmd="-P $poa_params"
poa_params_cmd="-p $poa_params"
fi
fi

Expand Down

0 comments on commit 0f3e318

Please sign in to comment.