Skip to content

Commit

Permalink
Prepare for release v1.1.5 (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
lcoombe authored Sep 3, 2024
1 parent 94c87df commit 114f6c2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ conda install -c conda-forge -c bioconda mtgrasp
### Installation from the source code
1. Download mtGrasp package

You can download the latest version of the tarball file [here](https://github.com/bcgsc/mtGrasp/releases/download/v1.1.4/mtGrasp-v1.1.4.tar.gz).
You can download the latest version of the tarball file [here](https://github.com/bcgsc/mtGrasp/releases/download/v1.1.5/mtGrasp-v1.1.5.tar.gz).


2. Add the mtGrasp directory to your PATH, use the following command to check if it is added correctly
Expand Down
2 changes: 1 addition & 1 deletion mtgrasp.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import shlex
import sys

MTGRASP_VERSION = 'mtGrasp v1.1.4'
MTGRASP_VERSION = 'mtGrasp v1.1.5'

parser = argparse.ArgumentParser(description='mtGrasp: de novo assembly of reference-grade animal mitochondrial genomes')
parser.add_argument('-r1', '--read1', help='Forward read fastq.gz file [Required]')
Expand Down
2 changes: 1 addition & 1 deletion mtgrasp.smk
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Snakemake file for mtGrasp pipeline
mtgrasp_version = 'v1.1.4'
mtgrasp_version = 'v1.1.5'


import os.path
Expand Down
2 changes: 1 addition & 1 deletion mtgrasp_standardize.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
mtgrasp_version = 'v1.1.4'
mtgrasp_version = 'v1.1.5'

import argparse
import sys
Expand Down
2 changes: 1 addition & 1 deletion mtgrasp_summarize.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
'''
This script can be used to summarize mtGrasp assembly outputs by providing a text file containing the relative or complete path(s) to assembly output folder(s).
'''
mtgrasp_version = 'v1.1.4'
mtgrasp_version = 'v1.1.5'

import argparse
import os
Expand Down

0 comments on commit 114f6c2

Please sign in to comment.