Skip to content

Releases: ncbi/amr

AMRFinderPlus v3.12.8

05 Feb 16:38
a826b72
Compare
Choose a tag to compare

AMRFinderPlus v3.12.8 includes a new database format version. Because this version is incompatible with AMRFinderPlus databases from previous versions, amrfinder -u must be run once the software update is installed to get the latest version of the database.

This update includes the changes:

  • Reference proteins now have stop codons. Input proteins that are not terminated with a ‘’ character are assumed to have a ‘’ at the end.
  • Extended proteins are no longer “EXACT” hits, so the protein names will be that of the parent node for alleles.
  • If a protein is hit by blast and the Blast Rule is violated, the Blast Rule of the parent family is checked, etc.
  • --annotation_format prodigal input format added

This means that Previously extended hits that were 100% identical to, but longer than proteins in the database were called with the method "EXACTP" and now they are called "BLASTP". Blast results will still indicate that 100% of the database reference was covered at 100% identity, and you should still see that the "Target length" is longer than the "Reference sequence length".

  1. Extended hits to allele sequences that were previously called EXACTP already had the element symbol was one node up the hierarchy (i.e. the gene symbol, not the allele symbol) the "Sequence name" was that of the ALLELE reference, and thus inconsistent with the element symbol assigned. This has been changed. Again, this does not affect previous "Element symbol" calls.

  2. In combined protein + nucleotide runs of AMRFinderPlus extended protein sequences with exact matches in the database were ignored and the nucleotide match was taken resulting in an EXACTX match with no protein accession provided. Now the protein match with method BLASTP will be reported.

To reiterate, gene symbols should not change. Sequence names will only change if the query is an extended version of a protein 100% identical and completely covering an allele in the database.

AMRFinderPlus v3.11.26

16 Oct 18:59
Compare
Choose a tag to compare

Fix for rare crash and change in behavior of hierarchy_node. This release will likely have no effect for most AMRFinderPlus users.

  • Fixes an unusual crash when using the --ident_min option with very low identity cutoffs (we generally don't recommend using this option).
  • A change in the behavior of the --print_node option. It will now print the node associated with the element reported, rather than the most specific node hit. This changes the node reported for non-exact blast hits to reference sequences of named alleles to report the parent node. It should have no effect on all other hits and does not affect the behavior of AMRFinderPlus in any field other than hierarchy_node.

AMRFinderPlus v3.11.20

18 Sep 19:10
Compare
Choose a tag to compare

This is a minor bug-fix release with two fixes:

  • Fix for a protein sequence that could cause AMRFinderPlus to crash. This was very rare, we saw one failure in running on over a million assemblies and all RefSeq proteins.
  • Found and fixed another case where AMRFinderPlus would produce two lines for what should really be a single partial hit reported.

AMRFinderPlus v3.11.18

07 Aug 18:28
Compare
Choose a tag to compare

AMRFinderPlus version 3.11.17 is another minor bug fix release

It fixes a bug where some point mutation results could be duplicated in AMRFinderPlus output. There will no longer be two rows in the AMRFinderPlus output for these circumstances.

This bug only affected a few point mutations that occur at/near the end of proteins where we had to add mutated reference sequences to a BLAST database to get BLAST to align through them. We have only seen this bug in our data for the following point mutations: ftsI_I336IKYRI, ftsI_N337NYRIN, mgrB_W47R, and ramR_A19V. See the point mutations in the Reference Gene Catalog for more information about those specific mutations.

AMRFinderPlus v3.11.17

26 Jul 11:50
Compare
Choose a tag to compare

This is a minor software release update with two changes. A bug fix for a very rare bug with mild consequences, and a minor improvement in the functionality of the --update option.

The release fixes a bug when AMRFinderPlus is run in combined nucleotide and protein mode where only a partial gene was assembled for proteins with long amino-acid repeats (e.g., espF, CAI43856.1). In the right circumstances AMRFinderPlus could report multiple combined hits to the same gene with the same start and stop coordinates. We've only seen the exact triggering circumstances a few times in more than a million assemblies, so it should be very rare. This release fixes that bug.

The release also contains a minor improvement to amrfinder_update to also create the parent database directory if it doesn't exist when amrfinder_update is run.

AMRFinderPlus v3.11.14

10 May 13:15
4f1e9de
Compare
Choose a tag to compare

This release addresses a few issues brought up on GitHub.

Changes:

  • On failure no -o output file is created - #115
  • AMRFinderPlus will now automatically decompress files ending in .gz with gunzip (this relies on gunzip being in PATH) - #61
  • AMRFinderPlus does not support unicode, but it will not check GFF files to prohibit extended ASCII or UTF-8 characters specifically (still prohibits GFF files with ASCII control characters between 0x00 and 0x1F) - #119
  • Add reporting of curl error messages - #120

AMRFinderPlus v3.11.11

18 Apr 12:56
1961989
Compare
Choose a tag to compare

This release has two primary changes

  1. Version checking for blast on Mac to avoid the bug in BLAST 2.12.0 with the -mt_mode parameter
  2. Updated handling of special characters in the sequence identifiers in GFF and FASTA files.

Special character handling

Implemented special character handling in GFF files according to https://github.com/The-Sequence-Ontology/Specifications/blob/master/gff3.md. The following need to be escaped in the sequence identifiers using URL-style codes in .gff files:

  • # (comment start)
  • tab (%09)
  • newline (%0A)
  • carriage return (%0D)
  • % percent (%25)
  • control characters (%00 through %1F, %7F)
  • ; semicolon (%3B)
  • = equals (%3D)
  • & ampersand (%26)
  • , comma (%2C)

Added input checking for nucleotide sequences because 'makeblastdb' truncates and/or alters sequence identifiers with the following characteristics. Now nucleotide FASTA identifiers (characters after '>' and before the first whitespace) with any of the following will cause amrfinder to exit with an error message.

  • FASTA identifier starts with '?'
  • FASTA identifier contains the two character sequence ',,' or '\t' (the character '\' followed by the character 't')
  • FASTA identifier ends with ';' '~' ',' or '.'

Bug fix for Bioconda compatibility

On Mac the BLAST parameter -mt_mode requires BLAST version 2.13.0 to run on short query sequences.

This release includes a bug-fix to allow AMRFinderPlus to be compatible with Bioconda which doesn't have BLAST+ version 2.13.0 for the Mac. The previous release 3.11.8 could not be added to Bioconda because at the time of release Bioconda did not have BLAST+ version 2.13.0 for Mac.

See also release notes for version 3.10.8: https://github.com/ncbi/amr/releases/tag/amrfinder_v3.11.8

AMRFinderPlus v3.11.8

10 Apr 19:15
2bc24b6
Compare
Choose a tag to compare

NOTE: This version uses the blastx option -mt_mode 1 which was released in BLAST+ version 2.12.0, but there was a bug in the Mac OSX implementation. The current latest BLAST+ version (2.13.0) does not have that bug, so this release is only compatible with BLAST+ 2.13.0 on the Mac.

The Bioconda package for BLAST+ 2.13.0 was not compiled for the Mac for some reason (bioconda/bioconda-recipes#35897), so the latest BLAST+ version available in bioconda for Mac OSX is 2.12.0. For that reason this version will not be released in bioconda.

We are working on a fix and hope to have a new compatible with bioconda release soon.

  • Performance improvements by optimizing blast parameters
    • Faster by 70% on single-threaded on nucleotide-only run
    • Faster by 64% on single-threaded protein-only run
    • Faster by 58% on single-threaded combined run
  • Improved handling of special characters
    • To simplify issues I would avoid '#' ',' '%' '=' '&' and ':' in sequence identifiers, though they should now be correctly handled with escape sequences in GFF files. See the documentation of --gff for more information.
    • Fixed handling for FASTA identifiers with leading underscore "_" (#115)
    • Added --annotation_format standard

AMRFinderPlus v3.11.4

09 Mar 14:36
f2840d9
Compare
Choose a tag to compare

This includes a new amrfinder_index program to re-index the AMRFinderPlus database.

It also includes some mostly cosmetic code and error message cleanup and minor updates to github actions.

There were no changes in the way AMRFinderPlus is run or how it works.

AMRFinderPlus v3.11.2

14 Dec 18:27
d8d5fe3
Compare
Choose a tag to compare

Changes:

  • New --print_node option will append the hierarchy node ID for each hit. This allows the user to differentiate hits with the same gene symbol, but different nodes on the hierarchy
  • Switch to gnu++17
  • Improvements to detect known frame shifting point mutations. These changes are not used by database versions 2022-10-11.2 or before

This release is database format backward compatible with the 3.10 series. However, we hope to release a new database that requires the improvements to frame-shift mutation detection included with this release soon.