Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: tseemann/abricate
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.0
Choose a base ref
...
head repository: tseemann/abricate
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Apr 19, 2020

  1. Issue #135 | handle > 500 hits

    tseemann committed Apr 19, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    snyk-bot Snyk bot
    Copy the full SHA
    6456997 View commit details

Commits on May 12, 2020

  1. Copy the full SHA
    955d402 View commit details
Showing with 3 additions and 1 deletion.
  1. +1 −0 README.md
  2. +2 −1 bin/abricate
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -186,6 +186,7 @@ You can choose a different database using the `--db` option:
## Combining reports across samples

ABRicate can combine results into a simple matrix of gene presence/absence.
An absent gene is denoted `.` and a present gene is represented by its '%COVERAGE`.
This can be individual abricate reports, or a combined one.

```
3 changes: 2 additions & 1 deletion bin/abricate
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ use Cwd qw(abs_path);
#..............................................................................
# Globals needed before --help etc

my $VERSION = "1.0.0";
my $VERSION = "1.0.1";
my $EXE = basename($0);
my $AUTHOR = 'Torsten Seemann';
my $TWITTER = '@torstenseemann';
@@ -124,6 +124,7 @@ for my $file (@ARGV) {
my $cmd = "(any2fasta -q -u \Q$file\E |"
. " $blastcmd -db \Q$db_path\E -outfmt '$format' -num_threads $threads"
. " -evalue 1E-20 -culling_limit $CULL"
. " -max_target_seqs 10000" # https://github.com/tseemann/abricate/issues/135
# . " -max_target_seqs ".$dbinfo->{SEQUENCES} # Issue #76
. ")"
;