File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 14
14
# Produces a TSV file with pairs of collinear genes in a format similar to
15
15
# Ensembl Compara's, genomic coordinates are 1-based
16
16
17
- # Copyright [2021-24 ]
17
+ # Copyright [2021-25 ]
18
18
# EMBL-European Bioinformatics Institute & Estacion Experimental de Aula Dei-CSIC
19
19
20
20
# Uses external software:
@@ -258,9 +258,11 @@ sub help_message {
258
258
}
259
259
} elsif ($dogsalign ) {
260
260
261
- $GSAINDXEXE = " $gsalign_path /$GSAINDXEXE " ;
262
- $GSALIGNEXE = " $gsalign_path /$GSALIGNEXE " ;
263
-
261
+ if ($gsalign_path ne ' ' ) {
262
+ $GSAINDXEXE = " $gsalign_path /$GSAINDXEXE " ;
263
+ $GSALIGNEXE = " $gsalign_path /$GSALIGNEXE " ;
264
+ }
265
+
264
266
if (` $GSALIGNEXE 2>&1` !~ ' Usage' ) {
265
267
print " # ERROR: cannot find binary file $GSALIGNEXE , exit\n " ;
266
268
exit (-4)
Original file line number Diff line number Diff line change @@ -110,6 +110,7 @@ sub set_pangeneTools_env {
110
110
$ENV {" EXE_GSALIGN" } = $ENV {' EXE_GSAPATH' }.' GSAlign' ;
111
111
}
112
112
if (!-e $ENV {' EXE_GSALIGN' }){
113
+ $ENV {' EXE_GSAPATH' } = ' ' ;
113
114
$ENV {' EXE_GSALIGN' } = ' GSAlign' ; # should work if in conda PATH
114
115
}
115
116
You can’t perform that action at this time.
0 commit comments