Skip to content

Commit

Permalink
fixed conda EXE_GSAPATH handling
Browse files Browse the repository at this point in the history
  • Loading branch information
eead-csic-compbio committed Jan 23, 2025
1 parent 02a4e55 commit 90fa0d8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pangenes/get_pangenes.pl
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,11 @@
if($dowfmash) {
$command .= "-wf -W $ENV{'EXE_WFMASH'} ";
} elsif($dogsalign) {
$command .= "-gs -G $ENV{'EXE_GSAPATH'} ";
if($ENV{'EXE_GSAPATH'} ne '') {
$command .= "-gs -G $ENV{'EXE_GSAPATH'} ";
} else {
$command .= "-gs "; #conda
}
} else {
$command .= "-M $ENV{'EXE_MINIMAP'} "
}
Expand Down

0 comments on commit 90fa0d8

Please sign in to comment.