Skip to content

Commit 2ded56e

Browse files
authored
Changed condition.
1 parent 13873d2 commit 2ded56e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/TRACESPipe.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ ALIGN_AND_CONSENSUS () {
349349
#
350350
echo -e "\e[34m[TRACESPipe]\e[32m Done!\e[0m";
351351
#
352-
if [[ "$V_GID" != "-" ]] && [[ "$V_VAL" > "$2" ]];
352+
if [[ "$V_GID" != "-" ]] && [[ $(bc <<< "$V_VAL > $2") -eq 1 ]];
353353
then
354354
#
355355
if [[ "$3" -eq "1" ]]
@@ -2409,4 +2409,3 @@ if [[ "$RUN_ANALYSIS" -eq "1" ]];
24092409
#
24102410
# ==============================================================================
24112411
################################################################################
2412-

0 commit comments

Comments
 (0)