Skip to content

Commit

Permalink
Prepare for release v1.1.4 (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
lcoombe committed Feb 5, 2024
1 parent f0083f3 commit 6252891
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -125,7 +125,7 @@ ntJoin assemble target=my_scaffolds.fa target_weight=1 reference_config=config_f

#### Installing ntJoin using Conda
```sh
conda install -c bioconda -c conda-forge ntjoin=1.1.3
conda install -c bioconda -c conda-forge ntjoin=1.1.4
```

#### Installing ntJoin using Brew
Expand All @@ -136,7 +136,7 @@ brew install brewsci/bio/ntjoin

#### Installing ntJoin from the source code
```sh
curl -L --output ntJoin-1.1.3.tar.gz https://github.com/bcgsc/ntJoin/releases/download/v1.1.3/ntJoin-1.1.3.tar.gz && tar xvzf ntJoin-1.1.3.tar.gz
curl -L --output ntJoin-1.1.4.tar.gz https://github.com/bcgsc/ntJoin/releases/download/v1.1.4/ntJoin-1.1.4.tar.gz && tar xvzf ntJoin-1.1.4.tar.gz
```

## Dependencies
Expand Down
2 changes: 1 addition & 1 deletion bin/ntjoin_run.py
Expand Up @@ -35,7 +35,7 @@ def parse_arguments():
"increasing/decreasing to assign contig orientation [90]\n "
"Note: Only used with --mkt is NOT specified", default=90, type=int)
parser.add_argument('-t', help="Number of threads for multiprocessing [1]", default=1, type=int)
parser.add_argument("-v", "--version", action='version', version='ntJoin v1.1.3')
parser.add_argument("-v", "--version", action='version', version='ntJoin v1.1.4')
parser.add_argument("--agp", help="Output AGP file describing scaffolds", action="store_true")
parser.add_argument("--no_cut", help="Do not cut input contigs, place in most representative path",
action="store_true")
Expand Down
6 changes: 3 additions & 3 deletions ntJoin
Expand Up @@ -2,7 +2,7 @@

# ntJoin: Scaffold assemblies using reference assemblies and minimizer graphs
# Written by Lauren Coombe @lcoombe
# ntJoin v1.1.3
# ntJoin v1.1.4

# Input files
target=None
Expand Down Expand Up @@ -117,7 +117,7 @@ endif
help:
@echo ""
@echo "ntJoin: Scaffolding assemblies using reference assemblies and minimizer graphs"
@echo "ntJoin v1.1.3"
@echo "ntJoin v1.1.4"
@echo "Usage: ntJoin assemble target=<target scaffolds> references='List of reference assemblies' reference_weights='List of weights per reference assembly'"
@echo ""
@echo "Options:"
Expand Down Expand Up @@ -186,7 +186,7 @@ ifeq ($(ref), None)
endif

version:
@echo "ntJoin v1.1.3"
@echo "ntJoin v1.1.4"
@echo "Written by Lauren Coombe (lcoombe@bcgsc.ca)"

check_install:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="ntJoin",
version="1.1.3",
version="1.1.4",
author="Lauren Coombe",
author_email="lcoombe@bcgsc.ca",
description="Genome assembly scaffolder using minimizer graphs",
Expand Down

0 comments on commit 6252891

Please sign in to comment.