Skip to content

Commit

Permalink
bug fix with not opening drug target and nontarget files to write
Browse files Browse the repository at this point in the history
  • Loading branch information
amilacsw committed Oct 17, 2017
1 parent 2f97288 commit 4532d89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file renamed HotSpot3D-1.8.1.tar.gz → HotSpot3D-1.8.2.tar.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions lib/TGI/Mutpro/Main/Proximity.pm
Original file line number Diff line number Diff line change
Expand Up @@ -877,9 +877,9 @@ sub drug_proximity_postprocessing {
warn "HotSpot3D Search Warning: Skipping drugport proximity, because no results file given.\n";
return;
}
my $sub_fh_target = new FileHandle;
my $sub_fh_target = FileHandle->new( "$output_prefix.drugs.target", "w" );
my $sub_fh_drugport_parsing = new FileHandle;
my $sub_fh_nontarget = new FileHandle;
my $sub_fh_nontarget = FileHandle->new( "$output_prefix.drugs.nontarget", "w" );
my $sub_fh_output = new FileHandle;
unless( $sub_fh_drugport_parsing->open( "$drugport_parsing_results" ) ) {
warn "Could not open drugprot parsing output file\n";
Expand Down

0 comments on commit 4532d89

Please sign in to comment.