diff --git a/README.md b/README.md index 47a6921..16a7697 100644 --- a/README.md +++ b/README.md @@ -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.2 +conda install -c bioconda -c conda-forge ntjoin=1.1.3 ``` #### Installing ntJoin using Brew @@ -136,7 +136,7 @@ brew install brewsci/bio/ntjoin #### Installing ntJoin from the source code ```sh -curl -L --output ntJoin-1.1.2.tar.gz https://github.com/bcgsc/ntJoin/releases/download/v1.1.2/ntJoin-1.1.2.tar.gz && tar xvzf ntJoin-1.1.2.tar.gz +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 ``` ## Dependencies diff --git a/bin/ntjoin_assemble.py b/bin/ntjoin_assemble.py index c5144ef..255dd8b 100755 --- a/bin/ntjoin_assemble.py +++ b/bin/ntjoin_assemble.py @@ -983,7 +983,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.2') + parser.add_argument("-v", "--version", action='version', version='ntJoin v1.1.3') 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") @@ -1030,7 +1030,7 @@ def print_parameters(self): def main(self): "Run ntJoin graph stage" - print("Running ntJoin v1.1.2 ...\n") + print("Running ntJoin v1.1.3 ...\n") self.print_parameters() # Parse the weights of each input reference assembly diff --git a/ntJoin b/ntJoin index abc09f6..f7e0e25 100755 --- a/ntJoin +++ b/ntJoin @@ -2,7 +2,7 @@ # ntJoin: Scaffold assemblies using reference assemblies and minimizer graphs # Written by Lauren Coombe @lcoombe -# ntJoin v1.1.2 +# ntJoin v1.1.3 # Input files target=None @@ -116,7 +116,7 @@ endif help: @echo "" @echo "ntJoin: Scaffolding assemblies using reference assemblies and minimizer graphs" - @echo "ntJoin v1.1.2" + @echo "ntJoin v1.1.3" @echo "Usage: ntJoin assemble target= references='List of reference assemblies' reference_weights='List of weights per reference assembly'" @echo "" @echo "Options:" @@ -184,7 +184,7 @@ ifeq ($(ref), None) endif version: - @echo "ntJoin v1.1.2" + @echo "ntJoin v1.1.3" @echo "Written by Lauren Coombe (lcoombe@bcgsc.ca)" check_install: diff --git a/setup.py b/setup.py index 0771f8f..45eb951 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="ntJoin", - version="1.1.2", + version="1.1.3", author="Lauren Coombe", author_email="lcoombe@bcgsc.ca", description="Genome assembly scaffolder using minimizer graphs",