Skip to content

Commit

Permalink
Merge pull request #46 from athbaltzis/master
Browse files Browse the repository at this point in the history
Ignore unreleased pdbs
  • Loading branch information
cnotred committed Aug 31, 2021
2 parents 5e5c755 + 485da20 commit 37f6b01
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/perl/lib/scripts/extract_from_pdb
Original file line number Diff line number Diff line change
Expand Up @@ -1284,7 +1284,8 @@ sub is_released
my $name=&remote_is_pdb_name ($in);
my $hold=&remote_is_on_hold($in);

$r=($name && !$hold)?1:0;
#$r=($name && !$hold)?1:0;
$r=($name)?1:0;
return $r;
}

Expand Down

0 comments on commit 37f6b01

Please sign in to comment.