Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.7/mtGrasp-v1.1.7.tar.gz).
You can download the latest version of the tarball file [here](https://github.com/bcgsc/mtGrasp/releases/download/v1.1.8/mtGrasp-v1.1.8.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.7'
MTGRASP_VERSION = 'mtGrasp v1.1.8'

parser = argparse.ArgumentParser(description='mtGrasp: de novo assembly of reference-grade animal mitochondrial genomes')
parser.add_argument('-r1', '--read1', help='Full path to 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.7'
mtgrasp_version = 'v1.1.8'


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.7'
mtgrasp_version = 'v1.1.8'

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.7'
mtgrasp_version = 'v1.1.8'

import argparse
import os
Expand Down