Skip to content

Commit

Permalink
fix: fixed path for ont loading
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzocasbarra committed Nov 15, 2024
1 parent 4acc9d8 commit 2c62843
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cgi-bin/modules/structures/PathLayExpPackages.pm
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ package ExpONTs;
my $ont_db_location = $parameters -> {_ont_db_location};

my $debug = 0;
if ( -e $base.$user."/"."$exp.ont") {
open(IN,$base.$user."/"."$exp.ont");
if ( -e $base.$user."/$exp/"."$exp.ont") {
open(IN,$base.$user."/$exp/"."$exp.ont");
while (<IN>) {
chomp;
next if ($_ eq "");
Expand Down

0 comments on commit 2c62843

Please sign in to comment.