Skip to content

Commit

Permalink
-d fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Pombert-JF committed Mar 12, 2021
1 parent 519a1da commit 017cc66
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fastq2fasta.pl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
);

## Creating directory
unless (-e $outdir){
unless (-d $outdir){
mkdir ($outdir, 0755) or die "Can't create output directory $outdir: $!\n";
}
if ($verbose){ print "\nFASTA output directory: $outdir\n"; }
Expand Down
2 changes: 1 addition & 1 deletion megablast.pl
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
);

## Creating output directory
unless (-e $outdir){
unless (-d $outdir){
mkdir ($outdir, 0755) or die "Can't create output directory $outdir: $!\n";
}
if ($verbose){ print "\nBLAST output directory: $outdir\n"; }
Expand Down
2 changes: 1 addition & 1 deletion taxid_dist.pl
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@

## Creating output dir
if ($verbose){ print "Output directory = $outdir\n\n"; }
unless (-e $outdir){
unless (-d $outdir){
mkdir ($outdir,0755) or die "Can't create output directory $outdir: $!\n";
}

Expand Down

0 comments on commit 017cc66

Please sign in to comment.