Skip to content

Commit 08d4bef

Browse files
committed
bump to v2.1.1
1 parent 3f16580 commit 08d4bef

37 files changed

+37
-36
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### `Added`
66
- Add Panaroo to the `pangenome` Bactopia Tools
77
- Add `genotyphi` and `seroba` to Merlin
8+
- bump `fastq-dl` to v1.1.1
89
- Bactopia Tools (`bactopia --wf <NAME>`)
910
- `busco` - Assembly completeness based on evolutionarily informed expectations
1011
- `genotyphi` - Salmonella Typhi genotyping with Mykrobe outputs

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM nfcore/base:2.1
22

33
LABEL base.image="FROM nfcore/base:2.1"
44
LABEL software="Bactopia"
5-
LABEL software.version="2.1.0"
5+
LABEL software.version="2.1.1"
66
LABEL description="A flexible pipeline for complete analysis of bacterial genomes"
77
LABEL website="https://bactopia.github.io/"
88
LABEL license="https://github.com/bactopia/bactopia/blob/master/LICENSE"

bactopia/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Top-level package for Bactopia."""
22

3-
__version__ = '2.1.0'
3+
__version__ = '2.1.1'
44

55
__all__ = [
66
'const',

bin/bactopia/bactopia

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# bactopia search --help
3131
# bactopia version
3232
# bactopia --help
33-
VERSION=2.1.0
33+
VERSION=2.1.1
3434
CONTAINER_VERSION="${VERSION%.*}.x"
3535
CONDA_ENV=$(which bactopia | sed 's=bin/bactopia==')
3636
BACTOPIA_NF="${CONDA_ENV}/share/bactopia-${CONTAINER_VERSION}"

bin/bactopia/bactopia-citations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import os
1313
import sys
1414

15-
VERSION = "2.1.0"
15+
VERSION = "2.1.1"
1616
PROGRAM = "bactopia citations"
1717
DESCRIPTION = 'Prints the citations of datasets and tools used by Bactopia'
1818

bin/bactopia/bactopia-datasets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from executor import ExternalCommand, ExternalCommandFailed
1010

1111
PROGRAM = "bactopia datasets"
12-
VERSION = "2.1.0"
12+
VERSION = "2.1.1"
1313
STDOUT = 11
1414
STDERR = 12
1515
CACHE_DIR = f'{os.path.expanduser("~")}/.bactopia'

bin/bactopia/bactopia-download.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
import sys
4040
import time
4141

42-
VERSION = "2.1.0"
42+
VERSION = "2.1.1"
4343
PROGRAM = "bactopia download"
4444
STDOUT = 11
4545
STDERR = 12

bin/bactopia/bactopia-prepare.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
--examples Print examples of bactopia prepare and exit
2727
--version show program's version number and exit
2828
"""
29-
VERSION = "2.1.0"
29+
VERSION = "2.1.1"
3030
PROGRAM = "bactopia prepare"
3131
import sys
3232

bin/bactopia/bactopia-search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"""
3030
import os
3131
import sys
32-
VERSION = "2.1.0"
32+
VERSION = "2.1.1"
3333
PROGRAM = "bactopia search"
3434
ENA_URL = ('https://www.ebi.ac.uk/ena/portal/api/search')
3535
FIELDS = [

bin/check-assembly-accession.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""
33
"""
44
PROGRAM = "check-assembly-accession"
5-
VERSION = "2.1.0"
5+
VERSION = "2.1.1"
66

77

88
def check_assembly_version(accession):

0 commit comments

Comments
 (0)