Skip to content

Commit

Permalink
Issue #5 - skip over unreadable files
Browse files Browse the repository at this point in the history
  • Loading branch information
tseemann committed Jul 9, 2017
1 parent a0583a1 commit 0184a09
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bin/abricate
Expand Up @@ -93,6 +93,10 @@ for my $file (@ARGV) {
my %seen;
my @hit;
msg("Processing: $file");
if (! -r $file) {
msg("WARNING: '$file' does not exist, or is unreadable");
next FILE;
}
my $cmd = "(gzip -d -c -f \Q$file\E | seqret -auto -filter -osformat2 fasta |"
. " blastn -db \Q$db_path\E -outfmt '$format'"
. " -task blastn -evalue 1E-20 -dust no -max_target_seqs 10000 -perc_identity $minid"
Expand Down

0 comments on commit 0184a09

Please sign in to comment.